/* BSD Deals Frontend — Multi-Step Flow */
/* Color Palette: #002A21 (dark forest), #98F5E1 (mint) */
/* Font: inherits from site theme */

:root {
    --bsd-dark: #002A21;
    --bsd-mint: #98F5E1;
    --bsd-mint-light: #d4fbf0;
    --bsd-mint-bg: #edfdf7;
    --bsd-mint-border: #b8f5e8;
    --bsd-text: #002A21;
    --bsd-text-light: #2a6b5a;
    --bsd-text-muted: #5a8f82;
    --bsd-success: #00694a;
    --bsd-white: #ffffff;
}

.bsd-deals-wrapper {
    font-family: inherit;
    color: var(--bsd-text);
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 40px;
    direction: rtl;
}
.bsd-deals-wrapper * { box-sizing: border-box; }

/* Loading */
.bsd-loading { text-align: center; padding: 60px 20px; color: var(--bsd-text-muted); }
.bsd-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--bsd-mint);
    border-top-color: var(--bsd-dark);
    border-radius: 50%;
    animation: bsd-spin 0.8s linear infinite;
    margin: 0 auto 12px;
}
@keyframes bsd-spin { to { transform: rotate(360deg); } }

/* Header */
.bsd-header { text-align: center; margin-bottom: 24px; }
.bsd-title {
    font-family: inherit;
    font-size: 36px; font-weight: 900;
    margin: 0 0 8px; color: var(--bsd-dark);
    line-height: 1.2;
}
.bsd-subtitle {
    font-size: 18px; color: var(--bsd-text-light);
    margin: 0 0 8px; font-weight: 600;
}
.bsd-description {
    font-size: 15px; color: var(--bsd-text-muted);
    margin: 0 0 16px; line-height: 1.6;
    max-width: 600px; margin-left: auto; margin-right: auto;
}
.bsd-process-steps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bsd-mint-bg);
    border: 1.5px solid var(--bsd-mint-border);
    border-radius: 50px;
    padding: 10px 24px;
}
.bsd-process-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bsd-dark);
}
.bsd-process-icon { font-size: 18px; }
.bsd-process-arrow {
    font-size: 20px;
    color: var(--bsd-mint-border);
    font-weight: 300;
    line-height: 1;
}

/* ═══════════════════════════════════════════
   STEPPER
   ═══════════════════════════════════════════ */
.bsd-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 24px auto 32px;
    max-width: 560px;
}

.bsd-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    cursor: default;
}

.bsd-step-indicator.completed { cursor: pointer; }

.bsd-step-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700;
    transition: all 0.3s ease;
    border: 2.5px solid var(--bsd-mint-border);
    background: var(--bsd-white);
    color: var(--bsd-text-muted);
}

.bsd-step-indicator.active .bsd-step-circle {
    background: var(--bsd-dark);
    border-color: var(--bsd-dark);
    color: var(--bsd-mint);
    box-shadow: 0 4px 16px rgba(0,42,33,0.25);
    transform: scale(1.1);
}

.bsd-step-indicator.completed .bsd-step-circle {
    background: var(--bsd-mint);
    border-color: var(--bsd-mint);
    color: var(--bsd-dark);
}

.bsd-step-label {
    font-size: 12px; font-weight: 600;
    color: var(--bsd-text-muted);
    white-space: nowrap;
    transition: color 0.3s;
}
.bsd-step-indicator.active .bsd-step-label { color: var(--bsd-dark); font-weight: 700; }
.bsd-step-indicator.completed .bsd-step-label { color: var(--bsd-text-light); }

.bsd-step-line {
    flex: 1;
    height: 3px;
    background: var(--bsd-mint-border);
    border-radius: 2px;
    margin: 0 6px;
    margin-bottom: 22px;
    transition: background 0.4s;
    min-width: 30px;
}
.bsd-step-line.completed { background: var(--bsd-mint); }

/* ═══════════════════════════════════════════
   STEP 1: PRODUCTS
   ═══════════════════════════════════════════ */
