/* ============================================================
   24racks Cloud — Tienda (catálogo + ficha de producto)
   Cargado vía client_asset('css/store.css') en store-wrapper.
   Sin sombras (regla anti-genérico): bordes, contraste y glows.
   ============================================================ */

/* ── Shell de tienda: primera sección sobre paper ───────────────
   La cabecera landing es sticky (en flujo, ocupa --header-height) y
   transparente arriba. Misma convención que .hero-centered /
   .tutorials-index-hero: subir la sección bajo la cabecera con
   margin negativo y recolocar el contenido con padding-top, para que
   la cabecera flote encima sin dejar un hueco doble. */
.store-shell {
    margin-top: calc(-1 * var(--header-height, 72px));
    padding-top: calc(52px + var(--header-height, 72px));
    padding-bottom: 72px;
}
@media (max-width: 640px) {
    .store-shell { padding-top: calc(30px + var(--header-height, 72px)); }
}

/* ── Selector de categorías (patrón vps-tier-switcher) ───────── */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 920px;
    margin: 28px auto 0;
    padding: 0 1rem;
}
.category-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px 9px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-dim);
    background: var(--bg-raised);
    color: var(--text-2);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.category-tab:not(.is-current):hover { transform: translateY(-1px); background: var(--bg-elevated); border-color: var(--border); color: var(--text-1); }
.category-tab.is-current { cursor: default; color: var(--brand); border-color: rgba(59, 130, 246, .55); background: var(--blue-dim); }
.category-tab-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; flex: 0 0 auto;
    border-radius: 7px;
    background: var(--bg-elevated);
    overflow: hidden;
}
.category-tab-icon img { width: 18px; height: 18px; object-fit: contain; }
.category-tab.is-current .category-tab-icon { background: rgba(59, 130, 246, .16); }

/* ── Empty state (sin categoría seleccionada) ────────────────── */
.catalog-empty {
    margin: 40px auto 0;
    max-width: 520px;
    text-align: center;
    padding: 36px 28px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-raised);
}
.catalog-empty-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; margin-bottom: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dim);
    color: var(--brand);
    background: var(--blue-dim);
}
.catalog-empty h3 { margin: 0 0 6px; color: var(--text-1); font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.catalog-empty p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.55; }

/* ── Cabecera de la lista de una categoría ───────────────────── */
.catalog-list-head { margin: 8px 0 4px; }
.catalog-list-head .section-eyebrow { margin-bottom: 8px; }

/* ============================================================
   Rejilla de planes (portado del sistema .plan-card de vps)
   ============================================================ */
.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}
@media (min-width: 720px)  { .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1080px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 760px) {
    .catalog-grid--block {
        grid-template-columns: 1fr;
    }

    .catalog-grid--block .plan-card {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr) auto;
        align-items: center;
    }

    .catalog-grid--block .plan-cta {
        width: auto;
        min-width: 150px;
        margin-top: 0;
    }

    .catalog-grid--compact {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
}

.plan-card {
    --tier-color: var(--brand);
    --tier-soft: var(--brand-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    background: var(--bg-raised);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
:root[data-theme="dark"] .plan-card { --tier-soft: rgba(59, 130, 246, .18); }

/* Glow de esquina en vez de sombra */
.plan-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 260px; height: 200px;
    background: radial-gradient(ellipse at top right, var(--tier-soft), transparent 65%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 0;
}
.plan-card > * { position: relative; z-index: 1; }
.plan-card:hover { border-color: var(--tier-color); transform: translateY(-3px); }
.plan-card:hover::before { opacity: 1; }

.plan-card.featured { background: var(--bg-elevated); border-color: var(--brand); border-width: 1.5px; }
.plan-card.featured::before { opacity: 1; }
@media (min-width: 1080px) {
    .plan-card.featured { transform: scale(1.015); }
    .plan-card.featured:hover { transform: scale(1.015) translateY(-3px); }
}

.plan-head-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.plan-icon {
    flex: 0 0 auto;
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--tier-color);
    background: radial-gradient(circle at 30% 25%, var(--tier-soft), transparent 72%), var(--bg-elevated);
    color: var(--tier-color);
    overflow: hidden;
}
.plan-icon img { width: 28px; height: 28px; object-fit: contain; }
.plan-featured-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 11px;
    background: var(--brand); color: #fff;
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: 10px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
}

