/* ========================================
   mediumseagreen-butterfly-974802.hostingersite.com — Pristine Light
   Editorial white storefront — distinct layout system
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* === PRISTINE WHITE BASE === */
    --bg-body:        #ffffff;
    --bg-section:     #f7f8fa;
    --bg-alt:         #eef1f5;
    --bg-card:        #ffffff;
    --bg-card-solid:  #fafbfc;
    --bg-card-hover:  #f3f5f8;
    --bg-input:       #ffffff;
    --bg-glass:       rgba(255,255,255,0.92);

    /* === TEXT (on white) === */
    --text-primary:   #0f1419;
    --text-secondary: #5c6570;
    --text-muted:     #8b949e;

    /* === ACCENT — deep teal (not gold-primary UI) === */
    --gold:           #0d6e6e;
    --gold-hover:     #0a5555;
    --gold-dark:      #084444;
    --gold-dim:       rgba(13,110,110,0.08);
    --gold-glow:      rgba(13,110,110,0.12);
    --gold-border:    rgba(13,110,110,0.35);

    /* === SYSTEM === */
    --red:            #c41e3a;
    --green:          #0d7a52;
    --blue:           #1e5a8c;

    /* === BORDERS === */
    --border:         rgba(15,20,25,0.08);
    --border-hover:   rgba(13,110,110,0.45);
    --border-strong:  rgba(15,20,25,0.14);

    /* === RADII — sharper editorial === */
    --radius:         4px;
    --radius-sm:      3px;
    --radius-xs:      2px;
    --radius-pill:    100px;

    /* === SHADOWS — soft paper depth === */
    --shadow-sm:   0 1px 3px rgba(15,20,25,0.06);
    --shadow:      0 8px 30px rgba(15,20,25,0.08);
    --shadow-lg:   0 24px 48px rgba(15,20,25,0.1);
    --shadow-gold: 0 8px 24px rgba(13,110,110,0.15);

    /* === LAYOUT === */
    --transition:  0.2s ease;
    --container:   1180px;
    --header-h:    76px;
    --nav-h:       52px;
    /* Sticky layers below header (notch / status bar) */
    --header-offset: calc(var(--header-h) + env(safe-area-inset-top, 0));

    /* === TYPOGRAPHY === */
    --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --tracking:     0.02em;
    --tracking-wide: 0.06em;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Page flow: announcement bar moves to bottom (visual reorder) */
body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}
body > .announcement-bar { order: 100; }
body > .site-footer { order: 99; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }
.cart-drawer, .drawer-overlay, .back-to-top, .toast { order: 101; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 2rem; border-radius: var(--radius-sm); font-weight: 600;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: var(--tracking);
    border: none; cursor: pointer; transition: all var(--transition);
    text-decoration: none; line-height: 1.4; position: relative; overflow: hidden;
}
.btn-gold {
    background: var(--text-primary);
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-xs);
    letter-spacing: var(--tracking-wide);
}
.btn-gold:hover {
    background: var(--gold);
    color: #fff;
    transform: none;
    box-shadow: var(--shadow-sm);
}
.btn-outline-gold {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: var(--radius-xs);
}
.btn-outline-gold:hover { background: var(--text-primary); color: #fff; border-color: var(--text-primary); }
.btn-white { background: #fff; color: var(--text-primary); border: 1px solid var(--border); }
.btn-white:hover { background: var(--bg-section); color: var(--text-primary); }
.btn-dark { background: var(--bg-alt); color: var(--text-primary); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--text-primary); color: var(--text-primary); }
.btn-disabled { background: var(--bg-alt); color: var(--text-muted); cursor: not-allowed; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.88rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.72rem; }
.btn-block { display: flex; width: 100%; }
.btn-pill { border-radius: var(--radius-pill); }
.btn-icon { padding: 0.5rem 0.7rem; }

/* ============ ANNOUNCEMENT BAR (page foot strip) ============ */
.announcement-bar {
    background: var(--text-primary);
    border-top: 1px solid var(--border-strong);
    min-height: 44px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    overflow: hidden;
    position: relative;
    z-index: 200;
}
.marquee-wrap { overflow: hidden; height: 100%; display: flex; align-items: center; }
.marquee-content {
    display: flex; gap: 5rem; white-space: nowrap;
    animation: marquee 45s linear infinite;
    font-size: 0.68rem; font-weight: 600;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.marquee-content span { display: flex; align-items: center; gap: 0.5rem; }
.marquee-content i { color: #7dd3d3; font-size: 0.65rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============ HEADER — actions left, logo right ============ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    min-height: var(--header-h);
    padding-top: env(safe-area-inset-top, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    background: var(--bg-glass);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 2px solid var(--text-primary);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border-strong);
}
.header-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}
.logo:hover { color: var(--gold); }
.logo-mark {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.logo:hover .logo-mark { transform: rotate(-12deg) scale(1.05); }
.footer-logo-mark {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; align-items: flex-end; text-align: right; min-width: 0; max-width: 100%; }
.logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}
.logo-sub { font-size: 0.58rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.18em; text-transform: uppercase; }

.header-actions a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 0;
    border: 1px solid var(--border);
    color: var(--text-primary);
    transition: all var(--transition);
    font-size: 1rem;
    position: relative;
    background: var(--bg-body);
}
.header-actions a:hover { background: var(--text-primary); color: #fff; border-color: var(--text-primary); }
.cart-badge {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px;
    border-radius: 0;
    background: var(--red);
    color: #fff;
    font-size: 0.55rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
}

/* ============ NAVIGATION ============ */
/* === NAVIGATION === */
.main-nav {
    background: var(--bg-body);
    border-bottom: 1px solid var(--border-strong);
    position: sticky;
    top: var(--header-offset);
    z-index: 90;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0.35rem 0;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list li a {
    display: block;
    padding: 0.55rem 0.95rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: all var(--transition);
    border: 1px solid transparent;
    border-radius: 0;
    position: relative;
}
.nav-list li a:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
    background: var(--bg-section);
}
.nav-list li a.active {
    color: var(--text-primary);
    border-color: var(--text-primary);
    background: var(--bg-section);
}

/* Mobile nav */
.mobile-menu-toggle {
    display: none;
    background: var(--bg-body);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition);
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle:hover {
    background: var(--text-primary);
    color: #fff;
    border-color: var(--text-primary);
}

@media (max-width: 900px) {
    .mobile-menu-toggle { display: flex; align-items: center; }
    .logo {
        flex: 1;
        min-width: 0;
        margin-inline-end: 0.35rem;
    }
    .logo-text { max-width: min(56vw, 260px); }
    .logo-name {
        font-size: clamp(0.62rem, 2.65vw, 0.95rem);
        line-height: 1.2;
    }
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-offset);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        border-bottom: none;
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    .main-nav.mobile-open { display: block; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 1rem 0 calc(2rem + env(safe-area-inset-bottom, 0));
        gap: 0;
    }
    .nav-list li a {
        padding: 0.95rem 1.25rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        border: none;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .nav-list li a:hover,
    .nav-list li a.active {
        border-color: var(--border);
        background: var(--bg-alt);
        border-left: 3px solid var(--gold);
        padding-left: calc(1.25rem - 2px);
    }
}

/* ============ HERO — split editorial layout ============ */
.hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border-strong);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, var(--bg-section) 0%, var(--bg-section) 44%, transparent 44.5%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.75' fill='%230d6e6e' fill-opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-bg {
    position: relative;
    order: 2;
    grid-column: 2;
    align-self: stretch;
    min-height: 420px;
    pointer-events: none;
    z-index: 1;
}
.hero-bg-cards { background: transparent; }
.hero-float-card {
    position: absolute;
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    opacity: 0.92;
    transition: opacity 0.3s;
}
.hero-float-card:hover { opacity: 1; }
.hero-card-1 { width: 100px; top: 18%; right: 12%; left: auto; transform: rotate(11deg); animation: float1 7s ease-in-out infinite; }
.hero-card-2 { width: 88px; bottom: 28%; right: 6%; transform: rotate(-6deg); animation: float2 9s ease-in-out infinite; }
.hero-card-3 { width: 115px; top: 42%; right: 28%; transform: rotate(4deg); animation: float3 8s ease-in-out infinite; }
.hero-card-4 { width: 82px; bottom: 12%; right: 38%; transform: rotate(-9deg); animation: float1 10s ease-in-out infinite reverse; }
.hero-card-5 { width: 95px; top: 8%; right: 4%; transform: rotate(7deg); animation: float2 11s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:rotate(11deg) translateY(0)} 50%{transform:rotate(11deg) translateY(-14px)} }
@keyframes float2 { 0%,100%{transform:rotate(-6deg) translateY(0)} 50%{transform:rotate(-6deg) translateY(-12px)} }
@keyframes float3 { 0%,100%{transform:rotate(4deg) translateY(0)} 50%{transform:rotate(4deg) translateY(-18px)} }

.hero-content {
    position: relative;
    z-index: 2;
    order: 1;
    grid-column: 1;
    align-self: center;
    max-width: 520px;
    padding: clamp(3rem, 8vw, 5rem) 2rem clamp(3rem, 8vw, 5rem) max(2rem, calc((100vw - var(--container)) / 2 + 2rem));
    margin-right: auto;
    text-align: left;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold);
    border: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 0.85rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4.2vw, 3.35rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1.1rem;
}
.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 0 2rem;
    line-height: 1.75;
}
.hero-buttons { display: flex; gap: 0.75rem; justify-content: flex-start; flex-wrap: wrap; }
.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.25rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-strong);
    max-width: 420px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}
.hero-stat-label { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; }

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero::before {
        background: var(--bg-section);
    }
    .hero-bg {
        grid-column: 1;
        order: 2;
        min-height: 220px;
    }
    .hero-content {
        grid-column: 1;
        order: 1;
        padding: 3rem 1.5rem;
        max-width: none;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stat-row { margin-left: auto; margin-right: auto; text-align: center; max-width: 360px; }
    .hero-stat { text-align: center; }
    .hero-bg-cards { opacity: 0.45; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
    background: var(--bg-body);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border-strong);
    padding: 1rem 0;
}
.trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 600;
    color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em;
    padding: 0.4rem 1.5rem;
    border-right: 1px solid var(--border);
    transition: color var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--gold); }
.trust-item i { color: var(--gold); font-size: 0.75rem; }
@media (max-width: 768px) {
    .trust-item { padding: 0.4rem 0.75rem; font-size: 0.65rem; }
    .trust-item:nth-child(n+4) { display: none; }
}

/* ============ FEATURED STRIP ============ */
.featured-strip { padding: 4rem 0; border-bottom: 1px solid var(--border); }