.bsd-progress-wrap {
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    padding: 14px 20px;
    margin-bottom: 16px;
    border: 1px solid var(--bsd-mint-border);
}
.bsd-progress-text { font-size: 14px; color: var(--bsd-dark); margin-bottom: 8px; }
.bsd-progress-text strong { color: var(--bsd-success); }
.bsd-progress-bar { height: 8px; background: var(--bsd-mint-light); border-radius: 4px; overflow: hidden; }
.bsd-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bsd-mint), var(--bsd-dark));
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Mini cart bar */
.bsd-mini-cart {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bsd-dark);
    color: var(--bsd-mint);
    padding: 10px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}
.bsd-mini-cart-icon { font-size: 18px; }
.bsd-mini-cart-count { flex: 1; }
.bsd-mini-cart-discount {
    background: rgba(152,245,225,0.2);
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 12px;
}
.bsd-mini-cart-total { font-size: 18px; font-weight: 800; }

/* Products grid */
.bsd-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.bsd-product-card {
    background: var(--bsd-white);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,42,33,0.04);
}
.bsd-product-card:hover {
    box-shadow: 0 6px 24px rgba(0,42,33,0.1);
    transform: translateY(-2px);
}
.bsd-product-card.in-cart {
    border-color: var(--bsd-mint);
    background: linear-gradient(to bottom, rgba(152,245,225,0.06), var(--bsd-white));
}
.bsd-product-card.out-of-stock { opacity: 0.5; pointer-events: none; }

.bsd-in-cart-badge {
    position: absolute; top: 8px; right: 8px;
    width: 26px; height: 26px;
    background: var(--bsd-dark);
    color: var(--bsd-mint);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
}

.bsd-product-img {
    width: 100%; height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    background: var(--bsd-mint-bg);
}
.bsd-product-name {
    font-size: 13px; font-weight: 600;
    margin: 0 0 6px; color: var(--bsd-dark);
    min-height: 34px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.bsd-price-wrap { margin-bottom: 10px; display: flex; justify-content: center; gap: 8px; align-items: center; }
.bsd-original-price { font-size: 13px; color: #aaa; text-decoration: line-through; }
.bsd-discounted-price { font-size: 17px; font-weight: 700; color: var(--bsd-success); }
.bsd-current-price { font-size: 17px; font-weight: 700; color: var(--bsd-dark); }

.bsd-qty-controls { display: flex; align-items: center; justify-content: center; gap: 10px; }
.bsd-qty-btn {
    width: 34px; height: 34px;
    border-radius: 10px;
    border: 1.5px solid var(--bsd-mint-border);
    background: var(--bsd-white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--bsd-dark);
    font-size: 17px; font-weight: 700;
    transition: all 0.2s;
}
.bsd-qty-btn:hover { background: var(--bsd-mint-bg); border-color: var(--bsd-mint); }
.bsd-qty-num { font-size: 16px; font-weight: 700; min-width: 22px; text-align: center; }

.bsd-add-btn {
    padding: 8px 18px;
    border: 1.5px solid var(--bsd-dark);
    border-radius: 10px;
    background: transparent;
    color: var(--bsd-dark);
    cursor: pointer;
    font-size: 13px; font-family: inherit; font-weight: 600;
    transition: all 0.2s;
}
.bsd-add-btn:hover { background: var(--bsd-dark); color: var(--bsd-mint); }

.bsd-sub-badge {
    position: absolute; top: 8px; left: 8px;
    font-size: 10px;
    background: linear-gradient(135deg, var(--bsd-dark), #0d5a49);
    color: var(--bsd-mint);
    padding: 3px 8px; border-radius: 8px; font-weight: 600;
}
.bsd-oos-badge {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,42,33,0.8);
    color: #fff;
    padding: 6px 16px; border-radius: 8px;
    font-size: 13px; font-weight: 600; z-index: 2;
}

/* ═══════════════════════════════════════════
   STEP 2: PURCHASE TYPE
   ═══════════════════════════════════════════ */
.bsd-step2-intro { text-align: center; margin-bottom: 28px; }
.bsd-step2-title { font-size: 24px; font-weight: 800; color: var(--bsd-dark); margin: 0 0 6px; }
.bsd-step2-desc { font-size: 15px; color: var(--bsd-text-muted); margin: 0; }

.bsd-mode-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.bsd-mode-card {
    position: relative;
    background: var(--bsd-white);
    border: 2.5px solid var(--bsd-mint-border);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}
.bsd-mode-card:hover {
    border-color: var(--bsd-mint);
    box-shadow: 0 6px 24px rgba(0,42,33,0.08);
    transform: translateY(-2px);
}
.bsd-mode-card.active {
    border-color: var(--bsd-dark);
    background: linear-gradient(to bottom, rgba(152,245,225,0.1), var(--bsd-white));
    box-shadow: 0 8px 28px rgba(0,42,33,0.12);
}

.bsd-mode-card-icon { font-size: 42px; margin-bottom: 12px; }
.bsd-mode-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; color: var(--bsd-dark); }
.bsd-mode-card p { font-size: 13px; color: var(--bsd-text-muted); margin: 0; }

.bsd-mode-card-popular {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--bsd-dark);
    color: var(--bsd-mint);
    font-size: 11px; font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
}

