/* ===================================================
   Bugzclub.com — Premium Scroll-Animated Stylesheet
   White mode, gold accents, Framer-style animations
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #C8A84E;
    --gold-light: #E8D48B;
    --gold-dark: #A68A3E;
    --gold-glow: rgba(200, 168, 78, 0.25);
    --black: #1A1A1A;
    --white: #FFFFFF;
    --bg: #FAFAFA;
    --gray-50: #F7F7F7;
    --gray-100: #F0F0F0;
    --gray-200: #E4E4E4;
    --gray-300: #D1D1D1;
    --gray-400: #A0A0A0;
    --gray-500: #717171;
    --gray-600: #4A4A4A;
    --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; }
.section { padding: 120px 0; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; background: var(--gold);
    width: 0%; z-index: 9999; transition: width 0.1s linear;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 1000;
    width: calc(100% - 32px); max-width: 900px;
    padding: 10px 8px; transition: all 0.5s var(--ease-out-expo);
    background: rgba(255,255,255,0.75); backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 60px; border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92); box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.04);
}
.nav-container {
    max-width: 100%; margin: 0; padding: 0 12px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 2px; font-family: var(--font-display); font-weight: 800; font-size: 20px; z-index: 10; }
.logo-crown { color: var(--gold); font-size: 12px; margin-right: 3px; }
.logo-b { color: var(--gold); }
.logo-text { color: var(--black); letter-spacing: 0.06em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    font-size: 13px; font-weight: 500; color: var(--gray-500); letter-spacing: 0.01em;
    transition: all 0.3s; position: relative; padding: 8px 14px; border-radius: 50px;
}
.nav-links a::after { display: none; }
.nav-links a:hover { color: var(--black); background: rgba(0,0,0,0.04); }
.nav-actions { display: flex; align-items: center; gap: 6px; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: flex; align-items: center; gap: 4px; padding: 7px 12px;
    font-size: 11px; font-weight: 600; color: var(--gray-500); border-radius: 50px;
    transition: all 0.3s; border: 1px solid transparent;
}
.lang-btn:hover { color: var(--black); background: rgba(0,0,0,0.04); }
.lang-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0; background: var(--white);
    border: 1px solid var(--gray-100); border-radius: 10px; padding: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1); opacity: 0; visibility: hidden;
    transform: translateY(-8px); transition: all 0.25s var(--ease-out-expo); min-width: 140px;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
    display: flex; align-items: center; gap: 8px; width: 100%; padding: 8px 12px;
    font-size: 13px; border-radius: 6px; transition: background 0.2s;
}
.lang-option:hover { background: var(--gray-50); }
.lang-option.active { color: var(--gold); font-weight: 600; }

/* Cart Button */
.cart-btn {
    position: relative; padding: 8px; color: var(--gray-500); transition: all 0.3s;
    border-radius: 50px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
}
.cart-btn:hover { color: var(--black); background: rgba(0,0,0,0.04); }
.cart-count {
    position: absolute; top: 0; right: -2px; width: 18px; height: 18px;
    background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0); transition: all 0.3s var(--ease-out-expo);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* Mobile Menu */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 10;
    width: 38px; height: 38px; align-items: center; justify-content: center;
    border-radius: 50px; transition: background 0.3s;
}
.mobile-menu-btn:hover { background: rgba(0,0,0,0.04); }
.mobile-menu-btn span { width: 18px; height: 1.5px; background: var(--black); transition: all 0.3s; display: block; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(255,255,255,0.97); z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-links { text-align: center; }
.mobile-nav-links li {
    margin-bottom: 8px;
}
.mobile-nav-links a {
    font-family: var(--font-display); font-size: 24px; font-weight: 700;
    color: var(--black); transition: all 0.3s;
    display: inline-block; padding: 12px 28px; border-radius: 16px;
}
.mobile-nav-links a:hover { color: var(--gold); background: rgba(200,168,78,0.06); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    border-radius: 50px; transition: all 0.4s var(--ease-out-expo); text-transform: uppercase;
    white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--black); color: var(--white); border: 2px solid var(--black);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost {
    background: transparent; color: var(--black); border: 2px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--black); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--black); }
