        :root {
            --primary: #95b3e4;
            --navy: #17313E;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        .pacifico { font-family: 'Pacifico', cursive; }

        body {
            background-color: var(--primary);
            color: var(--white);
            overflow-x: hidden;
        }

        /* --- SYMMETRIC HEADER & MOON CUT --- */
        header {
            background: #FFFFFF;
            height: 100px;
            color: navy;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: transform 0.4s ease;
        }

        .header-hidden { transform: translateY(-100%); }

        .logo-circle {
            width: 140px;
            height: 140px;
            background: var(--white);
            border-radius: 50%;
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 1001;
            border: 8px solid var(--navy);
        }

        .moon-cut-overlay {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 160px;
            height: 80px;
            background: var(--primary);
            border-radius: 0 0 100px 100px;
            z-index: 999;
        }

        .nav-link {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .nav-link:hover {
            color: var(--primary);
            letter-spacing: 4px;
        }

        /* --- HERO & ANIMATIONS --- */
        .hero {
            height: 140vh;
            background: linear-gradient(rgba(23, 49, 62, 0.4), rgba(143, 218, 255, 0.7)), 
                        url('https://i.pinimg.com/1200x/0d/0a/22/0d0a22b2569f237d792947d64bd5e03b.jpg') no-repeat center center/cover;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding-bottom: 10vh;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bubble {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1);
            max-width: 500px;
            margin-bottom: 25%;
            margin-left: 40%;
            width: 80%;
        }

        @keyframes heroReveal {
            0% { transform: translateY(100px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        /* --- REVEAL CLASSES --- */
        .reveal { opacity: 0; transition: all 1.2s ease-out; }
        .reveal-left { transform: translateX(-100px); }
        .reveal-right { transform: translateX(100px); }
        .reveal-up { transform: translateY(100px); }
        .reveal-down { transform: translateY(-100px); }
        .active-reveal { opacity: 1; transform: translate(0,0); }

        /* --- UI ELEMENTS --- */
        .btn-navy {
            background: var(--navy);
            color: var(--white);
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 700;
            transition: 0.4s;
            border: 2px solid transparent;
        }
        .btn-navy:hover {
            background: var(--white);
            color: var(--navy);
            border-color: var(--navy);
            transform: scale(1.05);
        }

        .glass-card {
            background: rgba(23, 49, 62, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 30px;
            transition: 0.5s;
        }
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
        }

        /* --- CART & MODALS --- */
        .cart-dot {
            background: #ff4757;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            position: absolute;
            top: -8px;
            right: -8px;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--navy); }
        ::-webkit-scrollbar-thumb { background: var(--white); border-radius: 10px; }
    