.bsd-mode-card-check {
    position: absolute;
    top: 12px; right: 12px;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bsd-mint-border);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.bsd-mode-card.active .bsd-mode-card-check {
    background: var(--bsd-dark);
    border-color: var(--bsd-dark);
    color: var(--bsd-mint);
}

/* Frequency */
.bsd-frequency-section {
    background: linear-gradient(135deg, rgba(152,245,225,0.1), rgba(0,42,33,0.03));
    border-radius: 20px;
    padding: 28px 24px;
    border: 1.5px solid rgba(0,42,33,0.08);
    text-align: center;
}
.bsd-frequency-title { font-size: 18px; font-weight: 700; color: var(--bsd-dark); margin: 0 0 18px; }
.bsd-frequency-options { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.bsd-frequency-btn {
    padding: 16px 24px;
    border: 2.5px solid var(--bsd-mint-border);
    border-radius: 16px;
    background: var(--bsd-white);
    cursor: pointer;
    transition: all 0.25s;
    min-width: 110px;
    font-family: inherit;
}
.bsd-frequency-btn:hover { border-color: var(--bsd-mint); }
.bsd-frequency-btn.active {
    border-color: var(--bsd-dark);
    background: var(--bsd-dark);
    color: var(--bsd-mint);
    box-shadow: 0 4px 16px rgba(0,42,33,0.25);
}

.bsd-freq-value { font-size: 28px; font-weight: 800; color: var(--bsd-dark); line-height: 1; }
.bsd-frequency-btn.active .bsd-freq-value { color: var(--bsd-mint); }
.bsd-freq-label { font-size: 12px; font-weight: 600; color: var(--bsd-text-muted); margin-top: 4px; }
.bsd-frequency-btn.active .bsd-freq-label { color: rgba(152,245,225,0.7); }

.bsd-freq-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--bsd-text-muted);
    background: rgba(255,255,255,0.6);
    padding: 10px 16px;
    border-radius: 10px;
}

/* ═══════════════════════════════════════════
   STEP 3: SUMMARY & CHECKOUT
   ═══════════════════════════════════════════ */
.bsd-step3-title {
    font-size: 24px; font-weight: 800;
    color: var(--bsd-dark);
    margin: 0 0 20px;
    text-align: center;
}

.bsd-order-card, .bsd-checkout-card {
    background: var(--bsd-white);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--bsd-mint-border);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,42,33,0.04);
}

.bsd-checkout-card h3, .bsd-checkout-card-title {
    font-size: 16px; font-weight: 700;
    color: var(--bsd-dark);
    margin: 0 0 14px;
}

/* Order items */
.bsd-order-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.bsd-order-item {
    display: flex; align-items: center; gap: 12px;
    padding: 8px; border-radius: 12px;
    background: var(--bsd-mint-bg);
    transition: background 0.2s;
}