.btn-lg { padding: 16px 40px; font-size: 14px; }
.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; text-align: center; padding: 120px 24px 80px;
}
.hero.hero-compact {
    min-height: 70vh; padding: 120px 24px 48px;
}
.hero-bg-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(200,168,78,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 60% 50% at 80% 80%, rgba(200,168,78,0.04) 0%, transparent 70%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content-wrap { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero-badge-anim { margin-bottom: 24px; }
.hero-badge {
    display: inline-block; padding: 8px 24px; font-size: 11px; font-weight: 700;
    letter-spacing: 0.15em; color: var(--gold-dark); background: rgba(200,168,78,0.08);
    border: 1px solid rgba(200,168,78,0.2); border-radius: 50px;
    animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,78,0.2); }
    50% { box-shadow: 0 0 0 12px rgba(200,168,78,0); }
}
.hero-title {
    font-family: var(--font-display); font-weight: 900; line-height: 1.1;
    margin-bottom: 24px;
}
.hero-line { display: block; font-size: clamp(42px, 7vw, 72px); }
.hero-line.gold { color: var(--gold); }
.hero-subtitle {
    font-size: 16px; line-height: 1.8; color: var(--gray-500); max-width: 520px;
    margin: 0 auto 28px;
}
.hero-compact .hero-title { margin-bottom: 16px; }
.hero-compact .hero-subtitle { margin-bottom: 24px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-compact .hero-cta { margin-bottom: 24px; }

/* Inline countdown */
.hero-countdown-inline {
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-countdown-inline .countdown-label {
    font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em;
    margin: 0;
}
.countdown-inline { display: flex; align-items: baseline; gap: 2px; }
.cd-inline {
    font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--black);
}
.countdown-inline small {
    font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em;
    margin-right: 8px;
}

/* Legacy block countdown (kept for subpages) */
.hero-countdown { margin-bottom: 40px; }
.countdown-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 4px; }
.cd-block { text-align: center; }
.cd-val {
    display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800;
    color: var(--black); line-height: 1;
}
.cd-unit { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; }
.cd-sep { font-size: 24px; color: var(--gray-300); margin: 0 8px; font-weight: 300; margin-top: -10px; }

/* Scroll hint */
.scroll-hint {
    display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5;
}
.scroll-hint span { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; }
.scroll-hint-mouse {
    width: 24px; height: 38px; border: 2px solid var(--gray-300); border-radius: 12px;
    display: flex; align-items: flex-start; justify-content: center; padding-top: 6px;
}
.scroll-hint-wheel {
    width: 3px; height: 8px; background: var(--gold); border-radius: 3px;
    animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.2; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ===== FILTER REVEAL — Scroll-Linked ===== */
.filter-reveal {
    height: 300vh; position: relative;
}
.filter-reveal-sticky {
    position: sticky; top: 0; height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden; background: var(--black);
}
.filter-reveal-img {
    position: absolute; z-index: 2;
    width: 100%; max-width: 1280px; height: 80vh; max-height: 720px;
    transform: translateY(100%) scale(1); opacity: 0;
    transition: none;
    will-change: transform, opacity;
    overflow: hidden; border-radius: 16px;
}
.filter-reveal-img img,
.filter-reveal-img video {
    width: 100%; height: 100%; object-fit: cover;
}
.filter-reveal-text {
    position: absolute; z-index: 3; text-align: center;
    opacity: 0; transform: translateY(30px);
    transition: none;
    will-change: transform, opacity;
    max-width: 560px; padding: 0 24px;
    bottom: 10vh;
}
.filter-reveal-text h2 {
    font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
    font-weight: 900; margin: 12px 0; color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.filter-reveal-text p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.filter-reveal-text .section-badge { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: var(--white); }
.filter-reveal-img::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 40%, transparent 70%);
    pointer-events: none;
}
.filter-reveal-glow {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,168,78,0.15) 0%, transparent 70%);
    z-index: 1; opacity: 0; transition: none; will-change: opacity;
    filter: blur(40px);
}

/* ===== SECTION BADGES & HEADERS ===== */
.section-badge {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold-dark); background: rgba(200,168,78,0.08);
    border: 1px solid rgba(200,168,78,0.15); padding: 6px 18px; border-radius: 50px;
    margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
    font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
    font-weight: 800; color: var(--black); line-height: 1.2;
}
.section-desc { font-size: 15px; color: var(--gray-500); max-width: 500px; margin: 16px auto 0; line-height: 1.7; }

