/** Shopify CDN: Minification failed

Line 1674:0 Expected "}" to go with "{"

**/
/* ============================================================
   XOXO WildHearts — Customer Service Stylesheet
   Fonts: Source Serif 4 (headings) + Karla (body)
   Primary: #53181f (burgundy)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,300;1,8..60,400;1,8..60,600;1,8..60,700&family=Karla:wght@300;400;500;600;700&display=swap');

/* ── Fix: lift Shopify & LangShop localization dropdowns above the CS sticky nav ──
   Theme renders localization popups with IDs containing "localization-form" in
   both the header and the footer. The sticky CS nav (z-index: 500) covers them.
   We bump these above it and also neutralise any stacking context traps. */
[id*="localization-form"],
[id*="localization-form"] *,
.localization-form,
.localization-selector,
.disclosure,
.disclosure__list-wrapper,
.country-selector,
.currency-selector,
.shopify-localization-form,
details[id*="Details-disclosure"],
details[id*="disclosure"][open] .disclosure__list-wrapper,
.header__localization,
.header-localization,
.header__country-selector,
.country-selector__list,
localization-form,
.disclosure__list,
[class*="langshop"],
[class*="langshop"] *,
[id*="langshop"],
[class*="ls-switcher"],
[class*="ls-dropdown"] {
    z-index: 99999 !important;
}

/* Native <div popover> and <details open> both create stacking contexts —
   raise the whole popup, not just its parent. */
[id*="localization-form"]:popover-open,
[popover][id*="localization-form"],
details[id*="Details-disclosure"][open],
details[id*="disclosure"][open] {
    z-index: 99999 !important;
    position: relative !important;
}

/* Safety net: when a localization popover is actually open, drop the sticky
   CS nav below it. Scoped narrowly to avoid flicker during scroll. */
body:has([id*="localization-form"]:popover-open) .cs-nav,
body:has(details[id*="localization"][open] [id*="localization-form"]) .cs-nav,
body:has([class*="langshop"]:hover) .cs-nav,
body:has([class*="ls-switcher"]:hover) .cs-nav,
body:has([class*="langshop"]:focus-within) .cs-nav,
body:has([class*="ls-switcher"]:focus-within) .cs-nav {
    z-index: 1 !important;
}

body:has([class*="langshop"]:hover) .cs-header,
body:has([class*="ls-switcher"]:hover) .cs-header,
body:has([class*="langshop"]:focus-within) .cs-header,
body:has([class*="ls-switcher"]:focus-within) .cs-header {
    z-index: 1 !important;
}

/* ── Tokens (scoped to the CS wrapper only) ─────────────────── */
.cs-wrapper {
    --cs-primary:      #53181f;
    --cs-primary-mid:  #6b1e26;
    --cs-primary-light:#7a2229;
    --cs-text:         #1a1a1a;
    --cs-text-muted:   #6b6b6b;
    --cs-bg:           #faf9f7;
    --cs-bg-warm:      #f5ede9;
    --cs-white:        #ffffff;
    --cs-border:       rgba(230,227,223,0.9);
    --cs-shadow-sm:    0 2px 8px rgba(0,0,0,0.04);
    --cs-shadow-md:    0 8px 24px rgba(0,0,0,0.07);
    --cs-shadow-lg:    0 20px 40px rgba(83,24,31,0.11);
    --cs-shadow-xl:    0 24px 48px rgba(83,24,31,0.17);
    --cs-ease:         cubic-bezier(0.4,0,0.2,1);
    --cs-ease-out:     cubic-bezier(0.23,1,0.32,1);
    --cs-heading:      'Source Serif 4', Georgia, serif;
    --cs-body:         'Karla', 'Helvetica Neue', sans-serif;

    /* Base styles moved off `body` — scoped only to the CS page */
    min-height: 100vh;
    font-family: var(--cs-body);
    color: var(--cs-text);
    background: var(--cs-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Reset — now scoped: only touches elements INSIDE .cs-wrapper ── */
.cs-wrapper, .cs-wrapper *, .cs-wrapper *::before, .cs-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.cs-wrapper a { text-decoration: none; color: inherit; }
.cs-wrapper img { max-width: 100%; height: auto; display: block; }
.cs-wrapper button { font-family: var(--cs-body); }

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.cs-header {
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-light) 100%);
    padding: 2.5rem 1rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
    overflow: visible;
}