/* ============ PRODUCT CARDS ============ */
/* === PRODUCT CARDS === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    cursor: pointer;
    min-height: 140px;
}
.product-card:hover {
    border-color: var(--text-primary);
    transform: none;
    box-shadow: var(--shadow);
    background: var(--bg-card);
}
@media (hover: none), (pointer: coarse) {
    .product-card:hover {
        border-color: var(--border);
        transform: none;
        box-shadow: none;
    }
    .product-card:hover .product-card-image img {
        transform: none;
    }
}
.product-card-image {
    width: 38%;
    max-width: 140px;
    min-width: 120px;
    aspect-ratio: auto;
    min-height: 140px;
    overflow: hidden;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: inherit;
    text-decoration: none;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
}
a.product-card-image:hover { color: inherit; }
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.65rem;
    transition: transform 0.35s ease;
    filter: drop-shadow(0 2px 8px rgba(15,20,25,0.08));
}
.product-card-image img.img-loaded { opacity: 1; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-image .product-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--text-muted);
}
.product-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 0.2rem 0.55rem; border-radius: var(--radius-xs);
    font-size: 0.6rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    z-index: 1;
}
.badge-new { background: var(--green); color: #000; }
.badge-sale { background: var(--red); color: #fff; }
.badge-featured { background: var(--gold); color: #fff; }
.badge-oos { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.badge-rare { background: #9333ea; color: #fff; }

.product-card-body {
    padding: 1rem 1.15rem 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: center;
}
.product-card-category {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.1rem;
}
.product-card-name {
    font-family: var(--font-heading); font-size: 0.9rem;
    font-weight: 600; color: var(--text-primary); line-height: 1.3;
    flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-name a { color: inherit; text-decoration: none; }
.product-card-name a:hover { color: var(--gold); }
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.65rem;
    gap: 0.5rem;
}
.product-card-price {
    font-family: var(--font-heading); font-size: 1.1rem;
    font-weight: 800; color: var(--text-primary);
}
.product-card-price .price-was {
    font-size: 0.72rem; color: var(--text-muted);
    text-decoration: line-through; font-weight: 400;
    font-family: var(--font-body); display: block;
}
.product-card-price .price-sale-tag { color: var(--red); }
.btn-add-cart {
    flex-shrink: 0; background: var(--gold-dim);
    border: 1px solid var(--gold-border); color: var(--gold);
    padding: 0.45rem 0.75rem; border-radius: var(--radius-xs);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; cursor: pointer;
    transition: all var(--transition); white-space: nowrap;
}
.btn-add-cart:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-add-cart:disabled { background: var(--bg-alt); color: var(--text-muted); border-color: var(--border); cursor: not-allowed; }

@media (max-width: 520px) {
    .product-card {
        flex-direction: column;
        min-height: 0;
    }
    .product-card-image {
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 200px;
        aspect-ratio: 3/4;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

/* Product detail column (keeps existing markup in product.html) */
.product-detail-info .product-info { display: block; padding: 0; }
.product-detail-info .product-category {
    display: inline-block; font-size: 0.55rem; color: var(--gold);
    text-transform: uppercase; letter-spacing: var(--tracking-wide);
    font-weight: 600; margin-bottom: 0.5rem;
}
.price-current { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--gold); }
.product-price { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }

/* ============ WHY CHOOSE US ============ */
/* === WHY SECTION === */
.why-section { padding: 6rem 0; background: var(--bg-section); }
.why-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
}
.why-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.75rem;
    display: flex; gap: 1.25rem;
    transition: all var(--transition);
}
.why-card:hover { border-color: var(--gold-border); background: var(--bg-card-hover); transform: translateY(-3px); }
.why-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.1rem; color: var(--gold);
}
.why-text h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-text p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; }

/* ============ HELP CTA BANNER ============ */
.help-cta {
    background: var(--bg-section);
    border-top: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
}
.help-cta .container { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.help-cta h2 {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.help-cta p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============ SECTIONS ============ */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-section); }
.section-header { margin-bottom: 2.5rem; }
.section-header h2 {
    font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
}
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.view-all {
    font-size: 0.72rem; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.1em;
    display: flex; align-items: center; gap: 0.35rem;
    transition: gap var(--transition);
}
.view-all:hover { gap: 0.6rem; }
.section-label {
    display: inline-block; font-size: 0.65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--gold); margin-bottom: 0.6rem;
}

/* ============ HOW IT WORKS ============ */
/* === HOW SECTION === */
.how-section { padding: 6rem 0; }
.how-steps {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem; margin-top: 3rem; position: relative;
}
.how-step {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.5rem;
    text-align: center; transition: all var(--transition);
}
.how-step:hover { border-color: var(--gold-border); background: var(--bg-card-hover); }
.how-step-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-dim), transparent);
    border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; position: relative; font-size: 1.3rem; color: var(--gold);
}
.how-step-num {
    position: absolute; top: -6px; right: -6px;
    background: var(--gold); color: #fff;
    width: 22px; height: 22px; border-radius: 50%;
    font-size: 0.6rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); border: 2px solid var(--bg-body);
}
.how-step h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.how-step p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }
/* Decorative arrows hidden — grid layout for “How it works” */
.how-arrow { display: none !important; }

/* ============ TAB BAR ============ */
.tab-bar { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
    padding: 0.55rem 1.5rem; border-radius: var(--radius-pill);
    font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: var(--tracking); border: 1px solid var(--border);
    background: transparent; color: var(--text-secondary); cursor: pointer;
    transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--border-hover); color: var(--gold); }
.tab-btn.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    font-weight: 700;
}

/* ============ AUTHENTICITY SECTION ============ */
.auth-section {
    padding: 6rem 0; position: relative; overflow: hidden;
    background: var(--bg-alt);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.auth-mascot-bg {
    position: absolute; right: -2rem; bottom: 0; height: 110%;
    opacity: 0.08; pointer-events: none; z-index: 0;
}
.auth-mascot-bg img { height: 100%; width: auto; object-fit: contain; object-position: right bottom; }
.auth-content { max-width: 560px; position: relative; z-index: 2; }
.auth-avatar { margin-bottom: 1.25rem; }
.auth-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--border-strong);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}
.auth-content h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; }
.auth-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.9; }

/* ============ LIVE BREAKS SECTION ============ */
.live-breaks-section {
    position: relative; padding: 6rem 0; overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.live-breaks-bg {
    position: absolute; inset: 0; z-index: 0;
}
.live-breaks-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.live-breaks-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(247,248,250,0.82) 100%);
    z-index: 1;
}
.live-breaks-bg-cards {
    background: radial-gradient(ellipse at 60% 50%, #eef1f5 0%, #ffffff 70%);
}
.live-float-card {
    position: absolute; width: auto; height: auto;
    max-height: 80%; border-radius: 12px; opacity: 0.12;
    filter: blur(0.5px); pointer-events: none;
    object-fit: contain;
    animation: floatCard 10s ease-in-out infinite;
}
.live-card-1 { top: 5%; left: 5%; --card-rotate: rotate(-8deg); max-height: 75%; animation-delay: -1s; }
.live-card-2 { top: 10%; right: 8%; --card-rotate: rotate(10deg); max-height: 65%; opacity: 0.09; animation-delay: -3s; }
.live-card-3 { bottom: 5%; left: 35%; --card-rotate: rotate(4deg); max-height: 60%; opacity: 0.07; animation-delay: -5s; }
.live-breaks-content {
    position: relative; z-index: 2; max-width: 560px;
    text-align: center; margin: 0 auto;
}
.live-breaks-content h2 {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem;
}
.live-breaks-content p {
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============ COLLECTIONS GRID ============ */
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.collection-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-strong);
    transition: all var(--transition);
    display: block;
    text-decoration: none;
    background: var(--bg-section);
}
.collection-tile:hover { border-color: var(--border-hover); transform: scale(1.02); box-shadow: var(--shadow); }
.collection-tile img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-tile:hover img { transform: scale(1.08); }
.collection-tile-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}
.shop-now-tag {
    font-size: 0.58rem; text-transform: uppercase; letter-spacing: var(--tracking-wide);
    color: var(--gold); font-weight: 600; margin-bottom: 0.3rem;
}
.collection-tile-overlay h3 { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }

/* ============ TESTIMONIALS CAROUSEL ============ */
.testimonials-carousel {
    position: relative; overflow: hidden;
    margin: 0 -2rem; padding: 0 2rem;
}

/* The global `.reveal` animation applies `transform: translateY(...)`.
   On this carousel it can cause a visible layout "side shift" when it enters view,
   so keep the transform disabled and animate only opacity. */
.testimonials-carousel.reveal,
.testimonials-carousel.reveal.visible {
    transform: none !important;
}
.testimonials-track {
    display: flex; gap: 1.5rem;
    animation: testimonialScroll 60s linear infinite;
    width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }

@keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    transition: all var(--transition); position: relative;
    min-width: 340px; max-width: 340px; flex-shrink: 0;
}
.testimonial-card::before {
    content: '\201c';
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    font-size: 3rem;
    color: rgba(13,110,110,0.08);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover { border-color: var(--border-hover); }
.testimonial-header {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-strong);
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-product {
    display: block; font-size: 0.7rem; color: var(--text-muted);
    text-decoration: none; margin-top: 0.15rem;
}
.testimonial-product:hover { color: var(--gold); }
.testimonial-card .quote { font-size: 0.82rem; color: var(--text-secondary); font-style: italic; line-height: 1.7; }
.testimonial-card .handle { font-size: 0.8rem; font-weight: 700; color: var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 0.65rem; margin-bottom: 0.6rem; letter-spacing: 0.1em; }

/* ============ STATS BAR ============ */
.stats-bar {
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border);
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(13,110,110,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(196,30,58,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.stats-bar-pokeball {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid var(--border);
    opacity: 0.35;
    pointer-events: none;
}
.stats-bar-pokeball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-strong);
}
.stats-bar-pokeball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border);
}
.stats-row {
    display: flex; justify-content: center; gap: 0;
    text-align: center; position: relative; z-index: 1;
}
.stat-item {
    padding: 1rem 2.5rem; position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
}
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--bg-body);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    font-size: 1rem;
    color: var(--gold);
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    line-height: 1;
}
.stat-label {
    font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: var(--tracking-wide); font-weight: 500;
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
    padding: 5rem 0; text-align: center;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(13,110,110,0.06) 0%, transparent 55%);
}
.newsletter-content { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.newsletter-content h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.4; }
.newsletter-content p { color: var(--text-secondary); margin-bottom: 1.75rem; font-size: 0.92rem; }
.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border: 2px solid var(--text-primary);
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-body);
}
.newsletter-form input {
    flex: 1; padding: 0.85rem 1.5rem; background: transparent;
    border: none; color: var(--text-primary); outline: none; font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
    padding: 0.85rem 2rem;
    background: var(--text-primary);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: var(--tracking);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    border-radius: 0;
    margin: 0;
}
.newsletter-form button:hover { background: var(--gold-hover); }
.social-row { display: flex; justify-content: center; gap: 1rem; margin-top: 1.75rem; }
.social-row a {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border); display: flex;
    align-items: center; justify-content: center;
    color: var(--text-muted); transition: all var(--transition);
    font-size: 0.9rem;
}
.social-row a:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-dim); }
#newsletter-message { margin-top: 0.75rem; font-size: 0.8rem; }

/* ============ FOOTER ============ */
/* === FOOTER === */
.site-footer {
    background: var(--bg-section);
    border-top: 2px solid var(--text-primary);
    padding: 4rem 0 1.75rem;
    margin-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
    font-size: 0.83rem; color: var(--text-secondary);
    line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem;
}
.footer-col.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-col h4 {
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-primary); margin-bottom: 1.25rem;
}
.footer-col p { color: var(--text-secondary); font-size: 0.83rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.83rem; color: var(--text-secondary);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-logo {
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer-col.footer-brand .footer-logo-mark {
    width: 24px;
    height: 24px;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: var(--radius-xs);
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); font-size: 0.85rem;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }
.footer-bottom {
    padding-top: 2rem; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
.footer-trust-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.trust-badge {
    display: flex; align-items: center; gap: 0.35rem;
    font-size: 0.65rem; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.trust-badge i { color: var(--gold); font-size: 0.7rem; }
.payment-icons { display: flex; gap: 0.6rem; font-size: 1.4rem; color: var(--text-muted); flex-wrap: wrap; }
.payment-icons i { transition: color var(--transition); }
.payment-icons i:hover { color: var(--text-secondary); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
    right: calc(1rem + env(safe-area-inset-right, 0));
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-card-solid); border: 1px solid var(--border);
    color: var(--gold); font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 999;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--text-primary); color: #fff; border-color: var(--text-primary); }

/* ============ PAGE BANNER ============ */
.page-banner {
    padding: 3.5rem 0; text-align: center;
    background: linear-gradient(180deg, var(--bg-section), var(--bg-alt));
    border-bottom: 1px solid var(--border);
}
.page-banner h1 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.page-banner p { color: var(--text-secondary); font-size: 0.9rem; }

/* ============ BREADCRUMB ============ */
.breadcrumb-bar { background: var(--bg-section); padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-primary); }

/* ============ SHOP LAYOUT ============ */
.shop-section { padding: 2.5rem 0 5rem; }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; }

