        :root {
            --bg: #FAFAF7;
            --text: #1A1A1A;
            --accent: #F4347F;
            --accent-dark: #C9255F;
            --muted: #787878;
            --soft: #F2F0EC;
            --border: #E5E3DE;
            --white: #FFFFFF;
            --dark: #1A1A1A;
            --header-height: 72px;
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ===== HEADER ===== */
        .new-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            display: flex;
            align-items: center;
            padding: 0 clamp(24px, 5vw, 80px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .new-header.transparent {
            background: transparent;
        }

        .new-header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }

        .new-header.scrolled .header-brand,
        .new-header.scrolled .header-nav a,
        .new-header.scrolled .header-actions a,
        .new-header.scrolled .header-hamburger {
            color: var(--text) !important;
        }

        .new-header.transparent .header-brand,
        .new-header.transparent .header-nav a,
        .new-header.transparent .header-actions a,
        .new-header.transparent .header-hamburger {
            color: var(--white) !important;
        }

        /* Force white header pages (cart, checkout, blog, etc.) */
        body.force-white-header .new-header {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }
        body.force-white-header .new-header .header-brand,
        body.force-white-header .new-header .header-nav a,
        body.force-white-header .new-header .header-actions a,
        body.force-white-header .new-header .header-hamburger {
            color: var(--text) !important;
        }
        body.force-white-header .new-header .header-logo-text {
            color: #1A1A1A !important;
        }
        body.force-white-header .new-header .header-logo-text span {
            color: var(--accent) !important;
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
        }

        .header-brand {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 24px;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: opacity 0.3s;
        }

        .header-brand:hover { opacity: 0.7; }

        .header-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(24px, 4vw, 48px);
        }

        .header-nav a {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            color: var(--text);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            padding: 4px 0;
            transition: opacity 0.3s;
        }

        .header-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: currentColor;
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .header-nav a:hover::after { width: 100%; }
        .header-nav a:hover { opacity: 1; }

        .header-right {
            display: flex;
            align-items: center;
            gap: 24px;
            justify-self: end;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-actions a {
            font-size: 22px;
            font-weight: 500;
            text-decoration: none;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: opacity 0.3s;
            position: relative;
        }

        .header-actions a:hover { opacity: 0.6; }

        .cart-badge {
            font-size: 10px;
            font-weight: 600;
            background: var(--accent);
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -8px;
            right: -10px;
        }

        .cart-badge.empty { display: none; }

        .header-hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--text);
            font-size: 20px;
        }

        .header-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: currentColor;
            transition: all 0.3s;
            position: relative;
        }

        .header-hamburger span::before,
        .header-hamburger span::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background: currentColor;
            transition: all 0.3s;
        }

        .header-hamburger span::before { top: -7px; }
        .header-hamburger span::after { top: 7px; }

        .header-hamburger.active span { background: transparent; }
        .header-hamburger.active span::before { top: 0; transform: rotate(45deg); }
        .header-hamburger.active span::after { top: 0; transform: rotate(-45deg); }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 1050;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            font-family: 'Syne', sans-serif;
            font-size: 32px;
            font-weight: 600;
            text-decoration: none;
            color: var(--text);
            padding: 16px 0;
            display: block;
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        

        .mobile-menu.open a {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
        .mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
        .mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
        .mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
        .mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
        .mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: clamp(24px, 5vw, 80px);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 28px;
            color: var(--text);
            padding: 8px;
            line-height: 1;
        }

        .mobile-category-group {
            text-align: center;
            margin-bottom: 8px;
            padding: 12px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            max-height: 40vh;
            overflow-y: auto;
        }

        .mobile-category-group a {
            font-size: 18px !important;
            font-weight: 500 !important;
            padding: 6px 0 !important;
            display: block !important;
            color: var(--text) !important;
            text-transform: none !important;
            letter-spacing: 0 !important;
            font-family: 'Inter', sans-serif !important;
        }

        .mobile-category-group a::after {
            display: none !important;
        }

        .mobile-category-group a:hover {
            opacity: 0.6 !important;
        }

        /* Content offset for fixed header */
        .main-content {
            padding-top: 0;
        }

        /* ===== FOOTER ===== */
        .new-footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 0;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(24px, 5vw, 80px);
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 60px;
        }

        .footer-col h3 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 20px;
        }

        .footer-col p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.6);
            max-width: 280px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li { margin-bottom: 12px; }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--white);
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-2px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 24px clamp(24px, 5vw, 80px) 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-bottom span {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .footer-bottom a {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            :root {
                --header-height: 60px;
            }

            .header-nav { display: none; }
            .header-hamburger { display: block; }
            .header-inner { display: flex; justify-content: space-between; }

            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-col:first-child {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