.cs-header::before {
    content: '';
    position: absolute;
    top: -40%; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cs-header::after {
    content: '';
    position: absolute;
    bottom: -20%; left: 0;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cs-header-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cs-header-title {
    font-family: var(--cs-heading);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--cs-white);
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.cs-header-subtitle {
    font-family: var(--cs-body);
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

/* ── Search ─────────────────────────────────────────────────── */
.cs-search-container {
    max-width: 600px;
    margin: 1.5rem auto 0;
    position: relative;
    z-index: 300;
}

.cs-search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 0.875rem 1.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.cs-search-box:focus-within {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.cs-search-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    stroke: rgba(255,255,255,0.8);
}

.cs-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--cs-body);
    font-size: 0.9375rem;
    color: var(--cs-white);
    outline: none;
}

.cs-search-input::placeholder { color: rgba(255,255,255,0.6); }

.cs-search-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    padding: 2px;
    border-radius: 4px;
    transition: background 0.15s;
}

.cs-search-clear:hover {
    background: rgba(255,255,255,0.15);
    color: var(--cs-white);
}

.cs-search-results {
    position: absolute;
    top: calc(100% + 0.625rem);
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--cs-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    max-height: 420px;
    overflow-y: auto;
    z-index: 400;
    animation: csSlideDown 0.2s var(--cs-ease-out);
}

.cs-search-result-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--cs-border);
    cursor: pointer;
    transition: background 0.15s;
}

.cs-search-result-item:last-child { border-bottom: none; }
.cs-search-result-item:hover { background: var(--cs-bg); }

.cs-search-result-item strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--cs-text);
    margin-bottom: 0.25rem;
}

.cs-search-result-item span {
    font-size: 0.8125rem;
    color: var(--cs-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cs-search-no-results {
    padding: 1.5rem;
    text-align: center;
    color: var(--cs-text-muted);
    font-size: 0.9375rem;
}

/* ════════════════════════════════════════════
   NAV — uses <a> tags for SEO-friendly navigation
   ════════════════════════════════════════════ */
.cs-nav {
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-light) 100%);
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(83,24,31,0.22);
}

/* Safety net: drop the top CS nav behind the header if the user hovers/clicks the header.
   Wrapped in a media query so it doesn't drop the z-index of the bottom mobile nav on tap! */
@media screen and (min-width: 768px) {
    body:has(.shopify-section-group-header-group:hover) .cs-nav,
    body:has(.shopify-section-group-header-group:focus-within) .cs-nav,
    body:has(.cs-header:hover) .cs-nav,
    body:has(.cs-header:focus-within) .cs-nav {
        z-index: 2 !important;
    }
}

.cs-nav-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.cs-nav-container::-webkit-scrollbar { display: none; }

.cs-nav-item,
.cs-nav-item:link,
.cs-nav-item:visited {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.375rem;
    color: rgba(255,255,255,0.7) !important;
    font-family: var(--cs-body);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    border-bottom: 3px solid transparent;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
    text-decoration: none;
}

.cs-nav-item:hover,
.cs-nav-item:focus {
    color: #ffffff !important;
    background: rgba(255,255,255,0.10);
    border-bottom-color: rgba(255,255,255,0.4);
}

.cs-nav-item.active,
.cs-nav-item.active:link,
.cs-nav-item.active:visited {
    color: #ffffff !important;
    background: rgba(255,255,255,0.15);
    border-bottom-color: #ffffff;
}

.cs-icon {
    width: 18px; height: 18px;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   MAIN LAYOUT
   ════════════════════════════════════════════ */
.cs-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 5rem;
}

.cs-container {
    max-width: 900px;
    margin: 0 auto;
}

.cs-section {
    animation: csFadeIn 0.35s var(--cs-ease);
}

/* ── Section title ──────────────────────────────────────────── */
.cs-title {
    font-family: var(--cs-heading);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    color: var(--cs-primary);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
    letter-spacing: -0.02em;
}

.cs-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 64px; height: 3px;
    background: var(--cs-primary);
    border-radius: 2px;
    opacity: 0.5;
}

/* ════════════════════════════════════════════
   CARD
   ════════════════════════════════════════════ */
.cs-card {
    background: var(--cs-white);
    border: 1px solid var(--cs-border);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--cs-shadow-md);
    transition: box-shadow 0.25s var(--cs-ease), transform 0.25s var(--cs-ease), border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.cs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cs-primary), var(--cs-primary-light));
    opacity: 0;
    transition: opacity 0.25s var(--cs-ease);
}