.plan-card-head { display: flex; flex-direction: column; gap: 6px; }
.plan-name {
    margin: 0; color: var(--text-1);
    font-family: var(--font-display);
    font-size: 22px; font-weight: 820;
    letter-spacing: -.018em; line-height: 1.15;
}
.plan-blurb { margin: 0; color: var(--text-2); font-size: 13.5px; line-height: 1.5; }

.plan-price { display: flex; align-items: baseline; gap: 4px; color: var(--text-1); font-variant-numeric: tabular-nums; }
.plan-price-value { font-size: 40px; font-weight: 880; line-height: 1; letter-spacing: -.02em; }
.plan-price-period {
    margin-left: 4px; color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
}

.plan-includes {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 10px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
}
.plan-includes::before, .plan-includes::after { content: ""; flex: 1; height: 1px; background: var(--border-dim); }

.plan-specs { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.plan-specs li { display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 10px; color: var(--text-1); font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.plan-spec-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: var(--green); opacity: .95; }

.plan-cta { margin-top: auto; width: 100%; justify-content: center; }

/* ============================================================
   Ficha de producto (/packages/{slug})
   ============================================================ */
.product-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.product-head-icon {
    flex: 0 0 auto;
    width: 64px; height: 64px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dim);
    background: radial-gradient(circle at 30% 25%, var(--brand-soft), transparent 72%), var(--bg-elevated);
    overflow: hidden;
}
:root[data-theme="dark"] .product-head-icon { background: radial-gradient(circle at 30% 25%, rgba(59,130,246,.18), transparent 72%), var(--bg-elevated); }
.product-head-icon img { width: 40px; height: 40px; object-fit: contain; }
.product-head-copy { min-width: 0; }
.product-head-title { margin: 0; color: var(--text-1); font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 840; letter-spacing: -.02em; line-height: 1.08; }
.product-head-sub { margin: 6px 0 0; color: var(--text-2); font-size: 15px; line-height: 1.5; }

.product-detail { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 1024px) { .product-detail { grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; } }