/* ===== BENTO GRID ===== */
.benefits-section { background: var(--gray-50); position: relative; overflow: hidden; }
.benefits-section::before {
    content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
    border-radius: 50%; background: radial-gradient(circle, rgba(200,168,78,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.benefits-section::after {
    content: ''; position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px;
    border-radius: 50%; background: radial-gradient(circle, rgba(200,168,78,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 16px; position: relative; z-index: 1;
}
.bento-card {
    border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--gray-100); background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,0.07); border-color: rgba(200,168,78,0.2); }
.bento-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.bento-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* Hero card — spans 2 cols, dark */
.bento-hero {
    grid-column: span 2; background: var(--black); border-color: transparent;
    display: flex; align-items: center; gap: 32px; min-height: 300px; padding: 44px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.bento-hero h3 { color: var(--white); font-size: 24px; }
.bento-hero p { color: rgba(255,255,255,0.6); }
.bento-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(200,168,78,0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 100%, rgba(200,168,78,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.bento-hero::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(200,168,78,0.2), transparent);
}
.bento-hero-content { position: relative; z-index: 2; flex: 1; }
.bento-tag {
    display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
    color: var(--gold); margin-bottom: 14px; text-transform: uppercase;
}
.bento-hero-visual {
    position: relative; z-index: 2; flex: 0 0 180px;
    display: flex; align-items: center; justify-content: center;
}
.bento-hero-visual img {
    height: 200px; width: auto; object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(200,168,78,0.25));
    transition: transform 0.6s var(--ease-out-expo);
}
.bento-hero:hover .bento-hero-visual img { transform: rotate(-3deg) scale(1.06); }

/* Coconut card */
.bento-coconut { position: relative; background: linear-gradient(160deg, var(--white) 0%, #faf8f3 100%); }
.bento-coconut-icon { font-size: 48px; margin-bottom: 16px; line-height: 1; }
.bento-coconut-accent {
    position: absolute; bottom: -30px; right: -30px; width: 140px; height: 140px;
    border-radius: 50%; background: rgba(200,168,78,0.08); pointer-events: none;
}
.bento-coconut::before {
    content: ''; position: absolute; top: -40px; left: -40px; width: 100px; height: 100px;
    border-radius: 50%; background: rgba(200,168,78,0.04); pointer-events: none;
}

/* Layers card — filtration visual */
.bento-layers { display: flex; flex-direction: column; }
.bento-layers-visual {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    margin-bottom: 20px; padding: 16px 0; position: relative;
}
.bento-layers-visual::before {
    content: 'LAYER SYSTEM'; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    font-size: 8px; font-weight: 700; letter-spacing: 0.15em; color: var(--gray-300);
    text-transform: uppercase;
}
.bento-layers-visual .layer {
    height: 12px; border-radius: 20px;
    transition: width 0.8s var(--ease-out-expo);
    box-shadow: 0 2px 8px rgba(200,168,78,0.15);
}
.bento-layers-visual .layer-1 { width: 70%; background: linear-gradient(90deg, rgba(200,168,78,0.25), rgba(200,168,78,0.4)); }
.bento-layers-visual .layer-2 { width: 90%; background: linear-gradient(90deg, rgba(200,168,78,0.5), rgba(200,168,78,0.7)); }
.bento-layers-visual .layer-3 { width: 60%; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.bento-card.in-view .layer-1 { width: 80%; }
.bento-card.in-view .layer-2 { width: 100%; }
.bento-card.in-view .layer-3 { width: 65%; }

/* Cold card — temperature display */
.bento-cold { background: linear-gradient(160deg, #f0f7fa 0%, var(--white) 100%); }
.bento-cold::before {
    content: ''; position: absolute; top: 16px; right: 16px; width: 50px; height: 50px;
    border: 2px solid rgba(33,147,176,0.1); border-radius: 50%; pointer-events: none;
}
.bento-cold::after {
    content: ''; position: absolute; top: 28px; right: 28px; width: 26px; height: 26px;
    border: 2px solid rgba(33,147,176,0.08); border-radius: 50%; pointer-events: none;
}
.bento-cold-temp {
    display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 20px;
}
.temp-value {
    font-family: var(--font-display); font-size: 48px; font-weight: 900;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.temp-label {
    font-size: 13px; font-weight: 600; color: var(--gray-400); margin-top: 4px;
    font-style: italic;
}

/* Eco card — wide bottom */
.bento-eco {
    grid-column: span 3; background: linear-gradient(135deg, #f8f6f0 0%, #f0ede4 100%);
    border-color: rgba(200,168,78,0.15); position: relative;
}
.bento-eco::before {
    content: ''; position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
    width: 80px; height: 80px; border-radius: 50%; border: 2px dashed rgba(200,168,78,0.12);
    pointer-events: none;
}
.bento-eco-row { display: flex; align-items: center; gap: 20px; position: relative; z-index: 1; }
.bento-eco-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,168,78,0.12), rgba(200,168,78,0.06));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(200,168,78,0.1);
}
.bento-eco h3 { font-size: 16px; margin-bottom: 4px; }
.bento-eco p { margin: 0; }

/* ===== STEPS / HOW IT WORKS ===== */
.steps-section { background: var(--gray-50); }
.steps-track { display: flex; gap: 40px; position: relative; justify-content: center; }
.steps-line {
    position: absolute; top: 28px; left: 15%; right: 15%; height: 2px;
    background: var(--gray-200); z-index: 0;
}
.steps-line-fill { height: 100%; width: 0%; background: var(--gold); transition: width 1s var(--ease-out-expo); }
.step {
    flex: 1; max-width: 300px; text-align: center; position: relative; z-index: 1;
}
.step-circle {
    width: 56px; height: 56px; border-radius: 50%; background: var(--white);
    border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--gray-400);
    margin: 0 auto 20px; transition: all 0.5s var(--ease-out-expo);
}
.step.animated .step-circle { border-color: var(--gold); color: var(--gold); background: rgba(200,168,78,0.06); }
.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ===== PRODUCTS ===== */
.preorder-banner {
    display: flex; align-items: center; gap: 14px; padding: 14px 20px;
    background: linear-gradient(135deg, rgba(200,168,78,0.06) 0%, rgba(200,168,78,0.02) 100%);
    border: 1px solid rgba(200,168,78,0.18); border-radius: var(--radius);
    margin-bottom: 40px; font-size: 13px; color: var(--gray-600); flex-wrap: wrap;
}
.preorder-banner-icon { color: var(--gold); flex-shrink: 0; display: flex; }
.preorder-banner-text { flex: 1; min-width: 200px; }
.preorder-banner-text strong { color: var(--black); }
.preorder-banner-viewers {
    display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-500);
    margin-left: auto;
}
.urgency-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #ef4444;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}
@keyframes urgencyPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.product-filters-center {
    display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.product-trust {
    display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
    margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--gray-100);
}
.trust-item {
    display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500;
    color: var(--gray-500);
}
.trust-item svg { color: var(--gold); }
.product-stock {
    font-size: 11px; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.product-stock .stock-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #10b981;
}
.product-stock.low .stock-dot { background: #f59e0b; }
.product-stock span { color: var(--gray-500); }
.product-stock.low span { color: #f59e0b; }
.product-filters {
    display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 22px; font-size: 12px; font-weight: 600; color: var(--gray-500);
    border: 1px solid var(--gray-200); border-radius: 50px; transition: all var(--transition);
    text-transform: uppercase; letter-spacing: 0.04em;
}
.filter-btn:hover { border-color: var(--gray-400); color: var(--black); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
    overflow: hidden; position: relative; transition: all 0.5s var(--ease-out-expo);
    animation: cardIn 0.6s var(--ease-out-expo) both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.product-card-link { position: absolute; inset: 0; z-index: 1; }
.product-card-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
    background: var(--gold); color: var(--white);
}
.product-img {
    aspect-ratio: 1; background: var(--gray-50); display: flex; align-items: center;
    justify-content: center; padding: 24px; overflow: hidden;
}
.product-img img {
    width: 75%; height: 75%; object-fit: contain;
    transition: transform 0.6s var(--ease-out-expo);
}
.product-card:hover .product-img img { transform: scale(1.08) rotate(-2deg); }
.product-info { padding: 20px; }
.product-size { font-size: 11px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.product-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.product-price { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); }
.product-per { font-size: 11px; color: var(--gray-400); }
.product-add-btn {
    width: 100%; padding: 12px 0; font-size: 12px; font-weight: 700; background: var(--black);
    color: var(--white); border-radius: 8px; transition: all var(--transition); text-transform: uppercase;
    letter-spacing: 0.06em; position: relative; z-index: 2; text-align: center;
}
.product-add-btn:hover { background: var(--gold-dark); }
.product-card-badge.badge-preorder { background: var(--black); }
.product-card-badge.badge-popular { background: var(--gold); }
.product-card-badge.badge-bundle { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

/* ===== SKELETON LOADING ===== */
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
    background-size: 800px 100%; animation: shimmer 1.6s ease-in-out infinite; border-radius: 8px;
}
.skeleton-card {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
    overflow: hidden;
}
.skeleton-card-img { aspect-ratio: 1; background: var(--gray-50); }
.skeleton-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.skeleton-line { height: 14px; border-radius: 6px; }
.skeleton-line.w60 { width: 60%; }
.skeleton-line.w80 { width: 80%; }
.skeleton-line.w40 { width: 40%; }
.skeleton-btn { height: 42px; border-radius: 8px; margin-top: 4px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--gray-200);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.4s var(--ease-out-expo);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    color: var(--gray-500);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* ===== SHOWCASE SPLIT ===== */
.showcase-section { padding: 0; overflow: hidden; }
.showcase-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.showcase-img-col {
    background: var(--gray-50); display: flex; align-items: center; justify-content: center;
    padding: 60px; overflow: hidden;
}
.showcase-img-parallax { transition: transform 0.3s ease-out; }
.showcase-img-parallax img {
    max-height: 500px; width: auto; object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}
.showcase-img-parallax video {
    width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
}
.showcase-text-col {
    display: flex; flex-direction: column; justify-content: center; padding: 60px 60px 60px 48px;
}
.showcase-text-col .section-title { text-align: left; }
.showcase-text-col p { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin: 16px 0 28px; }
.showcase-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.showcase-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }
.sf-icon {
    width: 28px; height: 28px; border-radius: 50%; background: rgba(200,168,78,0.1);
    color: var(--gold); display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-section { background: var(--black); padding: 80px 0; }
.stats-bar {
    display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px); font-weight: 900;
    color: var(--gold); line-height: 1; display: block;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; display: block; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ===== FAQ ===== */
.faq-section { background: var(--gray-50); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
    overflow: hidden; transition: all var(--transition);
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.open { border-color: rgba(200,168,78,0.3); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--black);
    text-align: left; gap: 16px; transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
    width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--gray-300);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: all 0.3s var(--ease-out-expo); position: relative;
}
.faq-icon::before, .faq-icon::after {
    content: ''; position: absolute; background: var(--gray-500); border-radius: 1px; transition: all 0.3s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-icon { border-color: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-expo); }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--gray-500); line-height: 1.8; }

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative; padding: 120px 0; text-align: center; overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,168,78,0.06) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content h2 {
    font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 800;
    margin-bottom: 16px;
}
.cta-content p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; }

/* ===== NEWSLETTER ===== */
.newsletter-section { padding: 80px 0 120px; }
.newsletter-box {
    background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
    padding: 48px; text-align: center;
}
.newsletter-box h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.newsletter-box p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
    flex: 1; padding: 14px 18px; font-size: 14px; border: 1px solid var(--gray-200);
    border-radius: 50px; outline: none; font-family: var(--font-body);
    transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 2px; font-family: var(--font-display); font-weight: 800; font-size: 22px; margin-bottom: 12px; }
.footer-logo .logo-crown { color: var(--gold); }
.footer-logo .logo-b { color: var(--gold); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-origin { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 8px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 2000;
    opacity: 0; visibility: hidden; transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 90vw;
    background: var(--white); z-index: 2001; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.4s var(--ease-out-expo);
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--gray-100);
}
.cart-header h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.cart-close { padding: 4px; color: var(--gray-400); transition: color 0.3s; }
.cart-close:hover { color: var(--black); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; gap: 12px; color: var(--gray-300);
}
.cart-empty p { font-size: 14px; color: var(--gray-400); }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
    display: flex; gap: 14px; align-items: center; padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}
