.yoga-gift-cards-grid {
    --yoga-gift-cards-columns: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 16px 0;
}

.gift-card-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gift-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.gift-card-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.gift-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f4f2ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #3a3a3a;
}

.gift-card-info h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.gift-card-amount {
    font-size: 22px;
    font-weight: 700;
}

.gift-card-price {
    color: #2e7d32;
    font-weight: 600;
}

.gift-card-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 700;
}

.badge.on-sale {
    background: #e7f6ec;
    color: #1b5e20;
}

.badge.label {
    background: #e8eefb;
    color: #1a3c7a;
}

.gift-card-expiry {
    font-size: 13px;
    color: #666;
}

.gift-card-select,
.gift-card-add-custom {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gift-card-select:hover,
.gift-card-add-custom:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.gift-card-select.is-loading,
.gift-card-add-custom.is-loading {
    opacity: 0.6;
    cursor: wait;
}

.gift-card-feedback {
    min-height: 18px;
    font-size: 13px;
}

.gift-card-feedback.success {
    color: #1b5e20;
}

.gift-card-feedback.error {
    color: #b00020;
}

.gift-card-custom .custom-amount-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: 4px;
}

.gift-card-help {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .yoga-gift-cards-grid {
        grid-template-columns: repeat(var(--yoga-gift-cards-columns), minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .gift-card-item {
        padding: 20px;
    }
}