.cs-card:hover { box-shadow: var(--cs-shadow-lg); transform: translateY(-3px); border-color: rgba(83,24,31,0.18); }
.cs-card:hover::before { opacity: 1; }

.cs-card h2 {
    font-family: var(--cs-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 1.625rem;
    color: var(--cs-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.015em;
}

.cs-card h3 {
    font-family: var(--cs-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cs-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.cs-card p { line-height: 1.85; color: var(--cs-text-muted); margin-bottom: 1rem; font-size: 0.9875rem; }
.cs-card p:last-child { margin-bottom: 0; }
.cs-card ul, .cs-card ol { padding-left: 1.5rem; color: var(--cs-text-muted); line-height: 1.85; margin-bottom: 1rem; font-size: 0.9875rem; }
.cs-card li { margin-bottom: 0.375rem; }

/* ════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════ */
.cs-faq { display: flex; flex-direction: column; gap: 0.625rem; }

.faq-section-title {
    font-family: var(--cs-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--cs-primary);
    margin: 2rem 0 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid rgba(83,24,31,0.15);
}

.faq-section-title:first-child { margin-top: 0; }

.faq-item {
    border: 1.5px solid var(--cs-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--cs-white);
}

.faq-item:hover { border-color: rgba(83,24,31,0.25); box-shadow: var(--cs-shadow-sm); }
.faq-item.active { border-color: rgba(83,24,31,0.3); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--cs-body);
    font-size: 0.9875rem;
    font-weight: 700;
    color: var(--cs-text);
    text-align: left;
    transition: background 0.15s, color 0.15s;
    gap: 1rem;
}

.faq-question:hover { background: rgba(83,24,31,0.03); }
.faq-item.active .faq-question { background: rgba(83,24,31,0.05); color: var(--cs-primary); }

.faq-icon {
    width: 20px; height: 20px;
    stroke-width: 2.5;
    flex-shrink: 0;
    color: var(--cs-primary);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.35s var(--cs-ease-out);
}

.faq-answer-inner { padding: 0.25rem 1.5rem 1.375rem; }

.faq-answer-inner p { color: var(--cs-text-muted); line-height: 1.85; font-size: 0.9375rem; margin-bottom: 0.75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-answer-inner ul { padding-left: 1.25rem; color: var(--cs-text-muted); line-height: 1.85; margin-bottom: 0.75rem; font-size: 0.9375rem; }

.faq-answer-inner a { color: var(--cs-primary); text-decoration: underline; text-decoration-color: rgba(83,24,31,0.3); text-underline-offset: 2px; }
.faq-answer-inner a:hover { text-decoration-color: var(--cs-primary); }

/* ════════════════════════════════════════════
   ORDER LOOKUP WIDGET
   ════════════════════════════════════════════ */
.order-lookup-widget {
    background: linear-gradient(135deg, rgba(83,24,31,0.05) 0%, rgba(83,24,31,0.08) 100%);
    border: 1.5px solid rgba(83,24,31,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.lookup-header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 0.875rem; }
.lookup-header svg { width: 28px; height: 28px; stroke: var(--cs-primary); flex-shrink: 0; }
.lookup-header h3 { font-family: var(--cs-heading); font-style: italic; font-weight: 400; font-size: 1.5rem; color: var(--cs-text); letter-spacing: -0.015em; }

.lookup-desc { color: var(--cs-text-muted); margin-bottom: 1.75rem; line-height: 1.7; font-size: 0.9375rem; }

.lookup-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }

.lookup-field label { display: block; font-weight: 700; font-size: 0.875rem; color: var(--cs-text); margin-bottom: 0.5rem; }

.lookup-field input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid var(--cs-border);
    border-radius: 12px;
    font-family: var(--cs-body);
    font-size: 0.9375rem;
    color: var(--cs-text);
    background: var(--cs-white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lookup-field input:focus { border-color: var(--cs-primary); box-shadow: 0 0 0 3px rgba(83,24,31,0.08); }

.lookup-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--cs-primary);
    color: var(--cs-white);
    border: none;
    border-radius: 12px;
    font-family: var(--cs-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.2s var(--cs-ease-out), box-shadow 0.2s;
}

.lookup-btn svg { width: 18px; height: 18px; }
.lookup-btn:hover { background: var(--cs-primary-light); transform: translateY(-2px); box-shadow: var(--cs-shadow-lg); }
.lookup-btn:active { transform: translateY(0); }

.order-results {
    margin-top: 1.5rem;
    border: 1.5px solid var(--cs-border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--cs-white);
    box-shadow: var(--cs-shadow-md);
}

.order-results-header {
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-primary-light));
    padding: 1.5rem 2rem;
}

.order-results-header h3 { font-family: var(--cs-heading); font-style: italic; font-weight: 400; font-size: 1.25rem; color: var(--cs-white); }
.order-results-header p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-top: 0.25rem; }

.order-results-body { padding: 1.75rem 2rem; }

.order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-status-badge.shipped, .order-status-badge.paid { background: rgba(0,163,65,0.1); color: #00a341; }
.order-status-badge.processing { background: rgba(83,24,31,0.08); color: var(--cs-primary); }
.order-status-badge.unpaid { background: rgba(220,38,38,0.1); color: #dc2626; }
.order-status-badge.refunded { background: rgba(107,114,128,0.1); color: #6b7280; }

.order-error {
    background: rgba(220,38,38,0.06);
    border: 1px solid rgba(220,38,38,0.2);
    color: #b91c1c;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    font-size: 0.9375rem;
    margin-top: 1rem;
}

/* ════════════════════════════════════════════
   PAYMENT METHODS — modern redesign
   ════════════════════════════════════════════ */
.payment-intro {
    color: var(--cs-text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.375rem;
}

/* Security banner */
.payment-security-banner {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    background: linear-gradient(135deg, rgba(83,24,31,0.06) 0%, rgba(83,24,31,0.03) 100%);
    border: 1.5px solid rgba(83,24,31,0.12);
    border-radius: 18px;
    padding: 1.125rem 1.5rem;
    margin-bottom: 1.375rem;
}
.payment-security-banner__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(83,24,31,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-primary);
    flex-shrink: 0;
}
.payment-security-banner__icon svg { width: 22px; height: 22px; }
.payment-security-banner strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--cs-text);
    margin-bottom: 0.2rem;
}
.payment-security-banner span {
    font-size: 0.8125rem;
    color: var(--cs-text-muted);
}

/* Payment method list */
.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.pm-card {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 1rem 1.125rem;
    background: var(--cs-white);
    border: 1.5px solid var(--cs-border);
    border-radius: 16px;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.pm-card:hover {
    border-color: rgba(83,24,31,0.25);
    box-shadow: 0 4px 16px rgba(83,24,31,0.08);
    transform: translateX(3px);
}
.pm-card__logo {
    width: 56px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.pm-card__logo svg { width: 52px; height: 20px; }
.pm-card__body {
    flex: 1;
    min-width: 0;
}
.pm-card__body strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--cs-text);
    line-height: 1.3;
}
.pm-card__body span {
    display: block;
    font-size: 0.8125rem;
    color: var(--cs-text-muted);
    margin-top: 0.15rem;
    line-height: 1.4;
}
.pm-card__badge {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}
.pm-card__badge--instant {
    background: rgba(0,163,65,0.1);
    color: #00843d;
}
.pm-card__badge--wallet {
    background: rgba(66,133,244,0.1);
    color: #1a6fd4;
}
.pm-card__badge--bnpl {
    background: rgba(255,179,199,0.35);
    color: #a05070;
}

/* Bank transfer block */
.payment-transfer-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.375rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--cs-border);
}
.payment-transfer-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(83,24,31,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-primary);
    flex-shrink: 0;
}
.payment-transfer-card__icon svg { width: 22px; height: 22px; }
.payment-transfer-card__header h2 { margin: 0 0 0.25rem; font-size: 1.125rem; }
.payment-transfer-card__header p { margin: 0; font-size: 0.875rem; color: var(--cs-text-muted); line-height: 1.6; }
.payment-iban-grid { display: flex; flex-direction: column; gap: 0.625rem; }
.payment-iban-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(83,24,31,0.03);
    border-radius: 10px;
}
.payment-iban-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cs-text-muted);
    min-width: 70px;
}
.payment-iban-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--cs-text);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    word-break: break-all;
}