.bsd-order-item-img {
    width: 52px; height: 52px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--bsd-mint-border);
}
.bsd-order-item-info { flex: 1; }
.bsd-order-item-name { font-size: 14px; font-weight: 600; color: var(--bsd-dark); }
.bsd-order-item-qty { font-size: 12px; color: var(--bsd-text-muted); }
.bsd-order-item-price { font-weight: 700; font-size: 15px; color: var(--bsd-dark); display: flex; flex-direction: column; align-items: flex-end; }
.bsd-order-item-orig { font-size: 12px; color: #aaa; text-decoration: line-through; font-weight: 400; }

/* Order totals */
.bsd-order-totals {
    border-top: 1px solid var(--bsd-mint-light);
    padding-top: 12px;
}
.bsd-order-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.bsd-order-row.discount { color: var(--bsd-success); font-weight: 600; }
.bsd-order-row.total {
    font-size: 20px; font-weight: 800;
    color: var(--bsd-dark);
    padding-top: 10px;
    border-top: 2px solid var(--bsd-mint);
    margin-top: 6px;
}

/* Mode badge */
.bsd-order-mode { margin-top: 14px; }
.bsd-order-mode-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 14px; font-weight: 600;
}
.bsd-order-mode-badge.sub {
    background: var(--bsd-dark);
    color: var(--bsd-mint);
}
.bsd-order-mode-badge.onetime {
    background: var(--bsd-mint-bg);
    color: var(--bsd-dark);
    border: 1px solid var(--bsd-mint-border);
}

/* Installments */
.bsd-install-options { display: flex; gap: 8px; flex-wrap: wrap; }
.bsd-install-btn {
    padding: 9px 18px;
    border: 2px solid var(--bsd-mint-border);
    border-radius: 10px;
    background: var(--bsd-white);
    color: var(--bsd-dark);
    cursor: pointer;
    font-size: 13px; font-family: inherit; font-weight: 600;
    transition: all 0.2s;
}
.bsd-install-btn.active {
    border-color: var(--bsd-dark);
    background: var(--bsd-dark);
    color: var(--bsd-mint);
}
.bsd-install-info { font-size: 13px; color: var(--bsd-text-muted); margin-top: 8px; }

/* Installments dropdown */
.bsd-install-select-wrap { position: relative; }
.bsd-install-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bsd-mint-border);
    border-radius: 10px;
    background: var(--bsd-white);
    color: var(--bsd-dark);
    font-size: 15px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: auto;
    transition: border-color 0.2s;
}
.bsd-install-select:focus {
    border-color: var(--bsd-dark);
    outline: none;
}

/* Mode card extras */
.bsd-mode-installments-note {
    font-size: 12px;
    color: var(--bsd-text-muted);
    margin-top: 4px;
}
.bsd-mode-sub-bonus {
    font-size: 13px;
    color: #e67e22;
    font-weight: 700;
    margin-top: 6px;
}

.bsd-install-auto-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, rgba(152,245,225,0.15), rgba(0,42,33,0.03));
    border: 2px solid var(--bsd-mint-border);
    border-radius: 14px;
    padding: 18px 20px;
}
.bsd-install-auto-icon { font-size: 28px; flex-shrink: 0; }
.bsd-install-auto-notice strong {
    font-size: 15px;
    color: var(--bsd-dark);
    display: block;
    margin-bottom: 4px;
}
.bsd-install-auto-notice p {
    font-size: 13px;
    color: var(--bsd-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Customer form */
.bsd-form-row { display: flex; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.bsd-form-field { flex: 1; min-width: 150px; }
.bsd-form-field label { display: block; font-size: 12px; font-weight: 600; color: var(--bsd-text-muted); margin-bottom: 4px; }
.bsd-form-field input {
    width: 100%; padding: 11px 14px;
    border: 2px solid var(--bsd-mint-border);
    border-radius: 12px;
    font-size: 14px; font-family: inherit;
    transition: border-color 0.2s;
}
.bsd-form-field input:focus {
    border-color: var(--bsd-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,42,33,0.08);
}

.bsd-error-msg {
    background: #fff0f0; color: #c62828;
    padding: 10px 16px; border-radius: 12px;
    margin-top: 12px; font-size: 14px; text-align: center;
    border: 1px solid #fdd;
}

/* WC Checkout Notice */
.bsd-wc-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--bsd-mint-bg), rgba(152,245,225,0.15));
    border: 2px solid var(--bsd-mint);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 16px;
}
.bsd-wc-notice-icon { font-size: 32px; }
.bsd-wc-notice-text { flex: 1; }
.bsd-wc-notice-text strong { font-size: 16px; color: var(--bsd-dark); display: block; margin-bottom: 2px; }
.bsd-wc-notice-text p { font-size: 13px; color: var(--bsd-text-muted); margin: 0; }

