        :root {
            --primary-pink: #FFCDC9;
            --soft-cream: #FCF5EE;
            --bright-yellow: #FFE893;
            --deep-maroon: #670D2F;
            --white: #FFFFFF;
            --text-gray: #4A4A4A;
            --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--soft-cream);
            color: var(--deep-maroon);
            font-family: 'Major Mono Display', monospace;
            overflow-x: hidden;
            line-height: 1.6;
        }

        p, span, input, textarea, .outfit {
            font-family: 'Outfit', sans-serif;
            text-transform: none;
        }

        .mono { font-family: 'Major Mono Display', monospace; text-transform: lowercase; }

        /* --- NAVIGATION --- */
        header {
            padding: 40px 5%;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: var(--soft-cream);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition-fast);
        }
        header.scrolled { padding: 20px 5%; box-shadow: 0 10px 30px rgba(103, 13, 47, 0.05); }

        .logo { font-size: 2.5rem; color: var(--deep-maroon); text-decoration: none; margin-bottom: 20px; transition: var(--transition-fast); }
        .logo:hover { transform: scale(1.02); color: var(--primary-pink); }
        
        .nav-links { display: flex; gap: 40px; margin-bottom: 10px; }
        .nav-links a { 
            text-decoration: none; 
            color: var(--deep-maroon); 
            font-size: 0.85rem; 
            letter-spacing: 2px;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
            background: var(--primary-pink); transition: var(--transition-fast);
        }
        .nav-links a:hover::after { width: 100%; }

        .cart-trigger { 
            position: fixed; top: 40px; right: 5%; 
            background: var(--white); width: 60px; height: 60px; 
            border-radius: 50%; display: flex; align-items: center; 
            justify-content: center; cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            z-index: 1100; border: 2px solid var(--deep-maroon);
        }
        .cart-count {
            position: absolute; top: -5px; right: -5px;
            background: var(--deep-maroon); color: var(--white);
            font-size: 0.75rem; width: 24px; height: 24px; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
        }

        /* --- HERO --- */
        .hero {
            padding: 240px 5% 120px;
            min-height: 100vh;
            margin: 20px;
            background: var(--soft-cream);
            border-radius: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-anim {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 50% 50%, var(--bright-yellow) 0%, transparent 60%);
            opacity: 0.15; animation: pulse 10s infinite alternate;
        }
        @keyframes pulse { 0% { transform: scale(1); } 100% { transform: scale(1.5); } }

        .hero-content { position: relative; z-index: 10; max-width: 1000px; }
        .hero h1 { font-size: 6rem; margin-bottom: 25px; line-height: 0.9; color: var(--deep-maroon); }
        .hero p { font-size: 1.4rem; margin-bottom: 45px; color: var(--text-gray); max-width: 700px; margin-left: auto; margin-right: auto; }

        /* --- BUTTONS --- */
        .cta-btn {
            background: var(--bright-yellow);
            color: var(--deep-maroon);
            padding: 22px 50px;
            border-radius: 100px;
            text-decoration: none;
            font-size: 1.1rem;
            display: inline-block;
            transition: var(--transition-slow);
            border: 3px solid var(--deep-maroon);
            cursor: pointer;
            box-shadow: 6px 6px 0px var(--deep-maroon);
        }
        .cta-btn:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0px var(--deep-maroon); }

        /* --- REVEAL ANIMATIONS --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: var(--transition-slow); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .slide-in-right { opacity: 0; transform: translateX(100px); transition: var(--transition-slow); }
        .slide-in-right.active { opacity: 1; transform: translateX(0); }

        /* --- SECTIONS --- */
        .section-padding { padding: 120px 5%; }
        .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; }
        
        .card {
            background: var(--primary-pink);
            border-radius: 40px;
            padding: 40px;
            transition: var(--transition-slow);
            display: flex;
            flex-direction: column;
            position: relative;
            border: 2px solid transparent;
        }
        .card:hover { transform: translateY(-15px) rotate(1deg); background: var(--white); border-color: var(--deep-maroon); box-shadow: 20px 20px 0px var(--bright-yellow); }
        .card img { width: 100%; height: 300px; object-fit: cover; border-radius: 30px; margin-bottom: 30px; border: 2px solid var(--deep-maroon); }
        .card h3 { font-size: 1.8rem; margin-bottom: 10px; }
        .card .price { font-size: 1.5rem; font-weight: bold; margin-bottom: 20px; }

        /* --- SPLIT --- */
        .split { display: grid; grid-template-columns: 1.2fr 0.8fr; margin: 0 5% 120px; border-radius: 60px; overflow: hidden; }
        .split-text { background: var(--bright-yellow); padding: 100px 10%; display: flex; flex-direction: column; justify-content: center; }
        .split-img { background: url('https://images.unsplash.com/photo-1544716278-ca5e3f4abd8c?q=80&w=1000') center/cover; min-height: 600px; }

        /* --- FILTER --- */
        .filter-bar { display: flex; gap: 20px; justify-content: center; margin-bottom: 80px; flex-wrap: wrap; }
        .filter-btn {
            padding: 15px 35px; border-radius: 50px; border: 3px solid var(--deep-maroon);
            background: transparent; cursor: pointer; transition: 0.3s; font-family: 'Major Mono Display';
        }
        .filter-btn.active { background: var(--deep-maroon); color: var(--white); transform: scale(1.1); }

        /* --- CART --- */
        .cart-overlay {
            position: fixed; top: 0; right: -500px; width: 500px; height: 100vh;
            background: var(--white); z-index: 2000; transition: var(--transition-slow);
            box-shadow: -20px 0 60px rgba(103, 13, 47, 0.2); padding: 60px;
            display: flex; flex-direction: column;
        }
        .cart-overlay.open { right: 0; }
        .cart-item { display: flex; gap: 20px; margin-bottom: 30px; align-items: center; border-bottom: 2px solid var(--soft-cream); padding-bottom: 20px; }
        .cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 15px; }

        /* --- MODAL --- */
        .modal {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(103, 13, 47, 0.8); display: none; align-items: center; justify-content: center;
            z-index: 3000; padding: 20px; backdrop-filter: blur(5px);
        }
        .modal-content {
            background: var(--soft-cream); padding: 60px; border-radius: 50px;
            max-width: 900px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto;
        }

        /* --- FOOTER --- */
        footer { background: var(--deep-maroon); color: var(--white); padding: 120px 5% 60px; border-radius: 60px 60px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px; }
        .footer-col h4 { margin-bottom: 30px; font-size: 1.4rem; color: var(--bright-yellow); }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 15px; }
        .footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.3s; font-family: 'Outfit'; }
        .footer-col a:hover { color: var(--bright-yellow); padding-left: 10px; }

        .newsletter-box { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); }
        .newsletter-form { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; }
        .newsletter-form input { 
            padding: 18px 25px; border-radius: 50px; border: none; 
            background: var(--soft-cream); color: var(--deep-maroon); font-family: 'Outfit';
        }
        .newsletter-btn {
            background: var(--bright-yellow); color: var(--deep-maroon); border: none; 
            padding: 18px; border-radius: 50px; cursor: pointer; font-weight: bold; transition: 0.3s;
        }
        .newsletter-btn:hover { background: var(--white); transform: scale(1.02); }

        /* --- PAGES --- */
        .page-section { display: none; padding-top: 220px; min-height: 100vh; }
        .page-section.active { display: block; }
        .content-body { max-width: 900px; margin: 0 auto; font-family: 'Outfit'; color: var(--text-gray); font-size: 1.15rem; line-height: 1.8; }
        .content-body h2 { font-family: 'Major Mono Display'; color: var(--deep-maroon); margin: 60px 0 30px; font-size: 2.5rem; }

        @media (max-width: 1100px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .hero h1 { font-size: 4rem; }
            .split { grid-template-columns: 1fr; }
        }
        @media (max-width: 600px) {
            .hero h1 { font-size: 2.5rem; }
            .cart-overlay { width: 100%; right: -100%; }
            .modal-content { padding: 30px; }
        }
    