/* ════════════════════════════════════════════
   RETURNS
   ════════════════════════════════════════════ */
.returns-highlight {
    background: linear-gradient(135deg, rgba(83,24,31,0.05), rgba(83,24,31,0.08));
    border: 1.5px solid rgba(83,24,31,0.15);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.returns-highlight-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(83,24,31,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.returns-highlight-icon svg { width: 24px; height: 24px; stroke: var(--cs-primary); }

.returns-highlight-body h3 { font-family: var(--cs-heading); font-style: italic; font-weight: 400; font-size: 1.125rem; color: var(--cs-text); margin-bottom: 0.5rem; }
.returns-highlight-body p { color: var(--cs-text-muted); line-height: 1.75; font-size: 0.9375rem; margin-bottom: 0; }

.returns-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    background: var(--cs-primary);
    color: var(--cs-white);
    border-radius: 10px;
    font-family: var(--cs-body);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: background 0.2s, transform 0.2s var(--cs-ease-out);
    text-decoration: none;
}

.returns-btn:hover { background: var(--cs-primary-light); transform: translateY(-2px); color: var(--cs-white); }
.returns-btn svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-bottom: 2rem; }

.contact-card {
    background: var(--cs-white);
    border: 1.5px solid var(--cs-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--cs-ease-out);
}