.cart-item-img {
    width: 64px; height: 64px; border-radius: 10px; background: var(--gray-50);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden;
}
.cart-item-img img { width: 80%; height: 80%; object-fit: contain; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-variant { font-size: 12px; color: var(--gray-400); margin-bottom: 6px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
    width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
    color: var(--gray-600); transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--black); color: var(--black); }
.cart-item-qty { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
    margin-left: auto; font-size: 12px; color: var(--gray-400); cursor: pointer;
    transition: color 0.2s; padding: 4px;
}
.cart-item-remove:hover { color: #e53e3e; }
.cart-item-price { font-weight: 700; font-size: 15px; white-space: nowrap; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--gray-100); }
.cart-preorder-note {
    display: flex; align-items: flex-start; gap: 8px; background: rgba(200,168,78,0.06);
    border: 1px solid rgba(200,168,78,0.15); border-radius: 8px; padding: 10px;
    font-size: 11px; color: var(--gray-500); line-height: 1.5; margin-bottom: 14px;
}
.cart-preorder-note svg { flex-shrink: 0; color: var(--gold); }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 15px; }
.cart-total-price { font-family: var(--font-display); font-weight: 800; font-size: 18px; }

/* ===== AGE GATE ===== */
.age-gate {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transition: opacity 0.5s ease;
}
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate-panel {
    background: var(--white); border-radius: 20px; padding: 52px 44px; max-width: 420px; width: 90%;
    text-align: center; box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    animation: ageIn 0.5s var(--ease-out-expo) both;
}
@keyframes ageIn { from { opacity: 0; transform: scale(0.92) translateY(20px); } to { opacity: 1; transform: none; } }
.age-gate-logo {
    font-family: var(--font-display); font-size: 28px; font-weight: 900; margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center; gap: 2px;
}
.age-gate-logo .logo-crown { color: var(--gold); margin-right: 4px; }
.age-gate-logo .logo-b { color: var(--gold); }
.age-gate-logo .logo-text { letter-spacing: 0.08em; }
.age-gate-panel h2 {
    font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 10px;
}
.age-gate-panel p {
    font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px;
}
.age-gate-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.age-gate-actions .btn { width: 100%; justify-content: center; }
.age-gate-note { font-size: 11px; color: var(--gray-400); line-height: 1.5; }
.age-gate-blocked {
    font-size: 15px; color: var(--gray-500); line-height: 1.6;
}