.shop-sidebar { position: sticky; top: calc(var(--header-offset) + 1.5rem); align-self: start; }
.sidebar-widget {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}
.sidebar-widget h3 {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: var(--tracking); margin-bottom: 0.85rem;
    padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.category-list li:last-child a { border-bottom: none; }
.category-list li a:hover, .category-list li a.active { color: var(--gold); }
.category-list li a span { color: var(--text-muted); font-size: 0.72rem; }

.price-filter .price-inputs { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.85rem; }
.price-filter input {
    width: 100%; padding: 0.5rem; background: var(--bg-input);
    border: 1px solid var(--border); border-radius: var(--radius-xs);
    color: var(--text-primary); text-align: center; outline: none; font-size: 0.82rem;
    transition: border-color var(--transition);
}
.price-filter input:focus { border-color: var(--gold); }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
.result-count { font-size: 0.8rem; color: var(--text-secondary); }
.sort-bar { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.sort-bar label { color: var(--text-muted); white-space: nowrap; font-size: 0.75rem; }
.sort-bar select {
    padding: 0.45rem 0.85rem; background: var(--bg-card-solid);
    border: 1px solid var(--border); border-radius: var(--radius-xs);
    color: var(--text-primary); outline: none; font-size: 0.78rem;
    transition: border-color var(--transition);
}
.sort-bar select:focus { border-color: var(--gold); }
.mobile-filter-toggle { display: none; }

.empty-shop { text-align: center; padding: 5rem 1.5rem; color: var(--text-muted); grid-column: 1/-1; }
.empty-shop i { font-size: 3rem; margin-bottom: 1rem; color: var(--text-muted); }
.empty-shop h3 { margin-bottom: 0.5rem; color: var(--text-primary); font-size: 1.15rem; }

/* ============ PRODUCT DETAIL ============ */
.product-detail-section { padding: 2.5rem 0 5rem; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-bottom: 3rem; }
.product-detail-image,
.product-detail-info {
    min-width: 0;
}
.product-detail-image {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
}
.product-image-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}
.product-main-image-wrap {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.product-detail-image img.product-detail-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Swipeable product gallery (admin-uploaded images) */
.product-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.product-gallery-viewport {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, rgba(240, 192, 64, 0.07), transparent 55%);
}
.product-gallery-scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-card);
    outline: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
}
.product-gallery-scroll:focus-visible {
    box-shadow: 0 0 0 2px var(--gold);
}
.product-gallery-scroll::-webkit-scrollbar {
    height: 8px;
}
.product-gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
.product-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    min-height: clamp(280px, 62vw, 520px);
    max-height: 560px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    box-sizing: border-box;
}
.product-gallery-slide img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.product-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.product-gallery-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}
.product-gallery-prev { left: 0.65rem; }
.product-gallery-next { right: 0.65rem; }
.product-gallery-arrow:disabled,
.product-gallery-arrow.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.product-gallery.is-single .product-gallery-arrow,
.product-gallery.is-single .product-gallery-footer,
.product-gallery.is-single .product-thumb-strip {
    display: none;
}
.product-gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem 0.35rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.product-gallery-heading {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    font-weight: 700;
}
.product-gallery-count {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
}
.product-gallery .product-badge.badge-sale {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
}
.product-placeholder-large {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; font-size: 4rem; color: var(--text-muted);
}
.product-detail-info h1 {
    font-family: var(--font-heading); font-size: 1.75rem;
    font-weight: 700; margin-bottom: 0.6rem; line-height: 1.3;
}
.product-short-desc { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.92rem; line-height: 1.8; }
.product-detail-price { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.price-current-lg { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); }
.price-was-lg { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.discount-pct { background: var(--red); color: #fff; padding: 0.2rem 0.6rem; border-radius: var(--radius-pill); font-size: 0.65rem; font-weight: 700; letter-spacing: var(--tracking); }
.product-meta {
    margin-bottom: 1.5rem; padding: 1rem;
    background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border);
}
.meta-item { display: flex; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.82rem; border-bottom: 1px solid var(--border); }
.meta-item:last-child { border-bottom: none; }
.meta-item span:first-child { color: var(--text-muted); min-width: 90px; }
.in-stock { color: var(--green); }
.out-of-stock { color: var(--red); }

.product-actions { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; align-items: stretch; }
.quantity-selector { display: flex; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.quantity-selector-sm { height: 36px; }
.qty-btn {
    width: 40px; background: var(--bg-card-solid); border: none;
    color: var(--text-primary); font-size: 1rem; cursor: pointer;
    transition: all var(--transition);
}
.qty-btn:hover { background: var(--gold); color: #fff; }
.quantity-selector input {
    width: 48px; text-align: center; border: none;
    border-left: 1px solid var(--border); border-right: 1px solid var(--border);
    background: var(--bg-input); color: var(--text-primary); font-weight: 600;
    outline: none; -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button { -webkit-appearance: none; }

.product-guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-top: 1.5rem; }
.product-guarantees div {
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem;
    color: var(--text-secondary); padding: 0.7rem;
    background: var(--bg-card); border-radius: var(--radius-sm); border: 1px solid var(--border);
    text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600;
}
.product-guarantees i { color: var(--gold); }

.product-description { margin-bottom: 3rem; }
.product-description h2 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 0.85rem; font-weight: 700; }
.description-content { color: var(--text-secondary); line-height: 1.9; max-width: 750px; font-size: 0.9rem; }

/* Product gallery thumbnails (below main swipe area) */
.product-gallery .product-thumb-strip,
.product-thumb-strip {
    display: flex;
    gap: 0.65rem;
    padding: 0.85rem 1rem 1rem;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    border-top: 2px solid var(--border);
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-card) 100%);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}
.product-thumb {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.2rem;
    background: var(--bg-body);
    cursor: pointer;
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    scroll-snap-align: start;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.product-thumb-active,
.product-thumb:focus-visible {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-glow, rgba(240, 192, 64, 0.35));
    transform: translateY(-1px);
}
.product-thumb:hover {
    border-color: var(--gold);
}

/* ============ CART ============ */
.cart-section { padding: 2.5rem 0 5rem; }
.empty-cart { text-align: center; padding: 5rem 1.5rem; }
.empty-cart i { font-size: 3.5rem; color: var(--text-muted); margin-bottom: 1rem; }
.empty-cart h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.empty-cart p { color: var(--text-secondary); margin-bottom: 1.5rem; max-width: 400px; margin-left: auto; margin-right: auto; font-size: 0.9rem; }

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.cart-table {
    width: 100%; border-collapse: collapse;
    background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
}
.cart-table th {
    padding: 0.75rem 1rem; text-align: left; font-size: 0.62rem;
    text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--text-muted);
    background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 0.85rem; }
.cart-product-info { display: flex; align-items: center; gap: 0.75rem; }
.cart-product-image { width: 52px; height: 52px; border-radius: var(--radius-xs); overflow: hidden; background: rgba(255,255,255,0.02); flex-shrink: 0; }
.cart-product-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-weight: 600; font-size: 0.85rem; }
.no-image { width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--text-muted); }

.summary-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    position: sticky; top: calc(var(--header-offset) + 1.5rem);
}
.summary-card h3 {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: var(--tracking); margin-bottom: 1rem;
    padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.summary-row { display: flex; justify-content: space-between; padding: 0.45rem 0; font-size: 0.85rem; }
.summary-total { font-size: 1.05rem; font-weight: 700; border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.5rem; margin-bottom: 1rem; }
.summary-total span:last-child { color: var(--gold); font-family: var(--font-heading); }
.free-shipping { color: var(--green); font-weight: 600; }
.free-shipping-notice {
    background: var(--gold-dim); padding: 0.6rem 0.85rem;
    border-radius: var(--radius-xs); font-size: 0.72rem; color: var(--gold);
    margin: 0.5rem 0; font-weight: 600;
}

/* ============ CHECKOUT ============ */
.checkout-section { padding: 2.5rem 0 5rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 420px; gap: 2.5rem; align-items: start; }
.checkout-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem;
}
.checkout-card h3 {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: var(--tracking); margin-bottom: 1rem;
    padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.checkout-item { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.82rem; color: var(--text-secondary); }
.checkout-summary hr { border: none; border-top: 1px solid var(--border); margin: 0.6rem 0; }
.payment-options { display: grid; gap: 0.6rem; }
.payment-option { cursor: pointer; }
.payment-option input { display: none; }
.payment-option-content {
    display: flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1rem;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    transition: all var(--transition); font-size: 0.85rem;
}
.payment-option input:checked + .payment-option-content { border-color: var(--gold); background: var(--gold-dim); }
.payment-option input:disabled + .payment-option-content {
    opacity: 0.55;
    cursor: not-allowed;
    border-color: var(--border);
    background: var(--bg-card-solid);
    pointer-events: none;
}
.payment-option-content i { font-size: 1rem; color: var(--text-secondary); }
.payment-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.6rem; }

/* ============ ORDER CONFIRMATION ============ */
.confirmation-section { padding: 5rem 0; }
.confirmation-card {
    text-align: center; max-width: 520px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 3.5rem;
}
.confirmation-icon { font-size: 3.5rem; color: var(--green); margin-bottom: 1rem; }
.confirmation-card h1 { font-family: var(--font-heading); font-size: 1.75rem; margin-bottom: 0.5rem; }
.order-number { font-size: 1rem; color: var(--gold); margin-bottom: 1rem; }
.confirmation-card p { color: var(--text-secondary); margin-bottom: 0.5rem; font-size: 0.88rem; }
.confirmation-actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.75rem; }

/* ============ CONTACT ============ */
.contact-section { padding: 3rem 0 5rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; }
.contact-info-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
}
.contact-info-card h3 {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: var(--tracking); margin-bottom: 1rem;
}
.contact-info-item { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-info-item i { color: var(--gold); font-size: 0.9rem; margin-top: 0.2rem; }
.contact-info-item strong { display: block; font-size: 0.85rem; margin-bottom: 0.15rem; }
.contact-info-item p { color: var(--text-secondary); font-size: 0.82rem; margin: 0; }

/* ============ CONTENT PAGES ============ */
.content-section { padding: 3rem 0 5rem; }
.content-page { max-width: 750px; margin: 0 auto; color: var(--text-secondary); line-height: 1.9; font-size: 0.9rem; }
.content-page h2 { color: var(--text-primary); margin: 2.5rem 0 0.75rem; font-size: 1.3rem; font-family: var(--font-heading); font-weight: 700; }
.content-page h3 { color: var(--text-primary); margin: 1.5rem 0 0.5rem; font-size: 1rem; font-weight: 700; }
.content-page ul { margin: 0.5rem 0 1rem 1.5rem; list-style: disc; }
.content-page li { margin-bottom: 0.35rem; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem; margin-bottom: 0.85rem;
    transition: all var(--transition); cursor: pointer;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item h3 { font-size: 0.92rem; color: var(--text-primary); margin-bottom: 0.4rem; display: flex; justify-content: space-between; align-items: center; }
.faq-item h3::after { content: '+'; color: var(--gold); font-size: 1.2rem; font-weight: 300; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block; margin-bottom: 0.4rem; font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: var(--tracking); color: var(--text-muted);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.7rem 1rem; background: var(--bg-input);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-primary); outline: none; transition: all var(--transition);
    font-size: 0.85rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============ ALERTS ============ */
.alert { padding: 0.8rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.82rem; }
.alert ul { margin: 0; padding-left: 1rem; list-style: disc; }
.alert-success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: var(--green); }
.alert-error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: var(--red); }

/* ============ PAGINATION ============ */
.pagination { display: flex; justify-content: center; gap: 0.35rem; margin-top: 2.5rem; flex-wrap: wrap; align-items: center; }
.pagination a {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 0.8rem; font-weight: 600;
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--border-hover); color: var(--gold); }
.pagination a.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ============ TOAST ============ */
.toast {
    position: fixed; bottom: 2rem; right: 2rem;
    background: var(--bg-card-solid); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1rem 1.5rem;
    box-shadow: var(--shadow); z-index: 9999;
    display: flex; align-items: center; gap: 0.75rem;
    transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 360px; backdrop-filter: blur(12px);
}
.toast.show { transform: translateY(0); }
.toast i { color: var(--green); font-size: 1.1rem; }
.toast-message { font-size: 0.85rem; }