.contact-card:hover { border-color: rgba(83,24,31,0.25); box-shadow: var(--cs-shadow-sm); transform: translateY(-3px); }

.contact-card-icon { width: 52px; height: 52px; background: rgba(83,24,31,0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.contact-card-icon svg { width: 24px; height: 24px; stroke: var(--cs-primary); }

.contact-card h3 { font-family: var(--cs-heading); font-style: italic; font-weight: 400; font-size: 1.125rem; color: var(--cs-text); margin-bottom: 0.5rem; }
.contact-card p { color: var(--cs-text-muted); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 0.375rem; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a { color: var(--cs-primary); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

.contact-hours { display: inline-block; margin-top: 0.75rem; padding: 0.375rem 0.875rem; background: rgba(83,24,31,0.07); border-radius: 999px; font-size: 0.8125rem; font-weight: 700; color: var(--cs-primary); }

/* ════════════════════════════════════════════
   SEARCH — cross-page section badge
   ════════════════════════════════════════════ */
.cs-result-section-badge {
    display: inline-block;
    background: rgba(83,24,31,0.08);
    color: var(--cs-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.175rem 0.5rem;
    border-radius: 999px;
    margin-bottom: 0.25rem;
}
.cs-search-result-item { flex-direction: column; align-items: flex-start; }

/* ════════════════════════════════════════════
   CONTACT — form layout & styles
   ════════════════════════════════════════════ */
.cs-contact-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}
.cs-contact-form-col { min-width: 0; overflow: hidden; }
.cs-contact-form-col h2 { margin-bottom: 0.5rem; }
.cs-contact-intro {
    color: var(--cs-text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.cs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}
.cs-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.875rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

#cfAttachmentList {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
.cs-form-group label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--cs-text);
    letter-spacing: 0.01em;
}
.cs-form-group input,
.cs-form-group select,
.cs-form-group textarea {
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--cs-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--cs-text);
    background: var(--cs-bg);
    transition: border-color 0.18s, box-shadow 0.18s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.cs-form-group input:focus,
.cs-form-group select:focus,
.cs-form-group textarea:focus {
    outline: none;
    border-color: var(--cs-primary);
    box-shadow: 0 0 0 3px rgba(83,24,31,0.09);
}
.cs-form-group textarea { resize: vertical; min-height: 100px; }
.cs-submit-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-light) 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    box-shadow: 0 4px 14px rgba(83,24,31,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
    transition: transform 0.25s var(--cs-ease-out), box-shadow 0.25s var(--cs-ease-out), background 0.25s var(--cs-ease-out);
}
.cs-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s var(--cs-ease-out);
    pointer-events: none;
}
.cs-submit-btn > span,
.cs-submit-btn > svg { position: relative; z-index: 1; }
.cs-submit-btn svg { transition: transform 0.3s var(--cs-ease-out); }
.cs-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(83,24,31,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
    background: linear-gradient(135deg, var(--cs-primary-light) 0%, var(--cs-primary) 100%);
}
.cs-submit-btn:hover::before { transform: translateX(120%); }
.cs-submit-btn:hover svg { transform: translate(3px, -2px) rotate(8deg); }
.cs-submit-btn:active { transform: translateY(0); box-shadow: 0 3px 10px rgba(83,24,31,0.22); }
.cs-submit-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(83,24,31,0.28), 0 10px 24px rgba(83,24,31,0.25); }
.cs-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: 0 2px 8px rgba(83,24,31,0.1); }
.cs-submit-btn:disabled::before { display: none; }