.product-main { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.product-block-title { margin: 0 0 14px; color: var(--text-1); font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -.01em; }
.product-divider { height: 1px; border: 0; background: var(--border-dim); margin: 4px 0; }

/* Descripción (markdown dentro de rack-card) */
.product-description { color: var(--text-2); line-height: 1.6; font-size: 14.5px; }
.product-description h1, .product-description h2, .product-description h3 { color: var(--text-1); font-family: var(--font-display); font-weight: 800; margin: 1.2em 0 .5em; }
.product-description a { color: var(--brand); text-decoration: underline; }
.product-description ul { padding-left: 1.2em; list-style: disc; display: grid; gap: 6px; }
.product-description code { font-family: var(--font-mono); font-size: .9em; background: var(--bg-elevated); padding: 1px 6px; border-radius: 6px; }

/* Selector de ciclo de facturación */
.billing-cycles { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .billing-cycles { grid-template-columns: repeat(3, 1fr); } }
.billing-cycle-input { position: absolute; opacity: 0; pointer-events: none; }
.billing-cycle-label {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    height: 100%;
    padding: 16px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    background: var(--bg-raised);
    color: var(--text-2);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.billing-cycle-label:hover { border-color: var(--border); background: var(--bg-elevated); }
.billing-cycle-input:checked + .billing-cycle-label { border-color: var(--brand); background: var(--blue-dim); color: var(--text-1); }
.billing-cycle-input:focus-visible + .billing-cycle-label { outline: 2px solid var(--brand); outline-offset: 2px; }
.billing-cycle-price { font-size: 15px; font-weight: 760; color: var(--text-1); font-variant-numeric: tabular-nums; }
.billing-cycle-note { display: block; margin-top: 2px; font-size: 12px; color: var(--text-3); font-weight: 500; }
.billing-cycle-check { flex: 0 0 auto; color: var(--text-3); opacity: 0; transition: opacity .2s ease; }
.billing-cycle-input:checked + .billing-cycle-label .billing-cycle-check { color: var(--brand); opacity: 1; }

/* Opciones configurables: separación entre campos */
.config-options-card .config-option { margin-bottom: 18px; }
.config-options-card .config-option:last-child { margin-bottom: 0; }

/* ── Resumen sticky ──────────────────────────────────────────── */
.product-summary {
    position: relative;
    display: flex; flex-direction: column; gap: 18px;
    padding: 24px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
}
@media (min-width: 1024px) { .product-summary { position: sticky; top: calc(var(--header-height, 72px) + 20px); } }
.product-summary-title { margin: 0; color: var(--text-1); font-family: var(--font-display); font-size: 18px; font-weight: 820; }
.summary-rows { display: grid; gap: 10px; }
.summary-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.summary-row dt { margin: 0; color: var(--text-2); font-size: 14px; }
.summary-row dd { margin: 0; color: var(--text-1); font-size: 14px; font-weight: 640; font-variant-numeric: tabular-nums; }
.summary-subhead { margin: 6px 0 0; color: var(--text-3); font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.summary-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border-dim); }
.summary-total dt { margin: 0; color: var(--text-1); font-size: 15px; font-weight: 820; }
.summary-total dd { margin: 0; color: var(--text-1); font-size: 16px; font-weight: 820; text-align: right; font-variant-numeric: tabular-nums; }
.summary-total dd small { display: block; color: var(--text-3); font-size: 11px; font-weight: 600; }

.product-summary-cta { width: 100%; justify-content: center; gap: 8px; }
.product-continue { display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 100%; color: var(--brand); font-size: 13.5px; font-weight: 640; text-decoration: none; }
.product-continue:hover { text-decoration: underline; }

/* ============================================================
   Checkout package flow
   ============================================================ */
.store-affiliate-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(59, 130, 246, .24);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(59, 130, 246, .12), rgba(59, 130, 246, .05));
}
.store-affiliate-banner__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(59, 130, 246, .16);
    color: var(--brand);
    font-size: 19px;
    flex: 0 0 auto;
}
.store-affiliate-banner__eyebrow {
    margin: 0 0 4px;
    color: var(--brand);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.store-affiliate-banner__copy {
    margin: 0;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.55;
}

.store-checkout .plan-card {
    gap: 20px;
}

.product-block,
.store-field,
.store-field-grid {
    min-width: 0;
}

.product-block-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px 16px;
}
.product-block-caption {
    margin: 0;
    color: var(--text-3);
    font-size: 13px;
    line-height: 1.55;
}

.store-stepper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    background: var(--bg-raised);
}
.store-stepper__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-align: left;
    color: var(--text-2);
    transition: color .2s ease;
}
.store-stepper__item:hover { color: var(--text-1); }
.store-stepper__item.is-active,
.store-stepper__item.is-complete { color: var(--text-1); }
.store-stepper__badge {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-2);
    font-size: 13px;
    font-weight: 800;
    flex: 0 0 auto;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.store-stepper__item.is-active .store-stepper__badge,
.store-stepper__item.is-complete .store-stepper__badge {
    border-color: var(--brand);
    background: var(--blue-dim);
    color: var(--brand);
}
.store-stepper__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.store-stepper__label {
    color: inherit;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.2;
}
.store-stepper__hint {
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.store-stepper__divider {
    width: 100%;
    height: 1px;
    background: var(--border-dim);
}
@media (max-width: 860px) {
    .store-stepper {
        grid-template-columns: 1fr;
    }
    .store-stepper__divider {
        display: none;
    }
}

.store-checkout .form-input2,
.store-checkout .form-select2,
.store-checkout textarea.form-input2 {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--text-1);
    background: var(--bg-raised);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.store-checkout textarea.form-input2 {
    min-height: 132px;
    resize: vertical;
}
.store-checkout .form-input2::placeholder,
.store-checkout .form-select2::placeholder {
    color: var(--text-3);
}
.store-checkout .form-input2:focus,
.store-checkout .form-select2:focus,
.store-checkout textarea.form-input2:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: var(--shadow-focus);
    background: var(--bg-elevated);
}