/* ============ CART DRAWER ============ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 25, 0.25);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.drawer-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    height: 100dvh;
    max-height: -webkit-fill-available;
    background: var(--bg-body);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 2px solid var(--text-primary);
    z-index: 2001; transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }
.drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem;
    padding-top: calc(1.25rem + env(safe-area-inset-top, 0));
    padding-left: calc(1.5rem + env(safe-area-inset-left, 0));
    padding-right: calc(1.5rem + env(safe-area-inset-right, 0));
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.drawer-header h3 {
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: var(--tracking);
}
.drawer-close {
    background: none; border: none; color: var(--text-muted);
    font-size: 1.1rem; cursor: pointer; padding: 0.3rem;
    transition: color var(--transition);
}
.drawer-close:hover { color: var(--gold); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.drawer-footer {
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.drawer-empty {
    text-align: center; padding: 3rem 1rem; color: var(--text-secondary);
    font-size: 0.85rem; line-height: 1.7;
}

/* Cart drawer items */
.drawer-item-row {
    display: flex; gap: 0.85rem;
    padding: 0.75rem 0; border-bottom: 1px solid var(--border);
    align-items: center;
}
.drawer-item-image {
    width: 52px; height: 52px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    background: var(--bg-section);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.drawer-cart-img {
    width: 100%; height: 100%;
    object-fit: contain;
    background: var(--bg-section);
}
.drawer-cart-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-section);
}
.drawer-item-info { flex: 1; min-width: 0; }
.drawer-item-name {
    font-size: 0.82rem; font-weight: 600;
    line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.drawer-item-meta {
    font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.drawer-item-total {
    font-size: 0.85rem; color: var(--gold); font-weight: 700;
    white-space: nowrap; font-family: var(--font-heading);
}
.drawer-remove-btn {
    width: 34px; height: 34px;
    border-radius: var(--radius-xs);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.drawer-remove-btn:hover {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-dim);
}
.drawer-remove-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .collections-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .shop-layout { grid-template-columns: 220px 1fr; }
    .stat-item { padding: 1rem 1.5rem; }
    .stat-number { font-size: 2rem; }
}

@media (max-width: 768px) {
    .container {
        padding-left: max(1rem, env(safe-area-inset-left, 0));
        padding-right: max(1rem, env(safe-area-inset-right, 0));
    }

    /* Two columns: more stable tap targets & readable type than 3-up */
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }
    .product-card-body { padding: 0.75rem 0.65rem; }
    .product-card-name { font-size: 0.78rem; min-height: 0; margin-bottom: 0.3rem; line-height: 1.35; }
    .product-card-category { font-size: 0.55rem; margin-bottom: 0.2rem; }
    .price-current { font-size: 0.88rem; }
    .product-card-price .price-was { font-size: 0.68rem; }
    .product-price { margin-bottom: 0.5rem; gap: 0.3rem; }
    .btn-add-cart { padding: 0.45rem 0.65rem; font-size: 0.65rem; min-height: 40px; }
    .product-badge { top: 0.4rem; left: 0.4rem; padding: 0.18rem 0.45rem; font-size: 0.5rem; }
    .product-card { border-radius: var(--radius-sm); }
    .product-card-image img { padding: 0.5rem; }

    .collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
    .testimonial-card { min-width: min(300px, 85vw); max-width: min(300px, 85vw); }
    .testimonials-carousel {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 1.75rem; }

    .stats-row { flex-wrap: wrap; }
    .stat-item { width: 50%; padding: 1.25rem 1rem; }
    .stat-item + .stat-item::before { display: none; }
    .stat-number { font-size: 2rem; }
    .stats-bar-pokeball { width: 250px; height: 250px; }

    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar {
        display: none; position: fixed; top: 0; left: 0; width: 300px;
        height: 100vh; z-index: 1001; background: rgba(5,5,5,0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem; overflow-y: auto; box-shadow: var(--shadow);
    }
    .shop-sidebar.active { display: block; }
    .mobile-filter-toggle { display: inline-flex; }

    .product-detail { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-gallery-slide {
        padding: 0.85rem 2.5rem;
        min-height: clamp(240px, 56vw, 480px);
    }
    .product-gallery-arrow {
        width: 40px;
        height: 40px;
    }
    .product-gallery-prev { left: 0.4rem; }
    .product-gallery-next { right: 0.4rem; }
    .product-guarantees { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; }

    .cart-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 3.5rem 0; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Cart drawer readability on small screens */
    .cart-drawer {
        width: 100vw;
        max-width: 100vw;
    }
    .drawer-body { padding: 1rem; }
    .drawer-footer { padding: 1rem; }
    .drawer-item-row { gap: 0.6rem; padding: 0.7rem 0; }
    .drawer-item-name { white-space: normal; }
    .drawer-item-meta { white-space: normal; }
    .drawer-item-total { font-size: 0.88rem; }
    .drawer-item-total { white-space: normal; }
    .drawer-item-row { align-items: flex-start; }
    .drawer-remove-btn { width: 32px; height: 32px; }

    /* Toast on small screens: keep fully on-screen */
    .toast {
        left: max(0.75rem, env(safe-area-inset-left, 0));
        right: max(0.75rem, env(safe-area-inset-right, 0));
        bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
        max-width: unset;
        transform: translateY(80%);
    }
    .toast.show { transform: translateY(0); }

    /* Product page: ensure injected Description/Related content is visible */
    .product-description.reveal,
    .related-products.reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: max(0.85rem, env(safe-area-inset-left, 0));
        padding-right: max(0.85rem, env(safe-area-inset-right, 0));
    }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; }
    .product-card-body { padding: 0.6rem 0.5rem; }
    .product-card-name { font-size: 0.72rem; -webkit-line-clamp: 2; min-height: 0; margin-bottom: 0.25rem; }
    .product-card-category { font-size: 0.52rem; }
    .price-current { font-size: 0.82rem; }
    .product-card-price .price-was { font-size: 0.62rem; }
    .product-price { margin-bottom: 0.4rem; }
    .btn-add-cart { padding: 0.4rem 0.55rem; font-size: 0.62rem; letter-spacing: 0.03em; min-height: 40px; }
    .product-badge { font-size: 0.48rem; padding: 0.14rem 0.4rem; }
    .product-card-image img { padding: 0.4rem; }

    .collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-card { gap: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .confirmation-actions { flex-direction: column; }
    .newsletter-form { flex-direction: column; border-radius: var(--radius-sm); }
    .newsletter-form input { border-radius: var(--radius-sm) var(--radius-sm) 0 0; padding: 1rem; }
    .newsletter-form button { border-radius: 0 0 var(--radius-sm) var(--radius-sm); margin: 0; padding: 1rem; }
    .stat-item { width: 50%; }
}

@media (max-width: 359px) {
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.45rem; }
    .product-card-body { padding: 0.45rem 0.4rem; }
    .product-card-name { font-size: 0.68rem; }
    .price-current { font-size: 0.78rem; }
    .btn-add-cart { padding: 0.35rem 0.45rem; font-size: 0.58rem; min-height: 38px; }
}

