        * { box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; margin: 0; padding: 0; overflow-x: hidden; }

        /* ── NAVBAR ── */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid #f0f0f0;
            height: 72px;
            display: flex; align-items: center;
        }
        .navbar-inner { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
        .nav-logo img { height: 52px; width: auto; object-fit: contain; max-width: 160px; }
        .nav-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
        .nav-links a { text-decoration: none; color: #333; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; position: relative; padding-bottom: 4px; }
        .nav-links a::after { content:''; position: absolute; bottom:0; left:0; width:0; height:1px; background:#000; transition: width 0.3s; }
        .nav-links a:hover { color: #000; }
        .nav-links a:hover::after { width: 100%; }
        .nav-actions { display: flex; align-items: center; gap: 20px; }
        .cart-btn-premium { display: flex; align-items: center; gap: 12px; background: #f9fafb; border: 1px solid #e5e7eb; padding: 8px 16px; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
        .cart-btn-premium:hover { background: #f3f4f6; }
        .cart-btn-premium svg { width: 20px; height: 20px; color: #1f2937; stroke-width: 1.2; }
        .cart-divider { width: 1px; height: 16px; background-color: #d1d5db; }
        .cart-text-filled { font-size: 14px; font-weight: 700; color: #111; letter-spacing: 0.05em; }
        .cart-text-empty { font-size: 14px; font-weight: 500; color: #6b7280; letter-spacing: 0.05em; }
        .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
        .hamburger span { display: block; width: 24px; height: 2px; background: #111; transition: all 0.3s; }

        /* ── HERO SLIDER ── */
        .hero { position: relative; width: 100%; height: calc(100vh - 72px); margin-top: 72px; overflow: hidden; }
        .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
        .slide.active { opacity: 1; z-index: 2; }
        .slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.1); transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1); }
        .slide.active img { transform: scale(1); }
        
        /* Premium Bumpy Animations */
        .slide-content > * { opacity: 0; transform: translateY(60px); transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
        .slide.active .slide-content > * { opacity: 1; transform: translateY(0); }
        .slide.active .slide-tag { transition-delay: 0.2s; }
        .slide.active .slide-heading { transition-delay: 0.3s; }
        .slide.active .slide-sub { transition-delay: 0.4s; }
        .slide.active .slide-btns { transition-delay: 0.5s; }
        .slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,8,30,0.75) 0%, rgba(5,8,30,0.35) 60%, transparent 100%); z-index: 3; }
        .slide-content { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; justify-content: center; padding: 0 5%; }
        .slide-tag { display: inline-block; border: 1px solid rgba(255,196,0,0.7); color: #ffc400; font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; padding: 6px 14px; margin-bottom: 20px; }
        .slide-heading { font-family: 'Playfair Display', serif; font-size: clamp(48px, 8vw, 96px); font-weight: 900; color: #fff; line-height: 1; margin: 0 0 20px; }
        .slide-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.8); margin: 0 0 36px; max-width: 440px; line-height: 1.7; }
        .slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary { background: #fff; color: #000; padding: 14px 36px; font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.25s; border: 2px solid #fff; }
        .btn-primary:hover { background: #000; color: #fff; border-color: #000; }
        .btn-outline { background: transparent; color: #fff; padding: 14px 36px; font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); transition: all 0.25s; }
        .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
        /* Slider dots */
        .slider-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
        .slider-dot { border: none; padding: 0; cursor: pointer; background: rgba(255,255,255,0.35); height: 4px; width: 28px; border-radius: 2px; transition: all 0.35s; }
        .slider-dot.active { background: #fff; width: 52px; }
        /* Slider arrows */
        .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px); transition: all 0.25s; }
        .slider-arrow:hover { background: rgba(255,255,255,0.95); color: #000; }
        .slider-arrow.prev { left: 24px; }
        .slider-arrow.next { right: 24px; }

        /* ── TICKER ── */
        .ticker { background: #0a0f2c; color: #fff; padding: 12px 0; overflow: hidden; }
        .ticker-track { display: flex; white-space: nowrap; animation: ticker 20s linear infinite; }
        .ticker-track:hover { animation-play-state: paused; }
        .ticker-item { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0 32px; }
        .ticker-sep { color: #ffc400; padding: 0 8px; }
        @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* ── COLLECTION ── */
        .section { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
        .section-bg { background: #f8f8f8; }
        .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
        .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: #ffc400; margin-bottom: 10px; }
        .section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: #0a0f2c; line-height: 1.1; }
        .section-desc { font-size: 14px; color: #666; max-width: 320px; line-height: 1.7; }
        /* Product grid */
        .product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .product-card { background: #fff; overflow: hidden; cursor: pointer; text-decoration: none; display: block; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: box-shadow 0.35s, transform 0.35s; }
        .product-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.14); transform: translateY(-4px); }
        .product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
        .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
        .product-card:hover .product-img-wrap img { transform: scale(1.06); }
        .product-cta { position: absolute; bottom: 0; left: 0; right: 0; background: #0a0f2c; color: #fff; text-align: center; padding: 12px; font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; transform: translateY(100%); transition: transform 0.35s; }
        .product-card:hover .product-cta { transform: translateY(0); }
        .product-badge { position: absolute; top: 12px; left: 12px; background: #ffc400; color: #0a0f2c; font-size: 10px; font-weight: 800; padding: 4px 10px; letter-spacing: 0.15em; text-transform: uppercase; }
        .product-info { padding: 16px; }
        .product-name { font-size: 15px; font-weight: 700; color: #0a0f2c; margin-bottom: 4px; }
        .product-type { font-size: 12px; color: #999; margin-bottom: 12px; }
        .product-bottom { display: flex; justify-content: space-between; align-items: center; }
        .product-price { font-size: 16px; font-weight: 800; color: #0a0f2c; }
        .product-swatches { display: flex; gap: 6px; }
        .swatch { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #eee; }
        .swatch.black { background: #111; border-color: #111; }
        .swatch.white { background: #fff; }

        /* ── FEATURES ── */
        .features { background: #0a0f2c; color: #fff; padding: 64px 24px; }
        .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1280px; margin: 0 auto; text-align: center; }
        .feature-icon { width: 52px; height: 52px; border: 1px solid rgba(255,196,0,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #ffc400; }
        .feature-title { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
        .feature-desc { font-size: 12px; color: #999; }

        /* ── ABOUT ── */
        .about { padding: 100px 24px; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .about-img-wrap { position: relative; }
        .about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
        .about-accent { position: absolute; bottom: -24px; right: -24px; width: 160px; height: 160px; background: #ffc400; z-index: -1; }
        .about-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: #ffc400; margin-bottom: 16px; }
        .about-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: #0a0f2c; line-height: 1.15; margin-bottom: 24px; }
        .about-text { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
        .btn-dark { display: inline-block; background: #0a0f2c; color: #fff; padding: 16px 40px; font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; margin-top: 24px; transition: background 0.25s; }
        .btn-dark:hover { background: #000; }

        /* ── FOOTER ── */
        .footer { background: #0a0f2c; color: #fff; }
        .footer-top { padding: 72px 24px 48px; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; }
        .footer-logo img { height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 20px; }
        .footer-tagline { font-size: 13px; color: #888; line-height: 1.7; margin-bottom: 24px; }
        .social-links { display: flex; gap: 12px; }
        .social-link { width: 36px; height: 36px; border: 1px solid #333; display: flex; align-items: center; justify-content: center; color: #888; transition: all 0.25s; text-decoration: none; }
        .social-link:hover { border-color: #fff; color: #fff; }
        .footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; color: #fff; }
        .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-links a:hover { color: #fff; }
        .newsletter-text { font-size: 13px; color: #888; margin-bottom: 16px; line-height: 1.6; }
        .newsletter-form { display: flex; gap: 0; }
        .newsletter-form input { flex: 1; background: #111b3d; border: 1px solid #1e2d5a; color: #fff; padding: 12px 16px; font-size: 13px; outline: none; transition: border-color 0.2s; }
        .newsletter-form input:focus { border-color: #ffc400; }
        .newsletter-form button { background: #ffc400; color: #0a0f2c; padding: 12px 20px; font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; }
        .footer-bottom { border-top: 1px solid #111b3d; padding: 20px 24px; }
        .footer-bottom-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
        .footer-copy { font-size: 12px; color: #666; }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 12px; color: #666; text-decoration: none; transition: color 0.2s; }
        .footer-legal a:hover { color: #fff; }

        /* ── CART SIDEBAR ── */
        .cart-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; }
        .cart-backdrop.open { display: block; }
        .cart-sidebar { position: fixed; top: 0; right: -100%; width: 100%; max-width: 420px; height: 100vh; background: #fff; z-index: 2001; display: flex; flex-direction: column; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -4px 0 40px rgba(0,0,0,0.12); }
        .cart-sidebar.open { right: 0; }
        .cart-header { padding: 24px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
        .cart-header h2 { font-size: 14px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
        .cart-close { background: none; border: none; font-size: 28px; cursor: pointer; color: #999; line-height: 1; }
        .cart-close:hover { color: #000; }
        .cart-body { flex: 1; overflow-y: auto; padding: 24px; }
        .cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; color: #999; }
        .cart-empty svg { margin-bottom: 16px; opacity: 0.3; }
        .cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #f5f5f5; }
        .cart-item-img { width: 80px; height: 96px; object-fit: cover; flex-shrink: 0; background: #f5f5f5; }
        .cart-item-info { flex: 1; }
        .cart-item-name { font-weight: 700; font-size: 14px; color: #0a0f2c; margin-bottom: 4px; }
        .cart-item-meta { font-size: 12px; color: #999; margin-bottom: 8px; }
        .cart-item-price { font-weight: 800; font-size: 15px; }
        .cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 20px; flex-shrink: 0; align-self: flex-start; padding: 0; transition: color 0.2s; }
        .cart-item-remove:hover { color: #e00; }
        .cart-footer { padding: 24px; border-top: 1px solid #f0f0f0; }
        .cart-total-row { display: flex; justify-content: space-between; font-size: 13px; color: #666; margin-bottom: 8px; }
        .cart-grand { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; color: #0a0f2c; margin-bottom: 20px; }
        .btn-checkout { display: block; background: #0a0f2c; color: #fff; text-align: center; padding: 16px; font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: background 0.25s; }
        .btn-checkout:hover { background: #000; }
        .btn-continue { display: block; text-align: center; font-size: 12px; color: #999; text-decoration: underline; margin-top: 12px; cursor: pointer; background: none; border: none; width: 100%; }

        /* ── MOBILE ── */
        .mobile-menu { display: none; position: fixed; inset: 0; background: #fff; z-index: 999; padding: 100px 32px 32px; flex-direction: column; gap: 8px; }
        .mobile-menu.open { display: flex; }
        .mobile-menu a { font-size: 28px; font-weight: 800; color: #0a0f2c; text-decoration: none; letter-spacing: -0.01em; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
        .mobile-menu-close { position: absolute; top: 24px; right: 24px; font-size: 32px; background: none; border: none; cursor: pointer; color: #333; }
        .mobile-menu .cta { background: #0a0f2c; color: #fff; text-align: center; padding: 16px; font-size: 13px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 16px; border-bottom: none; }

        @media (max-width: 1024px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-top { grid-template-columns: 1fr 1fr; }
            .about { grid-template-columns: 1fr; gap: 40px; }
            .about-accent { display: none; }
        }
        @media (max-width: 768px) {
            .nav-links, .nav-links-desktop { display: none; }
            .hamburger { display: flex; }
            .hero { height: calc(100svh - 72px); }
            .slide-heading { font-size: 42px; }
            .slide-sub { font-size: 14px; }
            .slider-arrow { display: none; }
            .section { padding: 60px 16px; }
            .section-header { flex-direction: column; align-items: flex-start; }
            .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .product-info { padding: 12px; }
            .product-name { font-size: 13px; }
            .product-price { font-size: 14px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 16px 32px; }
            .footer-bottom-inner { flex-direction: column; text-align: center; }
        }
        @media (max-width: 480px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .slide-btns { flex-direction: column; gap: 12px; }
            .btn-primary, .btn-outline { text-align: center; padding: 14px 24px; }
        }

        /* Cart Quantity Controls */
        .cart-qty-row { display:flex; align-items:center; gap:6px; margin-top:8px; }
        .cart-qty-btn { width:26px; height:26px; border:1.5px solid #0a0f2c; background:#fff; color:#0a0f2c; font-size:16px; font-weight:700; cursor:pointer; border-radius:4px; display:flex; align-items:center; justify-content:center; transition:background 0.2s,color 0.2s; line-height:1; }
        .cart-qty-btn:hover { background:#0a0f2c; color:#fff; }
        .cart-qty-num { min-width:28px; text-align:center; font-size:14px; font-weight:700; color:#0a0f2c; }
        .cart-item-img-link { display:block; flex-shrink:0; }
        .cart-remove-form { flex-shrink:0; }
        .d-inline { display:inline; margin:0; padding:0; }
        /* Cart badge fix */