/* ── Modern file drop zone ─────────────────── */
.cs-file-drop {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 1.5rem 1rem;
    background: var(--cs-white);
    border: 1.5px dashed var(--cs-border);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: border-color 0.2s var(--cs-ease-out), background 0.2s var(--cs-ease-out), transform 0.2s var(--cs-ease-out), box-shadow 0.2s var(--cs-ease-out);
}
.cs-file-drop:hover {
    border-color: var(--cs-primary);
    background: rgba(83,24,31,0.025);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(83,24,31,0.06);
}
.cs-file-drop:focus-within {
    border-color: var(--cs-primary);
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(83,24,31,0.12);
    outline: none;
}
.cs-file-drop.is-drag {
    border-color: var(--cs-primary);
    border-style: solid;
    background: rgba(83,24,31,0.05);
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(83,24,31,0.12);
}
.cs-file-drop-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--cs-primary);
    background: rgba(83,24,31,0.08);
    border-radius: 10px;
    margin-bottom: 0.125rem;
    transition: transform 0.25s var(--cs-ease-out), background 0.2s var(--cs-ease-out);
}
.cs-file-drop:hover .cs-file-drop-icon { transform: translateY(-2px); background: rgba(83,24,31,0.12); }
.cs-file-drop-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cs-text);
    line-height: 1.4;
}
.cs-file-drop-title em {
    font-style: normal;
    color: var(--cs-primary);
    text-decoration: underline;
    text-decoration-color: rgba(83,24,31,0.35);
    text-underline-offset: 3px;
    font-weight: 700;
}
.cs-file-drop-sub {
    font-size: 0.75rem;
    color: var(--cs-text-muted);
    line-height: 1.4;
}
.cs-file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.cs-form-note {
    font-size: 0.8125rem;
    color: var(--cs-text-muted);
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}
.cs-contact-success {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(83,24,31,0.05);
    border: 1.5px solid rgba(83,24,31,0.15);
    border-radius: 16px;
    color: var(--cs-text);
    font-size: 0.9375rem;
    line-height: 1.65;
}
.cs-contact-success p { margin: 0; }

/* Info panel */
.cs-contact-info-panel {
    background: rgba(83,24,31,0.035);
    border: 1.5px solid var(--cs-border);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cs-contact-info-panel h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cs-text);
    margin-bottom: 1.25rem;
}
.cs-contact-info-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--cs-border);
}
.cs-contact-info-item:last-of-type { border-bottom: none; }
.cs-contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(83,24,31,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-primary);
    flex-shrink: 0;
}
.cs-contact-info-icon svg { width: 17px; height: 17px; }
.cs-contact-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.cs-contact-info-item strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--cs-text);
}
.cs-contact-info-item a {
    font-size: 0.875rem;
    color: var(--cs-primary);
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}
.cs-contact-info-item a:hover { text-decoration: underline; }
.cs-contact-info-item span {
    font-size: 0.8rem;
    color: var(--cs-text-muted);
}
.cs-contact-info-kvk {
    padding-top: 1rem;
    border-top: 1px solid var(--cs-border);
    margin-top: 0.25rem;
}
.cs-contact-info-kvk p {
    font-size: 0.8125rem;
    color: var(--cs-text-muted);
    margin: 0.1rem 0;
}
.cs-contact-shortcuts { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cs-contact-shortcuts-label {
    width: 100%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cs-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.25rem;
}
.cs-contact-pill {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(83,24,31,0.07);
    color: var(--cs-primary);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.cs-contact-pill:hover { background: rgba(83,24,31,0.14); }

/* ════════════════════════════════════════════
   RETURNS — action grid & policy strip
   ════════════════════════════════════════════ */
.returns-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
    margin-bottom: 1.375rem;
}
.returns-action-card {
    background: var(--cs-surface);
    border: 1.5px solid var(--cs-border);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.returns-action-card:hover {
    box-shadow: 0 6px 24px rgba(83,24,31,0.10);
    transform: translateY(-3px);
}
.returns-action-card--primary {
    background: linear-gradient(135deg, #53181f 0%, #7a2229 100%);
    border-color: transparent;
}
.returns-action-card--primary h3,
.returns-action-card--primary p { color: #fff !important; }
.returns-action-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(83,24,31,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-primary);
    margin-bottom: 0.375rem;
    flex-shrink: 0;
}
.returns-action-card__icon svg { width: 22px; height: 22px; }
.returns-action-card--primary .returns-action-card__icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
}
.returns-action-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--cs-text);
    margin: 0;
}
.returns-action-card p {
    font-size: 0.875rem;
    color: var(--cs-text-muted);
    margin: 0;
    flex: 1;
    line-height: 1.55;
}
.returns-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
    padding: 0.625rem 1.125rem;
    background: #fff;
    color: var(--cs-primary);
    border: none;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
    align-self: flex-start;
    font-family: inherit;
}
.returns-action-btn:hover { background: #f5e8ea; transform: translateX(2px); }
.returns-action-btn--outline {
    background: transparent;
    border: 1.5px solid var(--cs-border);
    color: var(--cs-primary);
}
.returns-action-btn--outline:hover { background: rgba(83,24,31,0.05); }

.returns-policy-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--cs-surface);
    border: 1.5px solid var(--cs-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.375rem;
}
.returns-policy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1.375rem 0.75rem;
    text-align: center;
    border-right: 1px solid var(--cs-border);
}
.returns-policy-item:last-child { border-right: none; }
.returns-policy-item svg {
    width: 20px;
    height: 20px;
    color: var(--cs-primary);
    margin-bottom: 0.375rem;
    flex-shrink: 0;
}
.returns-policy-item strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--cs-text);
    display: block;
    line-height: 1.2;
}
.returns-policy-item span {
    font-size: 0.75rem;
    color: var(--cs-text-muted);
    display: block;
}