/* === RESPONSIVE GLOBAL === */
@media (max-width: 1200px) {
    .hero-card-2, .hero-card-4 { display: none; }
}
@media (max-width: 768px) {
    /* Keep hero compact on phones — avoid fighting the 900px `min-height: auto` with a tall 75vh */
    .hero { min-height: 0; }
    .hero h1 { font-size: clamp(1.75rem, 7vw, 2.6rem); }
    .hero-content {
        padding: 2.75rem 1.25rem 2.5rem;
        padding-left: max(1.25rem, env(safe-area-inset-left, 0));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0));
    }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-card-1, .hero-card-3, .hero-card-5 { display: none; }
    .hero-stat-row { gap: 1.25rem; }
    .hero-stat-num { font-size: 1.35rem; }
    .why-section, .how-section { padding: 3.5rem 0; }
    .section { padding: 3rem 0; }
    .section-header { margin-bottom: 1.75rem; }
    .page-banner {
        padding: 2.5rem max(1rem, env(safe-area-inset-left, 0)) 2.5rem max(1rem, env(safe-area-inset-right, 0));
    }
    .page-banner h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
    .site-footer { padding: 3rem 0 1.5rem; margin-top: 3rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
@media (max-width: 480px) {
    .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
    .products-grid { gap: 0.65rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

/* === MOBILE POLISH: touch & motion === */
.btn, .header-actions a, .mobile-menu-toggle, .tab-btn, .pagination a, .drawer-close {
    -webkit-tap-highlight-color: rgba(13, 110, 110, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee-content { animation: none !important; }
    .testimonials-track { animation: none !important; }
    .hero-float-card, .live-float-card { animation: none !important; }
    .stats-bar-pokeball { animation: none !important; }
}

/* ========================================
   Loose Packs Trading Co. Ground-Up Rebuild
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --black:        #000000;
    --black-soft:   #0A0A0A;
    --black-card:   #111111;
    --black-raised: #181818;
    --black-border: #222222;
    --gold:         #F0C040;
    --gold-bright:  #FFD54F;
    --gold-dark:    #C99A1A;
    --gold-dim:     rgba(240,192,64,0.1);
    --gold-border:  rgba(240,192,64,0.25);
    --gold-glow:    rgba(240,192,64,0.35);
    --white:        #FFFFFF;
    --gray-1:       #AAAAAA;
    --gray-2:       #666666;
    --gray-3:       #333333;
    --red:          #FF3B3B;
    --green:        #00E676;
    --blue:         #2979FF;
    --bar-bg:       #F0C040;
    --bar-text:     #000000;
    --container:    1440px;
    --header-h:     72px;
    --radius:       12px;
    --radius-sm:    8px;
    --radius-xs:    6px;
    --radius-pill:  999px;
    --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body:    'Inter', sans-serif;
    --bg-body:      #000000;
    --bg-section:   #080808;
    --bg-alt:       #0A0A0A;
    --bg-card:      #111111;
    --bg-card-solid:#111111;
    --bg-card-hover:#181818;
    --bg-input:     #0C0C0C;
    --bg-glass:     rgba(0,0,0,0.96);
    --text-primary: var(--white);
    --text-secondary: var(--gray-1);
    --text-muted: var(--gray-2);
    --border: var(--black-border);
    --border-strong: rgba(240,192,64,0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--gold); }
a:hover { color: var(--gold-bright); }
input, select, textarea, button { font-family: inherit; }
.container { max-width: var(--container); padding: 0 2.5rem; }

.section-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.35;
    margin: 0;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

.page-loader {
    position: fixed; inset: 0; background: var(--black);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-brand {
    font-family: var(--font-display); font-size: 2.5rem;
    color: var(--gold); letter-spacing: 0.2em; display: block; margin-bottom: 1.5rem;
}
.loader-bar {
    width: 180px; height: 2px; background: var(--black-border);
    border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
    height: 100%; background: var(--gold); border-radius: 2px;
    animation: loader-progress 0.8s ease-out forwards;
}
@keyframes loader-progress { 0% { width: 0%; } 100% { width: 100%; } }

.announcement-bar {
    background: var(--bar-bg);
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.marquee-wrap { overflow: hidden; flex: 1; }
.marquee-content {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee-scroll 35s linear infinite;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--bar-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.marquee-content span { display: flex; align-items: center; gap: 0.6rem; }
.marquee-content .dot { width: 5px; height: 5px; background: var(--black); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    height: var(--header-h);
    background: rgba(0,0,0,0.96);
    border-bottom: 1px solid var(--black-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color var(--transition);
}
.site-header.scrolled { border-bottom-color: rgba(240,192,64,0.3); }

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header-h);
    gap: 1rem;
}

.mobile-menu-toggle {
    display: flex; align-items: center; justify-content: flex-start;
    background: none; border: none; cursor: pointer;
    color: var(--white); padding: 0.5rem; gap: 0.5rem;
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.mobile-menu-toggle:hover { color: var(--gold); }
.mobile-menu-toggle .hamburger { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.mobile-menu-toggle .hamburger span {
    display: block; height: 2px; background: currentColor;
    border-radius: 2px; transition: all var(--transition);
}
.mobile-menu-toggle.open .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle.open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.logo {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-decoration: none; justify-self: center;
}
.logo-main {
    font-family: var(--font-display);
    font-size: 2.2rem; line-height: 0.9;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-shadow: 0 2px 20px rgba(240,192,64,0.4);
}
.logo-sub {
    font-family: var(--font-display);
    font-size: 1.1rem; line-height: 1;
    letter-spacing: 0.2em;
    color: var(--white);
    text-transform: uppercase;
}
.logo:hover .logo-main { color: var(--gold-bright); }

.header-actions {
    display: flex; align-items: center; justify-content: flex-end;
    gap: 0.25rem;
}
.header-actions a, .header-actions button {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    color: var(--gray-1); background: none; border: none;
    font-size: 1.1rem; cursor: pointer; position: relative; text-decoration: none;
}
.header-actions a:hover, .header-actions button:hover { color: var(--gold); background: var(--gold-dim); }
.cart-badge {
    position: absolute; top: 4px; right: 4px;
    min-width: 17px; height: 17px;
    background: var(--gold); color: #000;
    font-size: 0.58rem; font-weight: 900;
    border-radius: 100px; display: flex; align-items: center; justify-content: center;
    padding: 0 3px; border: 2px solid var(--black); font-family: var(--font-heading);
}
.header-nav-links {
    display: flex; align-items: center; gap: 0.5rem;
    margin-right: 0.5rem;
}
.header-nav-links a {
    width: auto; height: auto;
    font-family: var(--font-heading); font-size: 0.78rem;
    font-weight: 600; color: var(--gray-1);
    letter-spacing: 0.05em; white-space: nowrap;
    padding: 0.3rem 0.6rem;
}
.header-nav-links a:hover { color: var(--gold); background: transparent; }

.mega-menu {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--black-border);
    z-index: 400; padding: 3rem 0 4rem;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; max-height: calc(100vh - var(--header-h));
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    pointer-events: none;
}
.mega-menu.open { transform: translateY(0); pointer-events: auto; }
.mega-menu-inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; }
.mega-menu-left h2 {
    font-family: var(--font-display);
    font-size: 3.5rem; line-height: 1;
    color: var(--gold); margin-bottom: 0.5rem;
}
.mega-menu-left p { font-size: 0.85rem; color: var(--gray-2); margin-bottom: 2rem; line-height: 1.6; }
.mega-menu-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold); color: #000;
    font-family: var(--font-heading); font-size: 0.78rem;
    font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.75rem 1.5rem; border-radius: var(--radius-pill);
}
.mega-menu-cta:hover { background: var(--gold-bright); color: #000; transform: translateY(-2px); }
.mega-menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.mega-menu-col h4 {
    font-family: var(--font-heading); font-size: 0.65rem;
    font-weight: 700; color: var(--gold); letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 1rem;
    padding-bottom: 0.5rem; border-bottom: 1px solid var(--black-border);
}
.mega-menu-col ul li a {
    display: block; font-size: 0.9rem; color: var(--gray-1);
    padding: 0.35rem 0; border-left: 2px solid transparent; padding-left: 0.75rem;
    margin-left: -0.75rem;
}
.mega-menu-col ul li a:hover { color: var(--gold); border-left-color: var(--gold); }
.mega-menu-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); z-index: 390;
}
.mega-menu-overlay.open { display: block; }
.main-nav { display: none !important; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; border-radius: var(--radius-pill);
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--transition); text-decoration: none;
    white-space: nowrap; padding: 0.7rem 1.75rem;
}
.btn-gold { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-gold:hover {
    background: var(--gold-bright); color: #000;
    border-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240,192,64,0.35);
}
.btn-ghost {
    background: transparent; color: var(--white);
    border-color: var(--black-border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold {
    background: transparent; color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #000; }
.btn-dark { background: var(--black-card); color: var(--white); border-color: var(--black-border); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 0.85rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.72rem; }
.btn-block { width: 100%; }
.btn-pill { border-radius: var(--radius-pill); }

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h) - 38px);
    background: var(--black);
    display: flex; align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(240,192,64,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240,192,64,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; bottom: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(240,192,64,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-layout {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 480px;
    gap: 4rem; align-items: center; width: 100%;
}
.hero-left { padding: 5rem 0; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading); font-size: 0.72rem;
    font-weight: 700; color: var(--gold); letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; display: block; height: 1px;
    width: 30px; background: var(--gold); opacity: 0.6;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.95; letter-spacing: 0.02em;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: normal; color: var(--gold);
    text-shadow: 0 0 60px rgba(240,192,64,0.4);
}
.hero-subtitle {
    font-size: 1rem; color: var(--gray-1);
    max-width: 480px; line-height: 1.75; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
    display: flex; gap: 2.5rem; flex-wrap: wrap;
    padding-top: 2rem; border-top: 1px solid var(--black-border);
}
.hero-stat-num {
    font-family: var(--font-display); font-size: 2.5rem;
    line-height: 1; color: var(--gold); display: block;
}
.hero-stat-label {
    font-size: 0.7rem; color: var(--gray-2);
    text-transform: uppercase; letter-spacing: 0.12em;
    font-family: var(--font-heading); font-weight: 600;
}
.hero-right { position: relative; height: 580px; }
.hero-card-stack { position: relative; width: 100%; height: 100%; }
.hero-card-stack img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(240,192,64,0.1);
    object-fit: contain;
}
.hcs-1 { width: 200px; top: 10%; left: 15%; z-index: 3; animation: hcs-float 8s ease-in-out infinite; }
.hcs-2 { width: 175px; top: 5%; left: 45%; z-index: 2; transform: rotate(8deg); animation: hcs-float 10s ease-in-out infinite reverse; }
.hcs-3 { width: 185px; top: 38%; left: 5%; z-index: 1; transform: rotate(-6deg); animation: hcs-float 9s ease-in-out infinite 1s; }
.hcs-4 { width: 165px; top: 42%; left: 50%; z-index: 2; transform: rotate(4deg); animation: hcs-float 11s ease-in-out infinite 0.5s; }
.hcs-5 { width: 150px; bottom: 5%; left: 25%; z-index: 3; transform: rotate(-3deg); animation: hcs-float 7s ease-in-out infinite 2s; }
@keyframes hcs-float { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-20px) rotate(var(--r,0deg)); } }
.hero-card-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(240,192,64,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.trust-bar, .trust-strip {
    background: var(--black-soft);
    border-bottom: 1px solid var(--black-border);
    padding: 1.25rem 0;
}
.trust-bar-inner, .trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 2rem;
    border-right: 1px solid var(--black-border);
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 600; color: var(--gray-1);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--gold); }
.trust-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.brand-marquee {
    padding: 3rem 0;
    background: var(--black-soft);
    overflow: hidden;
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}
.brand-marquee-track {
    display: flex; gap: 3rem; white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
}
.brand-marquee-item {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.04em; text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(240,192,64,0.25);
    white-space: nowrap; flex-shrink: 0;
}
.brand-marquee-item.filled { color: var(--gold); -webkit-text-stroke: 0; }
.brand-marquee-sep { color: var(--gold); opacity: 0.4; flex-shrink: 0; display: flex; align-items: center; }

.section { padding: 5rem 0; }
.section-alt { background: var(--black-soft); }
.section-header { margin-bottom: 2.5rem; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.section-eyebrow {
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
    color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
    display: block; margin-bottom: 0.6rem;
}
.section-title, .section-header h2, .page-banner h1, .help-cta h2, .auth-content h2, .live-breaks-content h2, .newsletter-content h2, .content-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.95; letter-spacing: 0.02em;
    text-transform: uppercase; color: var(--white);
}
.view-all {
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; color: var(--white); letter-spacing: 0.06em;
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1rem; border: 1px solid var(--black-border);
    border-radius: var(--radius-pill);
}
.view-all:hover { border-color: var(--gold); color: var(--gold); }

.how-section { padding: 6rem 0; background: var(--black); }
.how-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0; border-top: 1px solid var(--black-border); border-left: 1px solid var(--black-border); }
.how-step, .how-arrow {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}
.how-step:hover { background: var(--black-card); }
.how-step-num {
    font-family: var(--font-display); font-size: 4rem;
    color: rgba(240,192,64,0.15); line-height: 1;
    display: block; margin-bottom: 1rem;
}
.how-step-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.how-step h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.how-step p { font-size: 0.85rem; color: var(--gray-1); line-height: 1.65; }
.how-arrow { display: flex; align-items: center; justify-content: center; min-height: 100%; }
.how-arrow-line { stroke: rgba(240,192,64,0.35); stroke-width: 2; }
.how-arrow-head { fill: var(--gold); opacity: 0.8; }

.why-section { padding: 6rem 0; background: var(--black-soft); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--black-border); border: 1px solid var(--black-border); border-radius: var(--radius); overflow: hidden; margin-top: 3.5rem; }
.why-card { background: var(--black-soft); padding: 2.5rem 2rem; }
.why-card:hover { background: var(--black-raised); }
.why-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.why-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.85rem; color: var(--gray-1); line-height: 1.7; }

.deal-section {
    padding: 5rem 0;
    background: var(--black-soft);
    position: relative; overflow: hidden;
}
.deal-section::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(240,192,64,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.deal-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.deal-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold); color: #000;
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.3rem 0.8rem; border-radius: var(--radius-xs);
    margin-bottom: 1.25rem;
}
.deal-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 0.95; text-transform: uppercase; margin-bottom: 1rem;
}
.deal-title em { font-style: normal; color: var(--gold); }
.deal-desc { font-size: 0.9rem; color: var(--gray-1); line-height: 1.7; margin-bottom: 2rem; }
.countdown { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.countdown-block { text-align: center; }
.countdown-num {
    display: block; font-family: var(--font-display);
    font-size: 3rem; line-height: 1; color: var(--gold);
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: var(--radius-sm); width: 80px; padding: 0.5rem 0;
}
.countdown-label { font-size: 0.6rem; color: var(--gray-2); text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-heading); margin-top: 0.4rem; display: block; }
.countdown-sep { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); display: flex; align-items: center; padding-bottom: 1.5rem; opacity: 0.5; }
.deal-image-wrap { position: relative; }
.deal-image-wrap img {
    width: 100%; max-width: 320px; margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(240,192,64,0.2));
    animation: hcs-float 6s ease-in-out infinite;
}
.deal-sticker {
    position: absolute; top: 0; right: 0;
    width: 90px; height: 90px; background: var(--red);
    border-radius: 50%; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: var(--font-display); color: #fff; text-align: center;
}
.deal-sticker-pct { font-size: 2rem; line-height: 1; }
.deal-sticker-off { font-size: 0.7rem; letter-spacing: 0.08em; }

.review-hero {
    padding: 7rem 0 5rem;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.review-hero::before {
    content: '';
    position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(240,192,64,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.review-big-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 18vw, 180px);
    line-height: 0.9; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-bright) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block; margin-bottom: 1.5rem;
}
.review-subtitle {
    font-size: 1.05rem; color: var(--gray-1);
    max-width: 600px; margin: 0 auto 1rem;
    line-height: 1.6;
}
.review-stars { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.review-count { font-size: 0.8rem; color: var(--gray-2); font-family: var(--font-heading); letter-spacing: 0.1em; text-transform: uppercase; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px; background: var(--black-border);
    border: 1px solid var(--black-border);
    border-radius: var(--radius); overflow: hidden;
    margin-top: 4rem;
}
.review-card {
    background: var(--black-card);
    padding: 1.75rem;
}
.review-card:hover { background: var(--black-raised); }
.review-card-header {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--gold);
    flex-shrink: 0;
}
.review-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }
.review-meta { font-size: 0.72rem; color: var(--gray-2); margin-top: 0.1rem; }
.review-source { margin-left: auto; }
.review-source i { color: #4285F4; font-size: 1.1rem; }
.review-stars-sm { color: var(--gold); font-size: 0.78rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.88rem; color: var(--gray-1); line-height: 1.6; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1px;
    background: var(--black-border);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.product-card {
    background: var(--black);
    display: flex; flex-direction: column;
    position: relative; cursor: pointer;
}
.product-card:hover { background: var(--black-card); }
.product-card-media {
    aspect-ratio: 3/4; overflow: hidden;
    background: var(--black-soft);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.product-card-image {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.product-card-image img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 1.25rem;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.8));
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--gold); color: #000;
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.7rem; text-align: center;
    transform: translateY(100%); transition: transform 0.28s ease;
}
.product-card:hover .product-card-overlay { transform: translateY(0); }
.product-card-overlay.out-of-stock { background: var(--gray-3); color: var(--gray-2); cursor: not-allowed; }
.product-badge {
    position: absolute; top: 10px; left: 10px;
    font-family: var(--font-heading); font-size: 0.65rem;
    font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.2rem 0.6rem; border-radius: 4px; z-index: 2;
}
.badge-sale { background: var(--red); color: #fff; }
.badge-new { background: var(--green); color: #000; }
.badge-oos { background: #222; color: var(--gray-2); }
.badge-featured { background: var(--gold); color: #000; }
.product-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.product-card-category {
    font-family: var(--font-heading); font-size: 0.6rem;
    font-weight: 700; color: var(--gold); text-transform: uppercase;
    letter-spacing: 0.14em;
}
.product-card-name, .product-card-name a {
    font-family: var(--font-heading); font-size: 0.95rem;
    font-weight: 600; color: var(--white); line-height: 1.25; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem; margin-top: 0.35rem; }
.product-card-price, .product-detail-price { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.price-current, .price-current-lg, .price-sale-tag {
    font-family: var(--font-heading); font-size: 1.1rem;
    font-weight: 700; color: var(--white);
}
.price-current-lg { font-size: 2rem; }
.price-was, .price-was-lg { font-size: 0.8rem; color: var(--gray-2); text-decoration: line-through; }
.price-was-lg { font-size: 1rem; }
.price-save, .discount-pct { font-size: 0.7rem; color: var(--red); font-weight: 600; font-family: var(--font-heading); }
.btn-add-cart {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 40px; padding: 0.65rem 1rem;
    background: var(--gold); border: 0; border-radius: var(--radius-pill);
    color: #000; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer;
}
.btn-add-cart:hover:not(:disabled) { background: var(--gold-bright); transform: translateY(-2px); }
.btn-add-cart:disabled { background: var(--gray-3); color: var(--gray-2); cursor: not-allowed; }

.featured-strip, .newsletter-section, .auth-section, .live-breaks-section, .stats-bar, .content-section, .contact-section, .faq-section, .checkout-section, .cart-section, .shop-section, .product-detail-section {
    padding: 5rem 0;
}
.featured-strip, .newsletter-section, .shop-section { background: var(--black-soft); }
.page-banner, .breadcrumb-bar {
    border-bottom: 1px solid var(--black-border);
    background: var(--black);
}
.page-banner { padding: 3.5rem 0 2.5rem; }
.page-banner p, .section-header p, .help-cta p, .auth-content p, .live-breaks-content p, .newsletter-content p, .content-page p, .contact-info-card p, .faq-item p, .meta-item, .payment-note, .summary-row, .description-content, .product-description, .product-short-desc {
    color: var(--gray-1);
}
.breadcrumb-bar { padding: 1rem 0; }
.breadcrumb {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.breadcrumb .current { color: var(--white); }

.shop-layout, .contact-layout, .checkout-layout, .cart-layout { display: grid; gap: 2rem; }
.shop-layout { grid-template-columns: 300px 1fr; align-items: start; }
.contact-layout, .checkout-layout, .cart-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.shop-sidebar, .shop-content, .sidebar-widget, .product-detail, .contact-info-card, .summary-card, .checkout-card, .faq-item, .content-page, .cart-container, .empty-cart, .empty-shop, .confirmation-card, .alert {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
}
.sidebar-widget, .contact-info-card, .summary-card, .checkout-card, .faq-item, .content-page, .confirmation-card, .alert { padding: 1.5rem; }
.sidebar-widget + .sidebar-widget { margin-top: 1rem; }
.sidebar-widget h3, .contact-info-card h3, .summary-card h3, .checkout-card h3, .faq-item h3 {
    font-family: var(--font-heading); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem;
}
.category-list li + li { margin-top: 0.5rem; }
.category-list a {
    display: block; padding: 0.75rem 0.9rem; border-radius: var(--radius-sm);
    color: var(--gray-1); background: var(--black); border: 1px solid var(--black-border);
    font-family: var(--font-heading); font-size: 0.85rem;
}
.category-list a:hover, .category-list a.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.price-filter, .shop-search-form, .newsletter-form, .form-group, .payment-option-content, .product-actions { display: grid; gap: 0.75rem; }
.price-inputs, .form-row, .shop-toolbar, .sort-bar, .payment-options, .meta-item, .quantity-selector, .quantity-selector-sm {
    display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
}
.shop-toolbar { justify-content: space-between; margin-bottom: 1.5rem; }
.shop-search-form { grid-template-columns: 1fr auto; width: min(100%, 420px); }
.shop-search-form input, .newsletter-form input, .price-inputs input, .form-group input, .form-group textarea, .form-group select, .checkout-form input, .checkout-form textarea, .checkout-form select, .cart-qty-input {
    width: 100%;
    background: var(--black); border: 1px solid var(--black-border);
    border-radius: var(--radius-pill); color: var(--white);
    padding: 0.85rem 1.1rem; font-size: 0.92rem; outline: none;
}
.form-group textarea, .checkout-form textarea { min-height: 140px; border-radius: var(--radius); resize: vertical; }
.shop-search-form button {
    min-width: 48px; border-radius: var(--radius-pill); border: 0;
    background: var(--gold); color: #000; cursor: pointer; font-size: 1rem;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
input::placeholder, textarea::placeholder { color: var(--gray-2); }
label { font-family: var(--font-heading); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-2); }
.sort-bar select, .shop-toolbar select { min-width: 120px; }
.pagination, .tab-bar { display: flex; gap: 0.65rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.pagination a, .pagination button, .tab-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; padding: 0.65rem 1rem; border-radius: var(--radius-pill);
    border: 1px solid var(--black-border); background: var(--black-card); color: var(--gray-1);
    font-family: var(--font-heading); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
}
.pagination a:hover, .pagination button:hover, .tab-btn:hover, .tab-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.product-detail {
    display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem; padding: 2rem;
}
.product-main-image-wrap {
    background: radial-gradient(circle at top, rgba(240,192,64,0.08), transparent 50%), var(--black);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    min-height: 460px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-detail-image > .product-image-wrap {
    background: transparent;
    border: none;
    min-height: 0;
}
.product-detail-img { max-height: 520px; object-fit: contain; padding: 2rem; }
.product-info h1, .product-info h2 {
    font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 0.95; text-transform: uppercase;
}
.product-category {
    display: inline-flex; align-items: center;
    font-family: var(--font-heading); font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1rem;
}
.product-meta, .product-guarantees { display: grid; gap: 0.9rem; margin: 1.5rem 0; }
.meta-item i, .product-guarantees i, .contact-info-item i { color: var(--gold); }
.quantity-selector button, .qty-btn, .cart-qty-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--black-border);
    background: var(--black-card); color: var(--white); cursor: pointer;
}
.quantity-selector input, .cart-qty-input { width: 80px; text-align: center; }
.product-gallery .product-thumb-strip { margin-top: 0; flex-wrap: nowrap; }

.description-content, .related-products-area, .product-description-area { margin-top: 2rem; }
.description-content, .content-page, .faq-item, .alert, .confirmation-card { line-height: 1.8; }
.content-page, .confirmation-card { max-width: 960px; margin: 0 auto; }
.content-page h2, .content-page h3 { font-family: var(--font-heading); color: var(--gold); margin: 1.5rem 0 0.75rem; }
.content-page ul, .description-content ul { list-style: disc; padding-left: 1.25rem; color: var(--gray-1); }
.content-page li, .description-content li { margin-bottom: 0.5rem; }

.cart-container, .checkout-card, .summary-card { padding: 1.5rem; }
.cart-table, .cart-items { display: grid; gap: 1rem; }
.checkout-item, .cart-item-row, .cart-product-info { display: grid; gap: 1rem; }
.checkout-item, .cart-item-row {
    grid-template-columns: auto 1fr auto; align-items: center;
    border-bottom: 1px solid var(--black-border); padding-bottom: 1rem;
}
.cart-product-image, .checkout-item img, .drawer-cart-img {
    width: 72px; height: 72px; object-fit: contain;
    background: var(--black); border: 1px solid var(--black-border); border-radius: var(--radius-sm); padding: 0.5rem;
}
.cart-product-name, .checkout-item strong { font-family: var(--font-heading); font-weight: 700; color: var(--white); }
.cart-remove-btn {
    border: 0; background: transparent; color: var(--red); cursor: pointer;
    font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem;
}
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; }
.summary-total { padding-top: 1rem; border-top: 1px solid var(--black-border); font-family: var(--font-heading); font-size: 1rem; color: var(--white); }
.free-shipping, .free-shipping-notice {
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    color: var(--gold); padding: 0.9rem 1rem; border-radius: var(--radius-sm);
}
.payment-option {
    border: 1px solid var(--black-border); border-radius: var(--radius-sm); padding: 1rem; background: var(--black);
}
.payment-option input { width: auto; }
.payment-note { font-size: 0.84rem; }
.alert-success { border-color: rgba(0,230,118,0.3); color: #b8ffd5; }
.alert-error { border-color: rgba(255,59,59,0.3); color: #ffc2c2; }

.help-cta, .auth-section, .live-breaks-section, .stats-bar {
    position: relative; overflow: hidden;
}
.help-cta .container, .auth-content, .live-breaks-content, .newsletter-content, .confirmation-card {
    background: linear-gradient(180deg, var(--black-card), var(--black));
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 3rem;
}
.help-cta p, .auth-content p, .live-breaks-content p, .newsletter-content p { margin: 1rem 0 1.5rem; max-width: 720px; }
.auth-content, .live-breaks-content, .newsletter-content { position: relative; z-index: 2; }
.auth-avatar {
    width: 84px; height: 84px; border-radius: 50%;
    overflow: hidden; border: 2px solid var(--gold-border); margin-bottom: 1rem;
}
.auth-avatar img { width: 100%; height: 100%; object-fit: cover; }
.auth-mascot-bg, .live-breaks-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.08; }
.auth-mascot-img, .live-float-card { position: absolute; max-width: 180px; }
.auth-mascot-img { right: 8%; top: 10%; }
.live-card-1 { left: 5%; top: 12%; }
.live-card-2 { right: 10%; top: 18%; }
.live-card-3 { left: 18%; bottom: 10%; }
.newsletter-content { text-align: center; }
.newsletter-form {
    display: flex; gap: 0.5rem; justify-content: center; max-width: 680px; margin: 0 auto;
}
.newsletter-form button, .newsletter-form .btn { flex-shrink: 0; }
.social-row, .footer-social, .payment-icons {
    display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
}
.social-row a, .footer-social a {
    width: 38px; height: 38px; background: var(--black-card);
    border: 1px solid var(--black-border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-1); font-size: 0.9rem;
}
.social-row a:hover, .footer-social a:hover { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }

.collections-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
}
.collection-tile {
    position: relative; overflow: hidden; min-height: 320px;
    border-radius: var(--radius); border: 1px solid var(--black-border); background: var(--black-card);
}
.collection-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collection-tile:hover img { transform: scale(1.08); }
.collection-tile-overlay {
    position: absolute; inset: auto 0 0 0; padding: 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
}
.shop-now-tag {
    display: inline-flex; font-family: var(--font-heading); font-size: 0.65rem; letter-spacing: 0.12em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem;
}
.collection-tile h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--white); }

.testimonials-carousel { overflow: hidden; padding: 1rem 0; }
.testimonials-track {
    display: flex; gap: 1.5rem; width: max-content;
    animation: testimonials-scroll 40s linear infinite;
}
@keyframes testimonials-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial-card {
    width: 320px; background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: var(--radius); padding: 1.5rem;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; }
.testimonial-header { display: flex; gap: 0.9rem; align-items: center; margin-bottom: 1rem; }
.testimonial-avatar {
    width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
    border: 1px solid var(--gold-border); background: var(--black);
}
.handle { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--white); }
.testimonial-product { font-size: 0.8rem; color: var(--gray-1); }
.quote { color: var(--gray-1); font-size: 0.9rem; line-height: 1.7; }

.stats-bar {
    background: var(--black-soft);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.stat-item {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.stat-icon { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.75rem; }
.stat-number {
    display: block; font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--gold);
}
.stat-label { display: block; font-family: var(--font-heading); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-2); margin-top: 0.35rem; }

.site-footer {
    background: var(--black);
    border-top: 1px solid var(--black-border);
    padding: 5rem 0 2rem;
}
.footer-newsletter {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 3rem 3.5rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
    margin-bottom: 4rem;
}
.footer-newsletter h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1; text-transform: uppercase; margin-bottom: 0.5rem;
}
.footer-newsletter h3 em { font-style: normal; color: var(--gold); }
.footer-newsletter p { font-size: 0.88rem; color: var(--gray-1); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 4rem;
}
.footer-brand-name {
    font-family: var(--font-display); font-size: 2rem;
    color: var(--gold); line-height: 1; margin-bottom: 0.25rem; display: block;
}
.footer-brand-sub {
    font-family: var(--font-display); font-size: 1rem;
    color: var(--gray-2); letter-spacing: 0.15em; display: block;
    margin-bottom: 1.25rem;
}
.footer-brand p { font-size: 0.84rem; color: var(--gray-2); line-height: 1.7; max-width: 240px; margin-bottom: 1.5rem; }
.footer-col h4 {
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--gray-2); margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--gray-1); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    padding-top: 2rem; border-top: 1px solid var(--black-border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--gray-2); }
.footer-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-trust-item {
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
    color: var(--gray-2); text-transform: uppercase; letter-spacing: 0.08em;
    display: flex; align-items: center; gap: 0.35rem;
}
.footer-trust-item i { color: var(--gold); font-size: 0.75rem; }

.drawer-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); z-index: 950;
}
.drawer-overlay.active, .drawer-overlay.open { display: block; }
.cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 420px; max-width: 100vw;
    background: var(--black-card);
    border-left: 1px solid var(--black-border);
    z-index: 1000; display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.cart-drawer.open, .cart-drawer.active { transform: translateX(0); }
.cart-drawer-header, .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--black-border);
}
.cart-drawer-title, .drawer-header h3 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.cart-drawer-close, .drawer-close {
    background: none; border: none; color: var(--gray-1); cursor: pointer;
    font-size: 1.1rem; padding: 0.25rem;
}
.cart-drawer-close:hover, .drawer-close:hover { color: var(--gold); }
.cart-drawer-items, .drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.cart-drawer-footer, .drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--black-border); }
.drawer-empty { color: var(--gray-1); line-height: 1.8; }
.drawer-item-row {
    display: grid; grid-template-columns: auto 1fr auto; gap: 1rem;
    padding: 0.9rem 0; border-bottom: 1px solid var(--black-border);
}
.drawer-item-name { font-family: var(--font-heading); font-size: 0.9rem; color: var(--white); }
.drawer-item-meta { color: var(--gray-2); font-size: 0.8rem; margin-top: 0.25rem; }
.drawer-item-total { font-family: var(--font-heading); color: var(--white); }

.back-to-top {
    position: fixed; right: 1.25rem; bottom: 1.25rem;
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--gold-border); background: rgba(0,0,0,0.85); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); z-index: 700;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: #000; }

@media (max-width: 1100px) {
    .hero-layout, .footer-grid, .contact-layout, .checkout-layout, .cart-layout, .product-detail, .shop-layout, .deal-inner { grid-template-columns: 1fr; }
    .hero-right, .deal-image-wrap { display: none; }
    .footer-newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .header-nav-links { display: none; }
    .logo-main { font-size: 1.8rem; }
    .mega-menu-inner { grid-template-columns: 1fr; gap: 2rem; }
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .trust-item { padding: 0.4rem 1rem; }
    .trust-item:nth-child(n+4) { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .newsletter-form { flex-direction: column; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
    .hero-left { padding: 3rem 0; }
    .header-content { grid-template-columns: auto 1fr auto; }
    .countdown { gap: 0.5rem; }
    .countdown-num { width: 64px; font-size: 2.3rem; }
    .how-arrow { display: none; }
    .shop-toolbar { align-items: stretch; }
    .shop-search-form { width: 100%; }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid, .collections-grid, .footer-grid { grid-template-columns: 1fr; }
    .site-footer { padding: 3.5rem 0 1.5rem; }
    .brand-marquee-item { font-size: 2rem; }
    .cart-drawer { width: 100vw; }
    .footer-newsletter { padding: 2rem 1.25rem; }
}

/* ========================================
   Readability + Mobile Stability Refinements
   ======================================== */

body,
.section,
.section-alt,
.featured-strip,
.why-section,
.deal-section,
.review-hero,
.how-section,
.auth-section,
.live-breaks-section,
.newsletter-section,
.stats-bar,
.site-footer,
.page-banner,
.breadcrumb-bar,
.trust-strip,
.brand-marquee {
    background: var(--black) !important;
}

.featured-strip,
.why-section,
.deal-section,
.newsletter-section,
.stats-bar,
.trust-strip,
.brand-marquee {
    background: var(--black-soft) !important;
}

.sidebar-widget,
.shop-content,
.product-detail,
.contact-info-card,
.summary-card,
.checkout-card,
.faq-item,
.content-page,
.cart-container,
.empty-cart,
.empty-shop,
.confirmation-card,
.alert,
.stat-item,
.testimonial-card,
.review-card,
.why-card,
.footer-newsletter,
.help-cta .container,
.auth-content,
.live-breaks-content,
.newsletter-content {
    background: var(--black-card) !important;
}

.mega-menu-overlay,
.drawer-overlay {
    display: none !important;
    background: transparent !important;
}

.hero::before,
.hero::after,
.review-hero::before,
.deal-section::before,
.auth-mascot-bg,
.live-breaks-bg {
    opacity: 0.35;
}

.collection-tile-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.97) 72%);
}

.section-header h2,
.page-banner h1,
.content-page h1 {
    letter-spacing: 0.03em;
}

.section-header p,
.hero-subtitle,
.deal-desc,
.review-subtitle,
.quote,
.review-text,
.why-card p,
.how-step p,
.newsletter-content p,
.help-cta p,
.auth-content p,
.live-breaks-content p,
.content-page p,
.faq-item p {
    color: var(--gray-1) !important;
    max-width: 68ch;
}

.view-all,
.header-nav-links a,
.mega-menu-col ul li a,
.category-list a,
.pagination a,
.pagination button,
.tab-btn {
    font-weight: 700;
}

.shop-toolbar,
.section-header-row,
.footer-bottom {
    gap: 1rem;
}

.products-grid {
    border-radius: 16px;
}

.product-card-body {
    padding: 1.1rem;
    gap: 0.45rem;
}

.product-card-name,
.product-card-name a,
.review-name,
.handle,
.collection-tile h3 {
    color: var(--white) !important;
}

.product-card-overlay {
    border-top: 1px solid rgba(0,0,0,0.25);
}

.site-header {
    background: rgba(0,0,0,0.98);
}

.mega-menu {
    background: rgba(0,0,0,0.99);
}

@media (max-width: 900px) {
    .mega-menu {
        padding: 1rem 0 1.25rem;
        top: var(--header-h);
        max-height: calc(100vh - var(--header-h));
        border-bottom-width: 0;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .mega-menu-col {
        padding-bottom: 0.15rem;
    }

    .mega-menu-left {
        padding-bottom: 0.5rem;
    }

    .mega-menu-left h2 {
        font-size: clamp(2.1rem, 11vw, 3rem);
        margin-bottom: 0.35rem;
    }

    .mega-menu-left p {
        font-size: 0.8rem;
        max-width: 24rem;
        margin-bottom: 1rem;
    }

    .mega-menu-cta {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    .mega-menu-col h4 {
        margin-bottom: 0.6rem;
        padding-bottom: 0.4rem;
    }

    .mega-menu-col ul li a {
        font-size: 0.82rem;
        padding: 0.55rem 0 0.55rem 0.75rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.25rem;
    }

    .section,
    .featured-strip,
    .why-section,
    .deal-section,
    .review-hero,
    .how-section,
    .auth-section,
    .live-breaks-section,
    .newsletter-section,
    .stats-bar,
    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .help-cta .container,
    .auth-content,
    .live-breaks-content,
    .newsletter-content,
    .footer-newsletter {
        padding: 2rem 1.25rem;
    }

    .section-header h2,
    .page-banner h1,
    .content-page h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
}

@media (max-width: 680px) {
    .container {
        padding: 0 1rem;
    }

    .hero-actions,
    .newsletter-form {
        flex-direction: column;
    }

    .hero-actions .btn,
    .newsletter-form .btn,
    .newsletter-form button,
    .shop-search-form,
    .mobile-filter-toggle {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .review-card,
    .testimonial-card,
    .sidebar-widget,
    .product-detail,
    .shop-content,
    .cart-container,
    .checkout-card,
    .summary-card,
    .content-page {
        border-radius: 14px;
    }
}

@media (max-width: 520px) {
    .header-content {
        gap: 0.35rem;
    }

    .logo-main {
        font-size: 1.55rem;
    }

    .logo-sub {
        font-size: 0.85rem;
        letter-spacing: 0.14em;
    }

    .header-actions a,
    .header-actions button,
    .mobile-menu-toggle {
        min-width: 40px;
        height: 40px;
        padding: 0.4rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        justify-content: center;
    }

    .countdown-sep {
        display: none;
    }

    .countdown-num {
        width: 72px;
    }

    .mega-menu {
        padding-bottom: 1rem;
    }

    .mega-menu-left h2 {
        font-size: 2rem;
        line-height: 0.92;
    }

    .mega-menu-left p {
        font-size: 0.76rem;
    }

    .mega-menu-col ul li a {
        font-size: 0.78rem;
        padding-left: 0.6rem;
        margin-left: -0.6rem;
    }
}

/* ========================================
   Final Mobile + Newsletter Fixes
   ======================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    position: relative;
}

body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

.products-grid {
    contain: layout paint style;
}

.product-card {
    content-visibility: auto;
    contain-intrinsic-size: 320px;
}

.container,
.hero-layout,
.deal-inner,
.footer-newsletter,
.footer-grid,
.product-detail,
.shop-layout,
.contact-layout,
.checkout-layout,
.cart-layout,
.mega-menu-inner,
.section-header-row,
.shop-content,
.newsletter-content {
    min-width: 0;
}

.newsletter-form {
    display: flex !important;
    align-items: stretch;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    overflow: visible !important;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    background: var(--black) !important;
    color: var(--white) !important;
    border: 1px solid var(--black-border) !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.95rem 1.35rem !important;
    box-shadow: none !important;
}

.newsletter-form input::placeholder {
    color: var(--gray-2) !important;
}

.newsletter-form button,
.newsletter-form .btn {
    flex: 0 0 auto;
    background: var(--gold) !important;
    color: #000 !important;
    border: 1px solid var(--gold) !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.95rem 1.5rem !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.newsletter-form button:hover,
.newsletter-form .btn:hover {
    background: var(--gold-bright) !important;
    border-color: var(--gold-bright) !important;
    color: #000 !important;
}

.trust-strip .container,
.trust-bar .container {
    overflow: hidden;
}

@keyframes trust-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
    .trust-row,
    .trust-bar-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        animation: trust-scroll 22s linear infinite;
        will-change: transform;
    }

    .trust-item {
        flex: 0 0 auto;
        display: flex !important;
        padding: 0.45rem 1.1rem !important;
        border-right: 1px solid var(--black-border) !important;
        white-space: nowrap;
    }

    .trust-item:nth-child(n+4) {
        display: flex !important;
    }

    .newsletter-form {
        flex-direction: column !important;
        gap: 0.65rem;
    }

    .newsletter-form input,
    .newsletter-form button,
    .newsletter-form .btn {
        width: 100%;
    }

    .mega-menu,
    .site-header,
    .page-banner,
    .breadcrumb-bar,
    .brand-marquee,
    .testimonials-carousel,
    .products-grid,
    .collections-grid {
        overflow-x: hidden;
    }

    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 0.4rem !important;
    }

    .product-card-body {
        padding: 0.45rem !important;
        gap: 0.2rem !important;
    }

    .product-card-category {
        font-size: 0.44rem !important;
        letter-spacing: 0.08em !important;
    }

    .product-card-name,
    .product-card-name a {
        font-size: 0.6rem !important;
        line-height: 1.2 !important;
        -webkit-line-clamp: 3;
    }

    .price-current,
    .price-sale-tag {
        font-size: 0.72rem !important;
    }

    .price-was {
        font-size: 0.5rem !important;
    }

    .product-badge {
        top: 6px;
        left: 6px;
        font-size: 0.42rem !important;
        padding: 0.15rem 0.35rem !important;
    }

    .product-card-overlay {
        font-size: 0.48rem !important;
        padding: 0.45rem 0.2rem !important;
        letter-spacing: 0.08em !important;
    }

    .product-card-image img {
        padding: 0.3rem !important;
    }
}

/* ========================================
   ENHANCED DESIGN — Complete Overhaul v3
   ======================================== */

/* --- Fix mega menu overlay (was display:none!important) --- */
.mega-menu-overlay {
    display: none !important;
}
.mega-menu-overlay.open {
    display: block !important;
    background: rgba(0,0,0,0.7) !important;
}

/* --- Hero: Single featured card --- */
.hero-card-single {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-featured-card {
    width: 260px;
    max-width: 65%;
    border-radius: 16px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(240,192,64,0.15),
        0 0 0 1px rgba(240,192,64,0.12);
    animation: hero-card-float 6s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.hero-featured-card:hover {
    transform: scale(1.04) rotate(-1deg);
}

@keyframes hero-card-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(1.5deg); }
}

/* Show hero card on mobile (was hidden) */
@media (max-width: 1100px) {
    .hero-right {
        display: flex !important;
        height: 320px !important;
        justify-content: center;
        align-items: center;
        padding: 1rem 0 2rem;
    }
    .hero-featured-card {
        width: 200px;
        max-width: 50%;
    }
    .hero-layout {
        gap: 1rem !important;
    }
}

@media (max-width: 600px) {
    .hero-right {
        height: 260px !important;
        padding: 0.5rem 0 1.5rem;
    }
    .hero-featured-card {
        width: 170px;
    }
}

/* --- Reviews Horizontal Slider --- */
.reviews-slider-wrap {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0;
    flex: 1;
    min-width: 0;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.reviews-slider .review-card {
    flex: 0 0 calc(33.333% - 0.67rem);
    scroll-snap-align: start;
    min-width: 280px;
    border-radius: 14px !important;
    border: 1px solid var(--black-border) !important;
    background: var(--black-card) !important;
    padding: 1.5rem 1.4rem !important;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.reviews-slider .review-card:hover {
    border-color: var(--gold-border) !important;
    transform: translateY(-3px);
}

.reviews-slider-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: rgba(0,0,0,0.6);
    color: var(--gold);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.reviews-slider-arrow:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-border);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.reviews-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.reviews-dot:hover:not(.active) {
    border-color: var(--gold);
    background: rgba(240,192,64,0.3);
}

@media (max-width: 1024px) {
    .reviews-slider .review-card {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 640px) {
    .reviews-slider .review-card {
        flex: 0 0 85%;
        min-width: 260px;
    }
    .reviews-slider-arrow {
        display: none;
    }
    .reviews-slider-wrap {
        margin-top: 2rem;
    }
    .reviews-dots {
        margin-top: 1rem;
    }
}

/* --- Improved Mobile Product Grid (fix 4-col horror) --- */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .product-card-body {
        padding: 0.65rem 0.75rem !important;
        gap: 0.25rem !important;
    }

    .product-card-category {
        font-size: 0.52rem !important;
    }

    .product-card-name,
    .product-card-name a {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
    }

    .price-current,
    .price-sale-tag {
        font-size: 0.82rem !important;
    }

    .price-was {
        font-size: 0.6rem !important;
    }

    .product-badge {
        font-size: 0.48rem !important;
        padding: 0.18rem 0.4rem !important;
    }

    .product-card-overlay {
        font-size: 0.56rem !important;
        padding: 0.5rem 0.35rem !important;
    }

    .product-card-image img {
        padding: 0.4rem !important;
    }
}

@media (max-width: 420px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
}

/* --- Enhanced Header & Navigation --- */
.site-header {
    background: rgba(0,0,0,0.98) !important;
    border-bottom: 1px solid rgba(240,192,64,0.15) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
}

.site-header.scrolled {
    border-bottom-color: rgba(240,192,64,0.35) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4) !important;
}

/* --- Section Spacing Polish --- */
.section,
.section-alt,
.featured-strip {
    padding: 5rem 0 !important;
}

.why-section,
.how-section,
.auth-section,
.live-breaks-section {
    padding: 5.5rem 0 !important;
}

.deal-section {
    padding: 4.5rem 0 !important;
}

/* --- Better Section Headers --- */
.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 3rem) !important;
    margin-bottom: 0.35rem;
}

/* --- Why Cards Improved --- */
.why-card {
    border-radius: 14px !important;
    padding: 1.75rem 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.why-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(240,192,64,0.08) !important;
}

/* --- How Steps Improved --- */
.how-step {
    border-radius: 14px !important;
    padding: 2rem 1.5rem !important;
}

/* --- Collections Grid Polish --- */
.collections-grid {
    gap: 1rem !important;
}

.collection-tile {
    border-radius: 14px !important;
    overflow: hidden !important;
}

.collection-tile img {
    transition: transform 0.5s ease !important;
}

.collection-tile:hover img {
    transform: scale(1.08) !important;
}

/* --- Stats Bar Polish --- */
.stats-row {
    gap: 1rem !important;
}

.stat-item {
    border-radius: 14px !important;
    padding: 1.5rem 1rem !important;
}

/* --- Testimonials Carousel --- */
.testimonial-card {
    border-radius: 14px !important;
}

/* --- Footer Polish --- */
.footer-newsletter {
    border-radius: 16px !important;
    padding: 2.5rem 2rem !important;
}

/* --- Review Hero Section Polish --- */
.review-hero {
    padding: 6rem 0 4rem !important;
}

.review-big-number {
    margin-bottom: 0.5rem;
}

.review-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    background: var(--gold-dim);
}

/* --- Deal Section Polish --- */
.deal-inner {
    border-radius: 16px !important;
    overflow: hidden;
}

.deal-badge {
    border-radius: var(--radius-pill) !important;
}

/* --- Help CTA Polish --- */
.help-cta .container {
    border-radius: 16px !important;
    padding: 3rem 2rem !important;
}

/* --- Auth Section Polish --- */
.auth-content {
    border-radius: 16px !important;
    padding: 3rem 2.5rem !important;
}

/* --- Newsletter Section Polish --- */
.newsletter-content {
    border-radius: 16px !important;
    padding: 3.5rem 2.5rem !important;
}

/* --- Live Breaks Polish --- */
.live-breaks-content {
    border-radius: 16px !important;
    padding: 3rem 2.5rem !important;
}

/* --- Brand Marquee Spacing --- */
.brand-marquee {
    padding: 1.5rem 0 !important;
}

/* --- Better Mobile Header --- */
@media (max-width: 520px) {
    .header-content {
        padding: 0 0.75rem !important;
    }

    .logo-main {
        font-size: 1.4rem !important;
    }

    .logo-sub {
        font-size: 0.78rem !important;
        letter-spacing: 0.12em !important;
    }
}

/* --- Better Mobile Sections --- */
@media (max-width: 900px) {
    .section,
    .section-alt,
    .featured-strip,
    .why-section,
    .deal-section,
    .review-hero,
    .how-section,
    .auth-section,
    .live-breaks-section,
    .newsletter-section,
    .stats-bar {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .help-cta .container,
    .auth-content,
    .live-breaks-content,
    .newsletter-content,
    .footer-newsletter {
        padding: 2rem 1.25rem !important;
        border-radius: 14px !important;
    }

    .why-grid,
    .how-steps {
        gap: 0.75rem !important;
    }

    .why-card,
    .how-step {
        padding: 1.35rem 1.15rem !important;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
    }
}

@media (max-width: 600px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-row {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .stat-item {
        flex: 0 0 calc(50% - 0.25rem) !important;
        padding: 1rem 0.75rem !important;
    }
}

/* --- Smooth transitions everywhere --- */
.product-card,
.why-card,
.how-step,
.collection-tile,
.stat-item,
.testimonial-card,
.review-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* --- Announcement bar top position instead of bottom --- */
body > .announcement-bar {
    order: -1 !important;
}

/* --- Fix section rules for better visual separation --- */
.section-rule {
    height: 1px !important;
    background: linear-gradient(90deg, transparent 5%, rgba(240,192,64,0.2) 50%, transparent 95%) !important;
    opacity: 1 !important;
    margin: 0 !important;
}

/* --- Improved countdown blocks --- */
.countdown-block {
    border-radius: 12px !important;
}

.countdown-num {
    border-radius: 10px !important;
}

/* --- Product card improvements --- */
.product-card {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.product-card-media {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden !important;
}

/* --- Fix drawer overlay --- */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 800;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    display: block !important;
}

/* (mega menu is now a left-slide drawer — old mobile fix removed) */

/* --- Selection color --- */
::selection {
    background: rgba(240,192,64,0.25);
    color: var(--white);
}

/* --- Focus visible for accessibility --- */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ========================================
   MEGA MENU — Left-slide Drawer Rebuild
   ======================================== */
.mega-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: 340px !important;
    max-width: 88vw !important;
    max-height: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 600 !important;
    background: #0a0a0a !important;
    border-bottom: none !important;
    border-right: 1px solid var(--gold-border) !important;
    transform: translateX(-105%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    pointer-events: none !important;
    overscroll-behavior: contain;
}

.mega-menu.open {
    transform: translateX(0) !important;
    pointer-events: auto !important;
}

.mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--black-border);
    flex-shrink: 0;
    background: #080808;
}

.mega-menu-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1;
}