.store-field-grid {
    display: grid;
    gap: 18px;
}
.store-label {
    display: block;
    margin: 0 0 8px;
    color: var(--text-1);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.35;
}
.store-help {
    margin: 8px 0 0;
    color: var(--text-3);
    font-size: 12.5px;
    line-height: 1.55;
}

.store-inline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 9px;
    border-radius: var(--radius-pill);
    background: rgba(59, 130, 246, .14);
    color: var(--brand);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.store-quantity {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
}
.store-quantity__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dim);
    background: var(--bg-elevated);
    color: var(--text-1);
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.store-quantity__button:hover {
    border-color: var(--border);
    background: var(--bg-hover);
}
.store-quantity__button:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.store-quantity__button:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.store-quantity__input {
    text-align: center;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.store-range {
    width: 100%;
    accent-color: var(--brand);
}
.store-range-scale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.store-os-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}
.os-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 10rem;
    padding: 11px 14px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-pill);
    background: var(--bg-raised);
    color: var(--text-2);
    white-space: nowrap;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.os-tab:hover,
.os-tab.is-active {
    border-color: var(--brand);
    background: var(--blue-dim);
    color: var(--text-1);
}

.store-os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.os-card {
    width: 100%;
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    background: var(--bg-raised);
    color: var(--text-1);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.os-card:hover {
    border-color: var(--border);
    background: var(--bg-elevated);
    transform: translateY(-1px);
}
.os-card.is-selected {
    border-color: var(--brand);
    background: var(--blue-dim);
}
.os-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.os-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.os-card__title {
    color: var(--text-1);
    font-size: 14px;
    font-weight: 720;
    line-height: 1.35;
}
.os-selected-indicator {
    color: var(--brand);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.store-inline-error,
.store-inline-note {
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dim);
    background: var(--bg-raised);
    color: var(--text-2);
    font-size: 12.5px;
    line-height: 1.55;
}
.store-inline-error {
    border-color: rgba(239, 68, 68, .28);
    color: #ef4444;
}

.store-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.store-toggle__track {
    position: relative;
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: var(--bg-hover);
    border: 1px solid var(--border-dim);
    transition: background .2s ease, border-color .2s ease;
}
.store-toggle__track::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #fff;
    transition: transform .2s ease;
}
.store-toggle input:checked + .store-toggle__track {
    background: var(--brand);
    border-color: var(--brand);
}
.store-toggle input:checked + .store-toggle__track::after {
    transform: translateX(18px);
}
.store-toggle__label {
    color: var(--text-2);
    font-size: 14px;
    font-weight: 600;
}

.store-coupon-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-end;
}
.store-coupon-button {
    min-height: 48px;
    padding-inline: 20px;
}
.store-input-icon {
    position: relative;
}
.store-input-icon > i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-3);
    font-size: 18px;
    pointer-events: none;
}

.store-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-top: 2px;
}
.store-terms label {
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.55;
}
.store-terms a {
    color: var(--brand);
    text-decoration: underline;
}
.tos-check {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 auto;
    border-radius: 5px;
    border: 1px solid var(--border);
    background: var(--bg-raised);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.tos-check:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: var(--shadow-focus);
}
.tos-check:checked {
    border-color: var(--brand);
    background-color: var(--brand);
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3.5 8.5l2.5 2.5 6-6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

@media (max-width: 640px) {
    .store-affiliate-banner {
        padding: 16px;
    }
    .store-stepper {
        padding: 16px;
    }
    .store-coupon-row {
        flex-direction: column;
    }
    .store-coupon-button {
        width: 100%;
    }
}