/* ═══════════════════════════════════════════
   BOTTOM NAVIGATION
   ═══════════════════════════════════════════ */
.bsd-bottom-nav {
    position: sticky;
    bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-top: 2px solid var(--bsd-mint);
    padding: 14px 20px;
    margin-top: 24px;
    z-index: 100;
    box-shadow: 0 -6px 24px rgba(0,42,33,0.08);
}

.bsd-bottom-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
}

.bsd-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 17px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    letter-spacing: 0.3px;
}

.bsd-nav-back {
    background: var(--bsd-mint-bg);
    color: var(--bsd-dark);
    border: 2px solid var(--bsd-mint-border);
    padding: 16px 32px;
}
.bsd-nav-back:hover { background: var(--bsd-mint-light); transform: translateX(3px); }

.bsd-nav-next {
    background: var(--bsd-dark);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0,42,33,0.3);
}
.bsd-nav-next:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,42,33,0.35); }
.bsd-nav-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bsd-nav-checkout {
    background: linear-gradient(135deg, var(--bsd-dark), #0d5a49);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(0,42,33,0.35);
    font-size: 18px;
    padding: 18px 42px;
    border-radius: 50px;
}
.bsd-nav-checkout:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,42,33,0.4); }
.bsd-nav-checkout:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Payment modal */
.bsd-payment-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,42,33,0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
}
.bsd-payment-modal {
    background: #fff; border-radius: 20px;
    width: 95%; max-width: 520px; max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,42,33,0.3);
}
.bsd-payment-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--bsd-mint-light);
    background: var(--bsd-mint-bg);
}
.bsd-payment-modal-header h3 { margin: 0; font-size: 16px; color: var(--bsd-dark); }
.bsd-modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--bsd-text-muted); padding: 4px; }
.bsd-payment-iframe { width: 100%; height: 500px; border: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .bsd-title { font-size: 26px; }
    .bsd-subtitle { font-size: 15px; }
    .bsd-description { font-size: 13px; }
    .bsd-process-steps { padding: 8px 16px; gap: 6px; }
    .bsd-process-step { font-size: 11px; }
    .bsd-process-icon { font-size: 15px; }
    .bsd-products-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
    .bsd-product-img { height: 120px; }
    .bsd-mode-cards { grid-template-columns: 1fr; }
    .bsd-mode-card { padding: 22px 18px; }
    .bsd-step-label { font-size: 10px; }
    .bsd-step-circle { width: 34px; height: 34px; font-size: 13px; }
    .bsd-stepper { gap: 0; }
    .bsd-order-card, .bsd-checkout-card { padding: 16px; }
    .bsd-form-row { flex-direction: column; }
    .bsd-nav-btn { padding: 12px 24px; font-size: 15px; }
    .bsd-nav-checkout { padding: 14px 28px; font-size: 15px; }
}

@media (max-width: 480px) {
    .bsd-deals-wrapper { padding: 10px 10px 30px; }
    .bsd-title { font-size: 22px; }
    .bsd-subtitle { font-size: 14px; }
    .bsd-description { font-size: 12px; }
    .bsd-process-steps { flex-wrap: wrap; justify-content: center; border-radius: 14px; padding: 8px 12px; gap: 4px; }
    .bsd-process-arrow { font-size: 16px; }
    .bsd-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .bsd-product-card { padding: 10px; }
    .bsd-product-img { height: 100px; }
    .bsd-product-name { font-size: 12px; min-height: 28px; }
    .bsd-frequency-options { gap: 8px; }
    .bsd-frequency-btn { min-width: 90px; padding: 14px 16px; }
    .bsd-freq-value { font-size: 22px; }
    .bsd-mini-cart { font-size: 13px; padding: 8px 14px; }
    .bsd-mini-cart-total { font-size: 16px; }
    .bsd-step2-title { font-size: 20px; }
    .bsd-step3-title { font-size: 20px; }
}