/* ===== LENIS SMOOTH SCROLL ===== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ===== FLOATING ACTION BUTTON ===== */
.fab {
    position: fixed; bottom: 28px; left: 28px; z-index: 900;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; background: var(--black); color: var(--white);
    border-radius: 50px; cursor: pointer; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.4s var(--ease-out-expo); border: 1px solid rgba(255,255,255,0.08);
}
.fab:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200,168,78,0.25); }
.fab svg { flex-shrink: 0; }
.fab-label { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }

/* ===== SIZE QUIZ OVERLAY ===== */
.quiz-overlay {
    position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.quiz-overlay.open { opacity: 1; pointer-events: auto; }
.quiz-panel {
    background: var(--white); border-radius: 20px; padding: 48px 40px; max-width: 420px; width: 90%;
    position: relative; text-align: center;
    transform: translateY(20px) scale(0.96); transition: transform 0.4s var(--ease-out-expo);
}
.quiz-overlay.open .quiz-panel { transform: translateY(0) scale(1); }
.quiz-close {
    position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer;
    color: var(--gray-400); transition: color 0.2s;
}
.quiz-close:hover { color: var(--black); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quizFade 0.35s ease both; }
@keyframes quizFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.quiz-icon { font-size: 40px; margin-bottom: 12px; line-height: 1; }
.quiz-step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.quiz-step p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
    padding: 14px 20px; border: 1px solid var(--gray-200); border-radius: 12px;
    font-size: 14px; font-weight: 600; color: var(--black); background: var(--white);
    cursor: pointer; transition: all 0.25s; text-align: left;
}
.quiz-opt:hover { border-color: var(--gold); background: rgba(200,168,78,0.04); }