/* Returns Comparison Table */
.returns-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}
.returns-comp-col {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.returns-comp-exchange {
    background: linear-gradient(135deg, rgba(83,24,31,0.02) 0%, rgba(83,24,31,0.06) 100%);
    border-right: 1px solid var(--cs-border);
}
.returns-comp-refund {
    background: var(--cs-white);
}
.returns-comp-title {
    font-family: var(--cs-heading);
    font-style: italic;
    font-weight: 600;
    font-size: 1.375rem;
    color: var(--cs-primary);
    margin: 0 0 1.5rem 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.returns-comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}
.returns-comp-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--cs-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.returns-comp-list li strong {
    color: var(--cs-text);
}
.returns-comp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.125rem;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2353181f" stroke-width="2"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}
.returns-comp-list--refund li::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236b6b6b" stroke-width="2"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/></svg>') center/contain no-repeat;
}

/* ════════════════════════════════════════════
   CARE TIPS — non-FAQ tip cards
   ════════════════════════════════════════════ */
.care-tips-intro {
    color: var(--cs-text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.375rem;
}
.care-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.care-tip-card {
    background: rgba(83,24,31,0.03);
    border: 1.5px solid var(--cs-border);
    border-radius: 16px;
    padding: 1.375rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.care-tip-card:hover {
    box-shadow: 0 4px 18px rgba(83,24,31,0.08);
    transform: translateY(-2px);
}
.care-tip-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(83,24,31,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-primary);
    margin-bottom: 0.25rem;
    flex-shrink: 0;
}
.care-tip-icon svg { width: 20px; height: 20px; }
.care-tip-card strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--cs-text);
    line-height: 1.3;
}
.care-tip-card p {
    font-size: 0.875rem;
    color: var(--cs-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════════════
   CONTACT — response strip & shortcuts
   ════════════════════════════════════════════ */
.contact-response-strip {
    display: flex;
    gap: 0;
    background: var(--cs-surface);
    border: 1.5px solid var(--cs-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.375rem;
}
.contact-response-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 1.5rem;
    border-right: 1px solid var(--cs-border);
}
.contact-response-item:last-child { border-right: none; }
.contact-response-item svg {
    width: 22px;
    height: 22px;
    color: var(--cs-primary);
    flex-shrink: 0;
}
.contact-response-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cs-text);
    line-height: 1.3;
}
.contact-response-item span {
    font-size: 0.8rem;
    color: var(--cs-text-muted);
    display: block;
    line-height: 1.3;
}
.contact-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    margin-top: 1.25rem;
}
.contact-shortcut {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(83,24,31,0.04);
    border: 1.5px solid var(--cs-border);
    border-radius: 14px;
    text-decoration: none;
    color: var(--cs-text);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.contact-shortcut:hover {
    background: rgba(83,24,31,0.08);
    border-color: var(--cs-primary);
    transform: translateY(-2px);
}
.contact-shortcut svg {
    width: 18px;
    height: 18px;
    color: var(--cs-primary);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════════ */
@keyframes csFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes csSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
    .cs-header { padding-bottom: 1.5rem; }
    .cs-header-title { font-size: 1.875rem; }
    .cs-main { padding: 1rem 0.875rem calc(6rem + env(safe-area-inset-bottom)); }
    .cs-card { padding: 1.75rem 1.5rem; border-radius: 20px; }
    .cs-title { font-size: 2rem; }
    .lookup-fields { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .order-lookup-widget { padding: 1.75rem 1.5rem; }
    .returns-highlight { flex-direction: column; gap: 1rem; }
    .returns-action-grid { grid-template-columns: 1fr; }
    .care-tips-grid { grid-template-columns: 1fr; }
    .returns-policy-strip { grid-template-columns: repeat(2, 1fr); }
    .returns-policy-item:nth-child(2) { border-right: none; }
    .returns-policy-item:nth-child(1),
    .returns-policy-item:nth-child(2) { border-bottom: 1px solid var(--cs-border); }
    .returns-comparison { grid-template-columns: 1fr; }
    .returns-comp-col { padding: 1.75rem 1.5rem; }
    .returns-comp-exchange { border-right: none; border-bottom: 1px solid var(--cs-border); }
    .contact-response-strip { flex-direction: column; }
    .contact-response-item { border-right: none; border-bottom: 1px solid var(--cs-border); }
    .contact-response-item:last-child { border-bottom: none; }
    .contact-shortcuts-grid { grid-template-columns: 1fr; }
    .cs-contact-layout { grid-template-columns: 1fr; }
    .cs-contact-info-panel { order: 2; }
    .cs-form-row { grid-template-columns: 1fr; }

    /* Transform sticky top nav to fixed bottom nav - Dark Theme */
    .cs-nav {
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        height: calc(64px + env(safe-area-inset-bottom)) !important;
        background: var(--cs-primary, #53181f) !important; /* Restored original brand color */
        border-top: 1px solid rgba(0, 0, 0, 0.2) !important;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15) !important;
        z-index: 99 !important; /* Keep above the action bar */
        padding: 0 4px env(safe-area-inset-bottom) !important;
        margin: 0 !important;
    }

    /* Hide sticky nav entirely when theme popups lock the screen */
    html.lock .cs-nav {
        z-index: 0 !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .cs-nav-container {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        align-items: center !important;
        height: 100% !important;
        gap: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .cs-nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        padding: 6px 2px !important;
        background: transparent !important;
        border: none !important;
        color: rgba(255, 255, 255, 0.55) !important; /* Muted white for inactive tabs */
        font-size: 10px !important;
        font-weight: 500 !important;
        border-radius: 12px !important;
        width: 100% !important;
        height: 56px !important;
        min-width: 0 !important;
        -webkit-tap-highlight-color: transparent !important;
        transition: color 0.2s ease !important;
        line-height: 1.2 !important;
    }

    .cs-nav-item span {
        font-size: 9px !important;
        font-weight: 600 !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        word-break: normal !important;
        letter-spacing: -0.2px !important;
        color: inherit !important;
    }

    .cs-nav-item.active {
        color: var(--cs-white) !important; /* Bright white for active tab */
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .cs-icon {
        width: 22px !important;
        height: 22px !important;
        stroke-width: 2 !important;
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
        color: inherit !important;
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    /* Force SVGs to inherit the exact muted or bright color */
    .cs-icon svg, .cs-icon * {
        stroke: currentColor !important;
    }

    .cs-nav-item.active .cs-icon {
        transform: scale(1.15) !important;
    }

    .cs-main {
        padding-bottom: 80px !important;
    }

@media (max-width: 480px) {
    .cs-header { padding: 1.875rem 1rem 1.5rem; }
    .cs-header-title { font-size: 1.75rem; }
    .cs-card { padding: 1.375rem 1.25rem; }
    .payment-grid { grid-template-columns: repeat(2,1fr); }
    .contact-shortcuts-grid { grid-template-columns: repeat(2,1fr); }
    .returns-policy-strip { grid-template-columns: repeat(2, 1fr); }
    .lookup-header h3 { font-size: 1.25rem; }
    .order-lookup-widget { padding: 1.5rem 1.25rem; }
}

/* Inline FAQ Contact Button */
.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    padding: 0.5rem 1.125rem;
    background: rgba(83,24,31,0.05);
    color: var(--cs-primary) !important;
    border: 1.5px solid rgba(83,24,31,0.15);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.faq-contact-btn:hover {
    background: rgba(83,24,31,0.08);
    border-color: var(--cs-primary);
    transform: translateY(-1px);
}