.mega-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--gold-border);
    background: transparent;
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mega-menu-close:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.mega-menu-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 1.25rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 20px));
}

.mega-menu .mega-menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    grid-template-columns: none !important;
}

.mega-menu .mega-menu-left {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--black-border);
}

.mega-menu .mega-menu-left h2 {
    font-size: 2rem !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
}

.mega-menu .mega-menu-left p {
    font-size: 0.82rem !important;
    margin-bottom: 1rem !important;
}

.mega-menu .mega-menu-cta {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.mega-menu .mega-menu-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    grid-template-columns: none !important;
}

.mega-menu .mega-menu-col h4 {
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
}

.mega-menu .mega-menu-col ul li a {
    font-size: 0.88rem;
    padding: 0.5rem 0 0.5rem 0.75rem;
    min-height: 40px;
    display: flex;
    align-items: center;
}

/* Overlay for menu */
.mega-menu-overlay {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.6) !important;
    z-index: 590 !important;
    transition: opacity 0.3s ease;
}

.mega-menu-overlay.open {
    display: block !important;
}

/* Desktop: wider drawer */
@media (min-width: 901px) {
    .mega-menu {
        width: 420px !important;
    }
}

/* ========================================
   REBUILT MOBILE MENU BUTTON
   ======================================== */
.mobile-menu-toggle {
    display: none !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent !important;
    border: 1.5px solid var(--gold-border) !important;
    border-radius: 10px !important;
    cursor: pointer;
    padding: 0 !important;
    position: relative;
    z-index: 510;
    transition: border-color 0.3s ease, background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
    border-color: var(--gold) !important;
    background: var(--gold-dim) !important;
}

.mobile-menu-toggle .menu-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease,
                width 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle .menu-bar:nth-child(2) {
    width: 14px;
}

.mobile-menu-toggle.open {
    border-color: var(--gold) !important;
    background: var(--gold-dim) !important;
}

.mobile-menu-toggle.open .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open .menu-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-toggle.open .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* Hide old hamburger wrapper if any remain */
.mobile-menu-toggle .hamburger {
    display: none !important;
}

/* --- Remove .logo-sub everywhere --- */
.logo-sub {
    display: none !important;
}

.footer-brand-sub {
    display: none !important;
}

/* --- Logo cleanup (only yellow branding) --- */
.logo {
    gap: 0 !important;
}

.logo-main {
    font-family: var(--font-display) !important;
    color: var(--gold) !important;
    text-shadow: 0 2px 20px rgba(240,192,64,0.3) !important;
}