/* ===== SCROLL ANIMATIONS ===== */
[data-anim] { opacity: 0; transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
[data-anim="fade-up"] { transform: translateY(40px); }
[data-anim="fade-down"] { transform: translateY(-40px); }
[data-anim="fade-left"] { transform: translateX(60px); }
[data-anim="fade-right"] { transform: translateX(-60px); }
[data-anim="scale-up"] { transform: scale(0.9); }
[data-anim].in-view { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-hero { grid-column: span 2; }
    .bento-eco { grid-column: span 2; }
    .showcase-split { grid-template-columns: 1fr; }
    .showcase-img-col { padding: 40px; min-height: 400px; }
    .showcase-text-col { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .bento-grid { grid-template-columns: 1fr; gap: 12px; }
    .bento-hero { grid-column: span 1; flex-direction: column; min-height: auto; }
    .bento-hero-visual { flex: none; }
    .bento-hero-visual img { height: 140px; }
    .bento-eco { grid-column: span 1; }
    .steps-track { flex-direction: column; gap: 32px; }
    .steps-line { display: none; }
    .stats-bar { flex-direction: column; gap: 32px; }
    .stat-divider { width: 40px; height: 1px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .filter-reveal-img img { height: 50vh; }
    .hero-line { font-size: clamp(32px, 8vw, 52px); }
    .newsletter-form { flex-direction: column; }
}
