
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-light: #74b9ff;
            --blue-main: #0984e3;
            --blue-deep: #0652DD;
            --blue-dark: #0a3d62;
            --purple-light: #a29bfe;
            --purple-main: #6c5ce7;
            --purple-deep: #5f27cd;
            --accent-glow: #00d2d3;
            --accent-cyan: #48dbfb;
        }

        [data-theme="dark"] {
            --bg: #111f46;
            --bg-secondary: #0a0a0f;
            --bg-tertiary: #111118;
            --surface: rgba(255,255,255,0.04);
            --surface-hover: rgba(255,255,255,0.08);
            --border: rgba(255,255,255,0.08);
            --border-hover: rgba(255,255,255,0.15);
            --text: #ffffff;
            --text-secondary: rgba(255,255,255,0.7);
            --text-dim: rgba(255,255,255,0.5);
            --text-dimmer: rgba(255,255,255,0.3);
            --header-bg: rgba(0,0,0,0.85);
            --card-bg: rgba(255,255,255,0.03);
            --card-border: rgba(255,255,255,0.06);
            --input-bg: rgba(255,255,255,0.05);
            --shadow: rgba(0,0,0,0.5);
            --invert: 0;
        }

        [data-theme="light"] {
            --bg: #f5f7fb;
            --bg-secondary: #ffffff;
            --bg-tertiary: #eef1f7;
            --surface: rgba(0,0,0,0.03);
            --surface-hover: rgba(0,0,0,0.06);
            --border: rgba(0,0,0,0.08);
            --border-hover: rgba(0,0,0,0.15);
            --text: #0a0a0f;
            --text-secondary: rgba(0,0,0,0.7);
            --text-dim: rgba(0,0,0,0.5);
            --text-dimmer: rgba(0,0,0,0.3);
            --header-bg: rgba(245,247,251,0.9);
            --card-bg: #ffffff;
            --card-border: rgba(0,0,0,0.06);
            --input-bg: rgba(0,0,0,0.04);
            --shadow: rgba(0,0,0,0.1);
            --invert: 1;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: rgba(108,92,231,0.3) transparent;
        }
        html::-webkit-scrollbar { width: 6px; }
        html::-webkit-scrollbar-track { background: transparent; }
        html::-webkit-scrollbar-thumb { background: rgba(108,92,231,0.3); border-radius: 3px; }

        body {
            font-family: 'PeydaWeb', 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            transition: background 0.5s ease, color 0.5s ease;
        }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed; inset: 0;
            background: #000;
            z-index: 10000;
            display: flex; align-items: center; justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        .preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
        .preloader-content { text-align: center; }
        .preloader-logo {
            font-size: 2rem; font-weight: 900; letter-spacing: 5px; color: #fff;
            margin-bottom: 30px; opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        .preloader-logo span { color: var(--blue-main); }
        .preloader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin: 0 auto; }
        .preloader-bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue-main), var(--purple-main)); width: 0; animation: loadBar 1.5s ease forwards; }
        .preloader-tagline { font-size: 0.7rem; letter-spacing: 3px; color: rgba(255,255,255,0.4); margin-top: 15px; text-transform: uppercase; }

        @keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
        @keyframes loadBar { to { width:100%; } }

        /* ===== NOISE ===== */
        .noise {
            position: fixed; inset: 0; opacity: 0.025; z-index: 9000; pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 0 50px; height: 76px;
            display: flex; align-items: center; justify-content: space-between;
            transition: all 0.4s ease;
        }
        .header.scrolled {
            background: var(--header-bg);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 4px 30px var(--shadow);
        }
        .header-logo {
            display: flex; align-items: center; gap: 10px;
            text-decoration: none; color: var(--blue-main); font-weight: 900; font-size: 1rem; letter-spacing: 4px;
        }
        .header-logo i { color: var(--blue-main); }
        .header-nav { display: flex; align-items: center; gap: 32px; }
        .header-nav a {
            color: var(--text-dim); text-decoration: none; font-size: 0.78rem;
            font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
            transition: color 0.3s; position: relative;
        }
        .header-nav a::after {
            content: ''; position: absolute; bottom: -4px; inset-inline-start: 0;
            width: 0; height: 1.5px;
            background: linear-gradient(90deg, var(--blue-main), var(--purple-main));
            transition: width 0.3s ease;
        }
        .header-nav a:hover { color: var(--text); }
        .header-nav a:hover::after { width: 100%; }

        .header-right { display: flex; align-items: center; gap: 14px; }

        .header-icon-btn {
            width: 42px; height: 42px; border-radius: 50%;
            border: 1px solid var(--border); background: var(--surface);
            color: var(--text); display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.3s; text-decoration: none; font-size: 0.9rem;
            position: relative;
        }
        .header-icon-btn:hover { background: var(--surface-hover); border-color: var(--border-hover); }

        .theme-toggle-btn {
            background: linear-gradient(135deg, var(--blue-deep), var(--purple-deep));
            border: none; color: #fff;
        }
        .theme-toggle-btn:hover { transform: scale(1.08); }

        .cart-badge {
            position: absolute; top: -3px; inset-inline-end: -3px;
            width: 18px; height: 18px; border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-main), var(--purple-main));
            font-size: 0.58rem; font-weight: 800; color: #fff;
            display: flex; align-items: center; justify-content: center;
        }

        .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.96); backdrop-filter: blur(40px);
            z-index: 2000; display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 28px;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .mobile-menu.open { opacity: 1; visibility: visible; }
        .mobile-menu a {
            color: #fff; text-decoration: none; font-size: 1.5rem;
            font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
            transition: color 0.3s;
        }
        .mobile-menu a:hover { color: var(--blue-main); }
        .mobile-menu-close {
            position: absolute; top: 22px; inset-inline-end: 22px;
            width: 44px; height: 44px; border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15); background: transparent;
            color: #fff; font-size: 1.2rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
        }

        /* ===== HERO BANNER ===== */
        .hero {
            position: relative; min-height: 100vh;
            overflow: hidden; display: flex; align-items: center;
        }
        .hero-bg-blobs { position: absolute; inset: 0; overflow: hidden; }
        .hero-blob {
            position: absolute; border-radius: 50%;
            filter: blur(100px); opacity: 0.35;
            animation: blobFloat 20s ease-in-out infinite;
        }
        .hero-blob-1 { width: 700px; height: 700px; top: -200px; inset-inline-end: -100px; background: var(--blue-deep); }
        .hero-blob-2 { width: 500px; height: 500px; bottom: -150px; inset-inline-start: -80px; background: var(--purple-deep); animation-delay: -10s; }
        .hero-blob-3 { width: 350px; height: 350px; top: 35%; inset-inline-start: 45%; background: var(--accent-cyan); opacity: 0.15; animation-delay: -5s; }

        @keyframes blobFloat {
            0%, 100% { transform: translate(0,0) scale(1); }
            33% { transform: translate(60px,-40px) scale(1.1); }
            66% { transform: translate(-40px,60px) scale(0.9); }
        }

        .hero-marquee {
            position: absolute; top: 50%; left: 0; right: 0;
            transform: translateY(-50%); overflow: hidden; white-space: nowrap;
            pointer-events: none;
        }
        .hero-marquee-text {
            display: inline-block; font-size: 18vw; font-weight: 900;
            line-height: 0.85; letter-spacing: -8px; opacity: 0.04;
            color: var(--text); animation: marquee 25s linear infinite;
        }
        @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        .hero-grid {
            position: relative; z-index: 10; width: 100%;
            display: grid; grid-template-columns: 1fr 1fr;
            padding: 120px 5vw 80px; gap: 50px; align-items: center;
        }
        .hero-left {
            opacity: 0; animation: heroSlideIn 1s ease forwards 2s;
        }

        .hero-right {
            display: flex; justify-content: center; align-items: center;
            position: relative;
            opacity: 0; animation: heroCardFloat 1.2s cubic-bezier(0.25,1,0.5,1) forwards 2.4s;
        }
        @keyframes heroCardFloat {
            from { opacity:0; transform: translateY(50px) scale(0.92); }
            to { opacity:1; transform: translateY(0) scale(1); }
        }

        .hero-product-stack {
            position: relative; width: 340px; height: 440px;
        }
        .hero-stack-card {
            position: absolute; width: 280px; border-radius: 24px;
            overflow: hidden; border: 1px solid var(--border);
            box-shadow: 0 30px 80px var(--shadow);
            transition: all 0.5s cubic-bezier(0.25,1,0.5,1);
            background: var(--card-bg);
        }
        .hero-stack-card img { width: 100%; height: 320px; object-fit: cover; }
        .hero-stack-card-info { padding: 16px 18px; }
        .hero-stack-card-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
        .hero-stack-card-price { font-size: 1rem; font-weight: 800; color: var(--blue-light); }

        .hero-stack-card:nth-child(1) { z-index: 3; top: 20px; inset-inline-start: 30px; }
        .hero-stack-card:nth-child(2) { z-index: 2; top: 10px; inset-inline-start: 15px; opacity: 0.6; transform: scale(0.95); }
        .hero-stack-card:nth-child(3) { z-index: 1; top: 0; inset-inline-start: 0; opacity: 0.3; transform: scale(0.9); }

        .hero-product-stack:hover .hero-stack-card:nth-child(1) { transform: translateY(-8px) rotate(-2deg); }
        .hero-product-stack:hover .hero-stack-card:nth-child(2) { transform: scale(0.95) translateY(-4px) rotate(1deg); opacity: 0.7; }
        .hero-product-stack:hover .hero-stack-card:nth-child(3) { transform: scale(0.9) translateY(0) rotate(3deg); opacity: 0.4; }

        .hero-float-badge {
            position: absolute; padding: 10px 18px;
            background: var(--card-bg); border: 1px solid var(--border);
            border-radius: 16px; backdrop-filter: blur(15px);
            font-size: 0.75rem; font-weight: 600; z-index: 5;
            display: flex; align-items: center; gap: 8px;
            box-shadow: 0 10px 30px var(--shadow);
        }
        .hero-float-badge-1 { top: 30px; inset-inline-end: -30px; animation: floatBadge 4s ease-in-out infinite; }
        .hero-float-badge-2 { bottom: 60px; inset-inline-start: -20px; animation: floatBadge 5s ease-in-out infinite 1s; }
        @keyframes floatBadge {
            0%,100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        @keyframes heroSlideIn {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 8px 20px; background: var(--surface);
            border: 1px solid var(--border); border-radius: 50px;
            font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
            text-transform: uppercase; margin-bottom: 28px;
            backdrop-filter: blur(10px);
            color: var(--accent-cyan);
        }
        .hero-badge .dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: var(--accent-glow);
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(1.5); } }

        .hero-title {
            font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900;
            line-height: 0.93; letter-spacing: -3px; margin-bottom: 22px;
        }
        .hero-title .grad {
            background: linear-gradient(135deg, var(--blue-light), var(--purple-light), var(--accent-cyan));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-size: 200% 200%; animation: gradShift 6s ease infinite;
        }
        @keyframes gradShift { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }

        .hero-desc {
            font-size: 1.05rem; line-height: 1.7; color: var(--text-dim);
            font-weight: 300; margin-bottom: 38px; max-width: 460px;
        }
        .hero-btns { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

        .btn-main {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 16px 34px;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-main), var(--accent-cyan));
            color: #fff; border: none; border-radius: 100px;
            font-family: inherit; font-size: 0.82rem; font-weight: 700;
            letter-spacing: 1.5px; text-transform: uppercase;
            text-decoration: none; cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
            box-shadow: 0 8px 30px rgba(9,132,227,0.3);
        }
        .btn-main:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 15px 40px rgba(9,132,227,0.4); }

        .btn-ghost {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 16px 34px; background: transparent;
            color: var(--text); border: 1.5px solid var(--border);
            border-radius: 100px; font-family: inherit; font-size: 0.82rem;
            font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
            text-decoration: none; cursor: pointer; transition: all 0.3s;
        }
        .btn-ghost:hover { background: var(--surface-hover); border-color: var(--border-hover); }

        .hero-scroll {
            position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
            z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px;
            padding: 10px 16px 12px; border-radius: 999px;
            background: rgba(10, 12, 20, 0.35); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.16);
            opacity: 0; animation: heroSlideIn 1s ease forwards 3.2s;
        }
        .scroll-label { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: #fff; font-weight: 600; }
        .scroll-chevron {
            color: var(--blue-light); font-size: 0.85rem;
            animation: scrollChevronBounce 1.4s ease-in-out infinite;
        }
        @keyframes scrollChevronBounce {
            0%, 100% { transform: translateY(0); opacity: 0.5; }
            50% { transform: translateY(5px); opacity: 1; }
        }

        /* ===== TICKER ===== */
        .ticker {
            padding: 14px 0; overflow: hidden; white-space: nowrap;
            background: linear-gradient(90deg, var(--blue-deep), var(--purple-deep), var(--blue-main), var(--purple-main), var(--blue-deep));
            background-size: 300% 100%; animation: tickerBg 8s linear infinite;
        }
        @keyframes tickerBg { from { background-position:0% 50%; } to { background-position:300% 50%; } }
        .ticker-track { display: inline-flex; animation: tickerScroll 22s linear infinite; }
        .ticker-item {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 0 36px; font-size: 0.78rem; font-weight: 800;
            letter-spacing: 2px; text-transform: uppercase; color: #fff;
        }
        @keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* ===== SECTION COMMON ===== */
        .section { position: relative; padding: 110px 5vw; overflow: hidden; }
        .section-head {
            display: flex; align-items: flex-end; justify-content: space-between;
            margin-bottom: 55px; gap: 20px;
        }
        .festival-section .section-head, .offer-section .section-head, .arrivals-section .section-head { justify-content: space-between; }
        .section-eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.7rem; font-weight: 600; letter-spacing: 3px;
            text-transform: uppercase; color: var(--blue-light); margin-bottom: 12px;
        }
        .section-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--blue-main); }
        .section-title {
            display: flex; align-items: center; gap: 14px;
            font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900;
            line-height: 1.05; letter-spacing: -2px;
        }
        .section-title::before { content: ''; flex-shrink: 0; width: 28px; height: 4px; border-radius: 2px; background: var(--blue-main); }
        .section-desc { font-size: 0.92rem; color: var(--text-dim); font-weight: 300; max-width: 380px; margin-top: 8px; }
        .section-head-bordered { padding-bottom: 30px; border-bottom: 1px solid var(--border); }

        .section-boxed {
            position: relative; margin: 0 0 60px; padding: 60px 5vw;
            border-radius: 28px;
            box-shadow: 0 30px 80px rgba(9,132,227,0.08);
        }
        .section-boxed .p-card {
            border-color: rgba(9,132,227,0.3);
            background: linear-gradient(180deg, rgba(9,132,227,0.06), var(--card-bg) 45%);
        }
        .section-boxed .p-card:hover { border-color: var(--blue-light); box-shadow: 0 25px 60px rgba(9,132,227,0.25); }

        @property --neon-angle {
            syntax: '<angle>'; initial-value: 0deg; inherits: false;
        }
        @keyframes neonBorderSpin { to { --neon-angle: 360deg; } }

        /* Festival: a rotating neon-light ring chasing around the section's
           border. The content area is plain page background (padding-box) -
           only the border strip shows the moving conic-gradient ring
           (border-box), so the glow lives strictly on the border line. */
        .festival-section.section-boxed {
            margin: 45px;
            overflow: hidden;
            --neon-angle: 0deg;
            border: 3px solid transparent;
            background:
                linear-gradient(160deg, #0b1e4d, #123a8f 55%, #0984e3) padding-box,
                conic-gradient(from var(--neon-angle), #0984e3, #00d2d3, #6c5ce7, #ff3838, #0984e3) border-box;
            animation: neonBorderSpin 5s linear infinite;
            box-shadow: 0 0 45px rgba(0,210,211,0.2), 0 30px 80px rgba(9,132,227,0.08);
        }
        .festival-section.section-boxed .section-title { color: #fff; }
        .festival-section.section-boxed > .reveal,
        .festival-section.section-boxed > .product-scroll {
            position: relative; z-index: 2;
        }
        .festival-float {
            position: absolute; z-index: 1; color: rgba(255,255,255,0.35);
            pointer-events: none; animation: festivalFloat 6s ease-in-out infinite;
        }
        .festival-float-1 { top: 18%; inset-inline-start: 8%; font-size: 2.2rem; animation-delay: 0s; }
        .festival-float-2 { top: 55%; inset-inline-start: 42%; font-size: 1.6rem; animation-delay: 1.5s; }
        .festival-float-3 { top: 30%; inset-inline-end: 12%; font-size: 1.8rem; animation-delay: 3s; }
        @keyframes festivalFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-18px) rotate(8deg); }
        }

        .festival-countdown {
            position: relative; z-index: 2;
            display: flex; flex-direction: column; align-items: center; gap: 12px;
            margin: 0 0 30px; text-align: center;
        }
        .festival-countdown-heading {
            font-size: 1rem; font-weight: 700; color: #fff;
        }
        .festival-countdown-timer { display: flex; align-items: center; gap: 10px; }
        .festival-countdown-unit {
            display: flex; flex-direction: column; align-items: center; gap: 4px;
            min-width: 58px; padding: 10px 6px; border-radius: 12px;
            background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.18);
        }
        .festival-countdown-value {
            font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: -1px;
            font-variant-numeric: tabular-nums;
        }
        .festival-countdown-label {
            font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.75);
            letter-spacing: 0.5px;
        }

        /* New Arrivals: a bold, fully-saturated gradient border (static, no spin) */
        .arrivals-section.section-boxed {
            margin: 45px;
            border: 4px solid transparent;
            background:
                linear-gradient(var(--bg), #2464e3) padding-box,
                linear-gradient(135deg, var(--blue-deep), var(--blue-main), var(--accent-cyan)) border-box;
        }
        .view-all {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--text); text-decoration: none; font-size: 0.78rem;
            font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
            white-space: nowrap;
            padding: 10px 18px; border-radius: 100px;
            background: var(--surface); border: 1px solid var(--border);
            transition: background 0.3s, border-color 0.3s, color 0.3s;
        }
        .view-all:hover { color: var(--blue-light); background: var(--surface-hover); border-color: var(--border-hover); }
        .arrivals-section .view-all,
        .festival-section .view-all {
            color: #fff;
            background: rgba(255,255,255,0.14);
            border-color: rgba(255,255,255,0.3);
        }
        .arrivals-section .view-all:hover,
        .festival-section .view-all:hover {
            color: #fff;
            background: rgba(255,255,255,0.24);
            border-color: rgba(255,255,255,0.45);
        }
        .view-all i { transition: transform 0.3s; }
        .view-all:hover i { transform: translateX(4px); }

        /* ===== FESTIVAL ===== */
        .festival-section { background: linear-gradient(180deg, rgba(9,132,227,0.04) 0%, transparent 100%); }
        .festival-banner-card { position: relative; }
        .festival-banner-card .p-card-img { height: 100%; min-height: 310px; }
        .festival-banner-overlay {
            position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
            justify-content: flex-end; padding: 22px;
            background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.75));
        }
        .festival-banner-eyebrow {
            font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
            color: rgba(255,255,255,0.75); margin-bottom: 6px;
        }
        .festival-banner-title { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.5px; color: #fff; line-height: 1.1; }

        /* ===== NEW ARRIVALS ===== */
        .arrivals-section { background: linear-gradient(180deg, transparent, rgba(9,132,227,0.05), transparent); }
        .product-scroll {
            display: flex; gap: 22px; overflow-x: auto; padding-bottom: 15px;
            scroll-snap-type: x mandatory; cursor: grab;
            -ms-overflow-style: none; scrollbar-width: none;
        }
        .product-scroll::-webkit-scrollbar { display: none; }

        .p-card {
            flex-shrink: 0; width: 280px; scroll-snap-align: start;
            background: var(--card-bg); border: 1px solid var(--card-border);
            border-radius: 22px; overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
            text-decoration: none; color: inherit; display: block;
        }
        .p-card:hover { transform: translateY(-6px); border-color: var(--blue-main); box-shadow: 0 25px 60px var(--shadow); }

        .p-card-img { position: relative; width: 100%; height: 310px; overflow: hidden; }
        .p-card-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
        .p-card:hover .p-card-img img { transform: scale(1.06); }
        .p-card-img::after { content: ''; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(180deg, #e5e3e3 60%, rgb(235 235 235 / 50%)); }

        .p-swatches {
            position: absolute; z-index: 3; bottom: 12px; inset-inline-start: 12px;
            display: flex; align-items: center; gap: 6px;
        }
        .p-swatch {
            width: 16px; height: 16px; border-radius: 50%; padding: 0;
            border: 2px solid rgba(255,255,255,0.85);
            box-shadow: 0 1px 4px rgba(0,0,0,0.35);
            cursor: pointer; transition: transform 0.2s;
        }
        .p-swatch:hover { transform: scale(1.15); }
        .p-swatch.active { border-color: var(--blue-main); box-shadow: 0 0 0 2px var(--blue-main); }

        .p-tag {
            position: absolute; top: 14px; inset-inline-start: 14px; z-index: 2;
            padding: 4px 12px; border-radius: 18px;
            font-size: 0.58rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
        }
        .p-tag-new { background: var(--accent-glow); color: #000; }
        .p-tag-sale { background: #ff3838; color: #fff; }
        .p-tag-hot { background: var(--purple-main); color: #fff; }

        .p-add {
            position: absolute; bottom: 14px; inset-inline-end: 14px; z-index: 2;
            width: 40px; height: 40px; border-radius: 50%;
            background: #fff; color: #000; border: none;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.9rem; cursor: pointer;
            opacity: 0; transform: translateY(8px); transition: all 0.3s;
        }
        .p-card:hover .p-add { opacity: 1; transform: translateY(0); }

        .p-card-body { padding: 18px; }
        .p-card-cat { font-size: 0.62rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 5px; }
        .p-card-name { font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
        .p-card-prices { display: flex; align-items: center; gap: 8px; }
        .p-card-price { font-size: 1.05rem; font-weight: 800; color: var(--blue-light); }
        .p-card-old { font-size: 0.8rem; color: var(--text-dimmer); text-decoration: line-through; }

        /* ===== HERO (BRAND STOREFRONT SLIDER) ===== */
        .hero-brand {
            position: relative;
            min-height: 100vh;
            display: block;
            padding: 0;
            background: var(--bg);
            overflow: hidden;
        }
        .hero-slides { position: absolute; inset: 0; }
        .hero-slide {
            position: absolute; inset: 0;
            opacity: 0; visibility: hidden; z-index: 1;
            transition: opacity 1s ease;
        }
        .hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
        .hero-slide-media, .hero-slide-media img {
            width: 100%; height: 100%; display: block;
            object-fit: cover; object-position: center;
        }
        /* Always-on dark scrim regardless of the site's light/dark toggle
           made the hero read as "stuck in dark mode" even when the shopper
           had picked light - keep it dark only in dark mode; light mode gets
           a much lighter scrim, just enough for text legibility. */
        .hero-brand-scrim {
            position: absolute; inset: 0; z-index: 2;
            background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.75) 100%);
        }
        [data-theme="light"] .hero-brand-scrim {
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.05) 40%, rgba(0,0,0,0.55) 100%);
        }
        .hero-slide-text {
            position: absolute; inset: 0; z-index: 10;
            display: flex; padding: 108px 5vw 72px;
            pointer-events: none;
        }
        .hero-slide-text-inner {
            pointer-events: auto; max-width: 780px;
            transform: translate(var(--ox-d, 0px), var(--oy-d, 0px));
            opacity: 0; animation: heroSlideIn 1s ease forwards 0.3s;
        }
        .hero-slide.active .hero-slide-text-inner { animation-play-state: running; }
        .hero-slide-text.pos-d-top-left { justify-content: flex-start; align-items: flex-start; text-align: start; }
        .hero-slide-text.pos-d-top-center { justify-content: flex-start; align-items: center; text-align: center; }
        .hero-slide-text.pos-d-top-right { justify-content: flex-start; align-items: flex-end; text-align: end; }
        .hero-slide-text.pos-d-center-left { justify-content: center; align-items: flex-start; text-align: start; }
        .hero-slide-text.pos-d-center { justify-content: center; align-items: center; text-align: center; }
        .hero-slide-text.pos-d-center-right { justify-content: center; align-items: flex-end; text-align: end; }
        .hero-slide-text.pos-d-bottom-left { justify-content: flex-end; align-items: flex-start; text-align: start; }
        .hero-slide-text.pos-d-bottom-center { justify-content: flex-end; align-items: center; text-align: center; }
        .hero-slide-text.pos-d-bottom-right { justify-content: flex-end; align-items: flex-end; text-align: end; }

        .hero-slide-nav {
            position: absolute; z-index: 20; bottom: 40px; inset-inline: 0;
            display: flex; align-items: center; justify-content: center; gap: 18px;
        }
        .hero-arrow {
            width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
            background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.25); color: #fff;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: background 0.3s, transform 0.3s;
        }
        .hero-arrow:hover { background: rgba(255,255,255,0.22); transform: scale(1.06); }
        .hero-slide-dots { display: flex; align-items: center; gap: 8px; }
        .hero-dot {
            width: 8px; height: 8px; border-radius: 4px; padding: 0; border: none;
            background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
        }
        .hero-dot.active { width: 24px; background: #fff; }

        .hero-title-brand { max-width: 780px; }
        .hero-dept-nav {
            position: absolute; z-index: 15; bottom: 96px; inset-inline: 5vw;
            display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
        }
        .hero-dept-pill {
            display: inline-flex; align-items: center; padding: 10px 20px;
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 100px; font-size: 0.75rem; font-weight: 600;
            color: var(--text); text-decoration: none; transition: all 0.3s;
            backdrop-filter: blur(10px);
        }
        .hero-dept-pill:hover { background: var(--surface-hover); border-color: var(--border-hover); transform: translateY(-2px); }

        /* ===== DEPARTMENTS (SHOP BY CATEGORY, BRAND-STOREFRONT STYLE) ===== */
        .departments-section { padding-top: 40px; }
        .dept-spotlight {
            display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
            padding: 46px 0; border-top: 1px solid var(--border);
            max-width: 1280px; margin: 0 auto;
        }
        .dept-spotlight:first-of-type { border-top: none; }
        .dept-visual {
            position: relative; border-radius: 22px; overflow: hidden; width: 100%;
            aspect-ratio: 1/1; max-width: 440px; background: var(--surface); border: 1px solid var(--border);
            box-shadow: 0 20px 55px var(--shadow);
        }
        .dept-visual img { width: 100%; height: 100%; object-fit: cover; }
        .dept-visual-fallback {
            width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
            font-size: 2.4rem; color: var(--text-dimmer);
            background: linear-gradient(135deg, rgba(9,132,227,0.08), rgba(108,92,231,0.08));
        }
        .dept-title {
            font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 900;
            line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px;
        }
        .dept-desc {
            font-size: 1.12rem; line-height: 1.7; color: var(--text2);
            margin-bottom: 20px; max-width: 480px; font-weight: 400;
        }
        .cat-explore-btn {
            display: inline-flex; align-items: center; gap: 12px;
            text-decoration: none; color: var(--blue-main); font-size: 0.78rem;
            font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
        }
        .cat-explore-circle {
            width: 44px; height: 44px; border-radius: 50%;
            border: 1.5px solid currentColor; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.4s;
        }
        .cat-explore-btn:hover .cat-explore-circle {
            transform: scale(1.1); background: rgba(9,132,227,0.1);
        }
        .cat-explore-arrow { font-size: 1.2rem; }
        .dept-products {
            display: flex; gap: 14px; margin-top: 34px;
            overflow-x: auto; padding-bottom: 6px;
            -ms-overflow-style: none; scrollbar-width: none;
        }
        .dept-products::-webkit-scrollbar { display: none; }
        .dept-product-card {
            flex-shrink: 0; width: 210px;
            background: var(--card-bg); border: 1px solid var(--card-border);
            border-radius: 16px; overflow: hidden;
            text-decoration: none; color: inherit; transition: all 0.3s;
        }
        .dept-product-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 14px 30px var(--shadow); }
        .dept-product-card-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
        .dept-product-card-img img { width: 100%; height: 100%; object-fit: cover; }
        .dept-product-card-price { padding: 12px; font-size: 0.9rem; color: var(--blue-light); font-weight: 700; text-align: center; }

        /* ===== SHOP BY CATEGORY (FULLSCREEN CUBE CAROUSEL) ===== */
        .category-experience {
            position: relative; height: 100vh; overflow: hidden;
            border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
        }
        .cat-exp-header {
            position: absolute; top: 0; left: 0; right: 0;
            padding: 30px 5vw; z-index: 50;
            display: flex; justify-content: space-between; align-items: center;
        }
        .cat-exp-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); }
        .cat-exp-counter { display: flex; align-items: baseline; gap: 4px; font-variant-numeric: tabular-nums; }
        .cat-exp-current { font-size: 1.4rem; font-weight: 900; }
        .cat-exp-divider { font-size: 0.85rem; color: var(--text-dimmer); }
        .cat-exp-total { font-size: 0.75rem; color: var(--text-dim); font-weight: 300; }

        .cat-scenes-container { position: relative; width: 100%; height: 100%; }
        .cat-scene {
            position: absolute; inset: 0;
            opacity: 0; visibility: hidden;
            transition: opacity 0.7s ease, visibility 0.7s ease;
            overflow: hidden;
        }
        .cat-scene.active { opacity: 1; visibility: visible; }

        .cat-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.4; animation: blobFloat 20s ease-in-out infinite; }
        .cat-blob-a { width: 550px; height: 550px; top: -80px; inset-inline-end: -80px; }
        .cat-blob-b { width: 450px; height: 450px; bottom: -80px; inset-inline-start: -80px; animation-delay: -10s; }

        .cat-marquee-wrap {
            position: absolute; top: 50%; left: 0; right: 0;
            transform: translateY(-50%); overflow: hidden; white-space: nowrap; pointer-events: none; z-index: 1;
        }
        .cat-marquee-text {
            display: inline-block; font-size: 20vw; font-weight: 900;
            line-height: 0.85; letter-spacing: -8px; opacity: 0.05;
            animation: marquee 28s linear infinite;
        }

        .cat-scene-grid {
            position: relative; z-index: 10;
            display: grid; grid-template-columns: 1.1fr 1fr 0.9fr;
            height: 100%; align-items: center;
            padding: 100px 5vw 100px; gap: 45px;
        }

        .cat-col-left {
            opacity: 0; transform: translateX(-30px);
            transition: all 0.9s cubic-bezier(0.25,1,0.5,1) 0.3s;
        }
        .cat-scene.active .cat-col-left { opacity: 1; transform: translateX(0); }

        .cat-scene .cat-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 7px 16px; background: var(--surface);
            border: 1px solid var(--border); border-radius: 50px;
            font-size: 0.65rem; font-weight: 600; letter-spacing: 2.5px;
            margin-bottom: 25px; backdrop-filter: blur(10px); text-transform: uppercase;
        }
        .cat-scene .cat-badge::before {
            content: ''; width: 5px; height: 5px; border-radius: 50%;
            background: currentColor; animation: pulse 2s infinite;
        }

        .cat-title {
            font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 900;
            line-height: 0.95; letter-spacing: -3px; margin-bottom: 25px;
        }
        .cat-desc {
            font-size: 1rem; line-height: 1.7; color: var(--text-dim);
            margin-bottom: 35px; max-width: 420px; font-weight: 300;
        }

        .cat-col-center { position: relative; display: flex; justify-content: center; align-items: center; height: 100%; }
        .cube-wrap {
            position: relative; width: 280px; height: 380px; perspective: 1400px;
            opacity: 0; transition: opacity 0.7s ease 0.15s;
        }
        .cat-scene.active .cube-wrap { opacity: 1; animation: cubeIn 1s cubic-bezier(0.25,1,0.5,1); }
        @keyframes cubeIn { 0% { opacity:0; transform: scale(0.5) rotateY(-90deg); } 100% { opacity:1; transform: scale(1) rotateY(0); } }

        .cube-3d {
            position: relative; width: 100%; height: 100%;
            transform-style: preserve-3d;
            animation: cubeRotate 22s linear infinite;
        }
        @keyframes cubeRotate { from { transform: rotateY(0) rotateX(5deg); } to { transform: rotateY(360deg) rotateX(5deg); } }

        .cube-face {
            position: absolute; width: 100%; height: 100%;
            border-radius: 20px; overflow: hidden;
            border: 2px solid rgba(255,255,255,0.08);
            box-shadow: 0 40px 80px rgba(0,0,0,0.4);
        }
        .cube-face img { width: 100%; height: 100%; object-fit: cover; }
        .cube-face::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55)); }
        .cube-face-front { transform: translateZ(140px); }
        .cube-face-back { transform: translateZ(-140px) rotateY(180deg); }
        .cube-face-right { transform: rotateY(90deg) translateZ(140px); }
        .cube-face-left { transform: rotateY(-90deg) translateZ(140px); }

        .cube-orbit {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
            border-radius: 50%; border: 1px dashed rgba(255,255,255,0.06); pointer-events: none;
        }
        .cube-orbit-1 { width: 440px; height: 440px; animation: orbitSpin 30s linear infinite; }
        .cube-orbit-2 { width: 540px; height: 540px; animation: orbitSpin 40s linear infinite reverse; border-style: solid; border-color: rgba(255,255,255,0.03); }
        @keyframes orbitSpin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }

        .cat-col-right {
            opacity: 0; transform: translateX(30px);
            transition: all 0.9s cubic-bezier(0.25,1,0.5,1) 0.5s;
        }
        .cat-scene.active .cat-col-right { opacity: 1; transform: translateX(0); }

        .cat-features { display: flex; flex-direction: column; gap: 16px; }
        .cat-feat {
            padding: 18px 20px; background: var(--surface);
            border: 1px solid var(--border); border-radius: 14px;
            backdrop-filter: blur(10px); display: flex; align-items: flex-start;
            gap: 12px; transition: all 0.3s;
        }
        .cat-feat:hover { background: var(--surface-hover); border-color: var(--border-hover); transform: translateX(-4px); }
        .cat-feat-icon {
            flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; background: rgba(255,255,255,0.06);
        }
        .cat-feat-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 3px; }
        .cat-feat-desc { font-size: 0.72rem; color: var(--text-dim); line-height: 1.4; font-weight: 300; }

        /* Category scene colors */
        .cs-beauty .cat-blob-a { background: var(--blue-main); }
        .cs-beauty .cat-blob-b { background: var(--purple-main); }
        .cs-beauty .cat-marquee-text { color: var(--blue-light); }
        .cs-beauty .cat-badge, .cs-beauty .cat-scene .cat-explore-btn, .cs-beauty .cat-feat-icon { color: var(--blue-light); }
        .cs-beauty .cat-title { background: linear-gradient(135deg, var(--blue-light), var(--purple-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        .cs-camping .cat-blob-a { background: #06d6a0; }
        .cs-camping .cat-blob-b { background: #1b9e3e; }
        .cs-camping .cat-marquee-text { color: #06d6a0; }
        .cs-camping .cat-badge, .cs-camping .cat-scene .cat-explore-btn, .cs-camping .cat-feat-icon { color: #51cf66; }
        .cs-camping .cat-title { background: linear-gradient(135deg, #06d6a0, #1b9e3e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        .cs-mobile .cat-blob-a { background: var(--accent-cyan); }
        .cs-mobile .cat-blob-b { background: var(--blue-deep); }
        .cs-mobile .cat-marquee-text { color: var(--accent-cyan); }
        .cs-mobile .cat-badge, .cs-mobile .cat-scene .cat-explore-btn, .cs-mobile .cat-feat-icon { color: var(--accent-cyan); }
        .cs-mobile .cat-title { background: linear-gradient(135deg, var(--accent-cyan), var(--blue-deep)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        .cs-home .cat-blob-a { background: #ffb703; }
        .cs-home .cat-blob-b { background: #fb8500; }
        .cs-home .cat-marquee-text { color: #ffb703; }
        .cs-home .cat-badge, .cs-home .cat-scene .cat-explore-btn, .cs-home .cat-feat-icon { color: #ffd43b; }
        .cs-home .cat-title { background: linear-gradient(135deg, #ffb703, #fb8500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        .cs-content .cat-blob-a { background: var(--purple-light); }
        .cs-content .cat-blob-b { background: var(--purple-deep); }
        .cs-content .cat-marquee-text { color: var(--purple-light); }
        .cs-content .cat-badge, .cs-content .cat-scene .cat-explore-btn, .cs-content .cat-feat-icon { color: #cc5cf3; }
        .cs-content .cat-title { background: linear-gradient(135deg, #c77dff, #7209b7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        .cat-nav-bar {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 20px 5vw; z-index: 50;
            display: flex; justify-content: center;
        }
        .cat-nav-pills {
            display: flex; gap: 5px; padding: 7px;
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 100px; backdrop-filter: blur(20px);
            overflow-x: auto; max-width: calc(100vw - 40px);
        }
        .cat-nav-pills::-webkit-scrollbar { display: none; }
        .cat-pill {
            border: none; background: transparent; color: var(--text-dim);
            padding: 10px 20px; border-radius: 100px;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; cursor: pointer; transition: all 0.3s; white-space: nowrap;
        }
        .cat-pill.active, .cat-pill:hover {
            background: linear-gradient(135deg, var(--blue-main), var(--purple-main));
            color: #fff;
        }

        /* Cube carousel uses larger circular explore buttons than the dept-spotlight variant above */
        .cat-scene .cat-explore-btn { color: inherit; font-size: 0.85rem; gap: 15px; }
        .cat-scene .cat-explore-circle { width: 65px; height: 65px; }
        .cat-scene .cat-explore-arrow { font-size: 1.2rem; }

        /* ===== BANNERS ===== */
        .banners-section { padding-top: 60px; padding-bottom: 60px; }
        .banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
        .banner {
            position: relative; border-radius: 24px; overflow: hidden;
            height: 360px; text-decoration: none; color: #fff; display: block;
            transition: transform 0.5s cubic-bezier(0.25,1,0.5,1);
        }
        .banner:hover { transform: scale(1.02); }
        .banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
        .banner:hover img { transform: scale(1.08); }
        .banner-ov {
            position: absolute; inset: 0; display: flex; flex-direction: column;
            justify-content: flex-end; padding: 35px;
        }
        .banner-ov-1 { background: linear-gradient(135deg, rgba(9,132,227,0.7), rgba(108,92,231,0.5), transparent); }
        .banner-ov-2 { background: linear-gradient(135deg, rgba(6,214,160,0.7), rgba(0,180,216,0.5), transparent); }
        .banner-ov-3 { background: linear-gradient(135deg, rgba(108,92,231,0.7), rgba(9,132,227,0.5), transparent); }
        .banner-ov-4 { background: linear-gradient(135deg, rgba(255,183,3,0.7), rgba(251,133,0,0.5), transparent); }

        .banner-label {
            display: inline-flex; align-self: flex-start;
            padding: 5px 14px; background: rgba(0,0,0,0.3); border-radius: 18px;
            font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; margin-bottom: 12px; backdrop-filter: blur(10px);
        }
        .banner-title { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 900; letter-spacing: -1px; line-height: 1.1; margin-bottom: 8px; }
        .banner-desc { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 300; margin-bottom: 18px; max-width: 320px; }
        .banner-cta {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 11px 24px; background: #fff; color: #000; border-radius: 100px;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; text-decoration: none; align-self: flex-start;
            transition: all 0.3s;
        }
        .banner-cta:hover { transform: scale(1.05); }
        .banner-wide { grid-column: 1 / -1; height: 300px; }

        /* ===== TRENDING ===== */
        .trending-section { background: linear-gradient(180deg, transparent, rgba(9,132,227,0.05), transparent); }
        .trending-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

        /* ===== FEATURES STRIP ===== */
        .features-strip { padding: 75px 5vw; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .features-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .fs-item { text-align: center; padding: 25px 18px; }
        .fs-icon {
            width: 56px; height: 56px; border-radius: 16px;
            background: linear-gradient(135deg, rgba(9,132,227,0.1), rgba(108,92,231,0.1));
            border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; margin: 0 auto 16px;
        }
        .fs-icon img { width: 28px; height: 28px; object-fit: contain; }
        .fs-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 5px; }
        .fs-desc { font-size: 0.76rem; color: var(--text-dim); font-weight: 300; line-height: 1.5; }

        /* ===== NEWSLETTER ===== */
        .newsletter { position: relative; padding: 100px 5vw; text-align: center; overflow: hidden; }
        .nl-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12; }
        .nl-blob-1 { width: 450px; height: 450px; background: var(--blue-main); top: -80px; inset-inline-start: -80px; }
        .nl-blob-2 { width: 400px; height: 400px; background: var(--blue-deep); bottom: -80px; inset-inline-end: -80px; }
        .nl-inner { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
        .nl-title { font-size: clamp(1.6rem, 2.8vw, 2.5rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
        .nl-desc { font-size: 0.95rem; color: var(--text-dim); font-weight: 300; margin-bottom: 32px; line-height: 1.6; }
        .nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
        .nl-input {
            flex: 1; padding: 15px 22px; background: var(--input-bg);
            border: 1px solid var(--border); border-radius: 100px;
            color: var(--text); font-family: inherit; font-size: 0.88rem; outline: none;
            transition: border-color 0.3s;
        }
        .nl-input::placeholder { color: var(--text-dimmer); }
        .nl-input:focus { border-color: var(--blue-main); }
        .nl-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, var(--blue-main), var(--purple-main));
            color: #fff; border: none; border-radius: 100px;
            font-family: inherit; font-size: 0.78rem; font-weight: 700;
            letter-spacing: 1.5px; text-transform: uppercase;
            cursor: pointer; transition: all 0.3s; white-space: nowrap;
        }
        .nl-btn:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(9,132,227,0.3); }
        .nl-btn:disabled { opacity: 0.7; cursor: not-allowed; }
        .nl-feedback { margin-top: 14px; font-size: 0.82rem; color: #e53935; min-height: 1.2em; }
        .nl-feedback-success { color: #1abc4a; }

        /* ===== FOOTER ===== */
        .footer {
            border-top: 1px solid rgba(9,132,227,0.35);
            padding: 75px 5vw 25px;
            transition: background 0.5s;
            background: linear-gradient(180deg, rgba(9,132,227,0.14), rgba(9,132,227,0.03) 55%, transparent);
        }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 45px; margin-bottom: 55px; }
        .footer-brand-logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1rem; letter-spacing: 4px; margin-bottom: 16px; }
        .footer-brand-logo i { color: var(--blue-main); }
        .footer-brand-desc { font-size: 0.84rem; color: var(--text-dim); font-weight: 300; line-height: 1.7; margin-bottom: 20px; }
        .footer-socials { display: flex; gap: 8px; }
        .footer-social {
            width: 38px; height: 38px; border-radius: 10px;
            background: var(--surface); border: 1px solid var(--border);
            color: var(--text-dim); display: flex; align-items: center;
            justify-content: center; text-decoration: none; transition: all 0.3s;
        }
        .footer-social:hover { background: var(--surface-hover); color: var(--blue-light); transform: translateY(-2px); }
        .footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.84rem; transition: color 0.3s; }
        .footer-links a:hover { color: var(--blue-light); }
        .footer-contact { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.84rem; color: var(--text-dim); }
        .footer-contact i { width: 16px; text-align: center; color: var(--text-dimmer); }

        .footer-bottom {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 25px; border-top: 1px solid var(--border);
        }
        .footer-copy { font-size: 0.72rem; color: var(--text-dimmer); }
        .footer-payments { display: flex; gap: 10px; }
        .footer-pay-icon {
            width: 42px; height: 26px; border-radius: 5px;
            background: var(--surface); border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; color: var(--text-dim);
        }

        /* ===== BACK TO TOP ===== */
        .btt {
            position: fixed; bottom: 28px; inset-inline-end: 28px;
            width: 46px; height: 46px; border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-main), var(--purple-main));
            border: none; color: #fff; display: flex; align-items: center;
            justify-content: center; cursor: pointer; z-index: 500;
            opacity: 0; visibility: hidden; transform: translateY(10px);
            transition: all 0.3s; box-shadow: 0 8px 25px rgba(9,132,227,0.3);
        }
        .btt.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .btt:hover { transform: translateY(-3px) scale(1.05); }

        /* ===== SCROLL REVEAL ===== */
        .reveal { opacity: 0; transform: translateY(35px); transition: all 0.8s cubic-bezier(0.25,1,0.5,1); }
        .reveal.vis { opacity: 1; transform: translateY(0); }
        .rv-d1 { transition-delay: 0.1s; }
        .rv-d2 { transition-delay: 0.2s; }
        .rv-d3 { transition-delay: 0.3s; }
        .rv-d4 { transition-delay: 0.4s; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1100px) {
            .trending-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
            .dept-spotlight { grid-template-columns: 1fr; gap: 30px; }

            .hero-grid { grid-template-columns: 1fr; }
            .hero-right { display: none; }
            .cat-scene-grid { grid-template-columns: 1fr; gap: 24px; padding: 100px 24px 120px; overflow-y: auto; align-items: start; }
            .cat-col-left, .cat-col-right { transform: none; }
            .cube-wrap { width: 240px; height: 320px; }
            .cube-face-front { transform: translateZ(120px); }
            .cube-face-back { transform: translateZ(-120px) rotateY(180deg); }
            .cube-face-right { transform: rotateY(90deg) translateZ(120px); }
            .cube-face-left { transform: rotateY(-90deg) translateZ(120px); }
            .cube-orbit-1 { width: 360px; height: 360px; }
            .cube-orbit-2 { width: 440px; height: 440px; }
        }

        @media (max-width: 768px) {
            .header { padding: 0 18px; height: 66px; }
            .header-nav { display: none; }
            .menu-toggle { display: block; }
            .hero { min-height: auto; }
            .hero-brand { min-height: 100svh; }
            .hero-slide-text { padding: 90px 18px 56px; }
            .hero-slide-text-inner { transform: translate(var(--ox-m, 0px), var(--oy-m, 0px)); max-width: 100%; }
            .hero-slide-text.pos-m-top-left { justify-content: flex-start; align-items: flex-start; text-align: start; }
            .hero-slide-text.pos-m-top-center { justify-content: flex-start; align-items: center; text-align: center; }
            .hero-slide-text.pos-m-top-right { justify-content: flex-start; align-items: flex-end; text-align: end; }
            .hero-slide-text.pos-m-center-left { justify-content: center; align-items: flex-start; text-align: start; }
            .hero-slide-text.pos-m-center { justify-content: center; align-items: center; text-align: center; }
            .hero-slide-text.pos-m-center-right { justify-content: center; align-items: flex-end; text-align: end; }
            .hero-slide-text.pos-m-bottom-left { justify-content: flex-end; align-items: flex-start; text-align: start; }
            .hero-slide-text.pos-m-bottom-center { justify-content: flex-end; align-items: center; text-align: center; }
            .hero-slide-text.pos-m-bottom-right { justify-content: flex-end; align-items: flex-end; text-align: end; }
            .hero-dept-nav { display: none; }
            .hero-slide-nav { bottom: 22px; }
            .hero-grid { padding: 100px 20px 60px; }
            .hero-title { letter-spacing: -2px; }
            .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
            .btn-main, .btn-ghost { justify-content: center; text-align: center; }
            .hero-scroll { display: none; }

            .section { padding: 70px 18px; }
            .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
            .arrivals-section .section-head, .festival-section .section-head {
                flex-direction: row; align-items: center; justify-content: space-between;
                flex-wrap: nowrap; gap: 12px;
            }
            .arrivals-section .section-head .view-all, .festival-section .section-head .view-all {
                padding: 8px 12px; font-size: 0.68rem; white-space: nowrap;
            }
            .section-boxed { padding: 40px 18px; margin: 0 0 40px; }

            .dept-spotlight { padding: 45px 0; }
            .dept-title { font-size: 2.2rem; letter-spacing: -1px; margin-bottom: 12px; }
            .dept-desc { font-size: 1rem; margin-bottom: 14px; }

            .category-experience { height: 100vh; }
            .cat-scene-grid { padding: 85px 18px 100px; }
            .cat-title { font-size: 2.2rem; letter-spacing: -1px; margin-bottom: 15px; }
            .cat-desc { font-size: 0.88rem; margin-bottom: 22px; }
            .cat-scene .cat-explore-circle { width: 52px; height: 52px; }
            .cat-features { display: none; }
            .cube-wrap { width: 200px; height: 260px; }
            .cube-face-front { transform: translateZ(100px); }
            .cube-face-back { transform: translateZ(-100px) rotateY(180deg); }
            .cube-face-right { transform: rotateY(90deg) translateZ(100px); }
            .cube-face-left { transform: rotateY(-90deg) translateZ(100px); }
            .cube-orbit-1 { width: 290px; height: 290px; }
            .cube-orbit-2 { width: 340px; height: 340px; }
            .cat-nav-bar { padding: 12px 10px; }
            .cat-pill { padding: 9px 14px; font-size: 0.65rem; }

            .banners-grid { grid-template-columns: 1fr; }
            .banner { height: 280px; }
            .banner-wide { height: 260px; }

            .arrivals-section.section-boxed, .festival-section.section-boxed { margin: 16px; }

            .trending-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .trending-grid .p-card { width: 100%; }
            .product-scroll { gap: 14px; }
            .product-scroll .p-card { width: 64%; }
            .p-card-img { height: 240px; }

            .features-strip-grid { grid-template-columns: 1fr 1fr; }

            .nl-form { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
        }

        @media (max-width: 480px) {
            .hero-slide-text { padding: 84px 12px 48px; }
            .hero-grid { padding: 90px 16px 50px; }
            .hero-badge { font-size: 0.6rem; padding: 6px 14px; }
            .trending-grid { grid-template-columns: 1fr; }
            .features-strip-grid { grid-template-columns: 1fr; }
            .fs-item { display: flex; align-items: center; gap: 16px; text-align: start; padding: 18px 0; }
            .fs-icon { margin: 0; flex-shrink: 0; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .cat-exp-header { padding: 18px; }
        }
    
