        body { 
            font-family: 'Poiret One', cursive; 
            background: #ffffff;
            color: #000000;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
        .cursive { font-family: 'Dancing Script', cursive; }

        /* MULTI-PAGE SYSTEM */
        .page-content { display: none; min-height: 100vh; animation: pageFade 0.6s ease; }
        .page-content.active { display: block; }

        @keyframes pageFade {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* HEADER STYLES */
        header { border-bottom: 1px solid #f0f0f0; transition: all 0.3s ease; }
        .nav-link { position: relative; cursor: pointer; }
        .nav-link::after {
            content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
            height: 1px; background: #281C59; transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }

        /* HERO STYLES */
        .hero-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* CARD STYLES */
        .glam-card img { transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .glam-card:hover img { transform: scale(1.05); }

        /* CART PANEL */
        #cart-panel {
            position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 85vw;
            background: white; z-index: 6000; transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        }
        #cart-panel.active { transform: translateX(0); }

        /* HAMBURGER */
        .bar { width: 24px; height: 1.5px; background: #281C59; margin: 5px 0; transition: 0.4s; }
        .open .bar1 { transform: rotate(-45deg) translate(-5px, 5px); }
        .open .bar2 { opacity: 0; }
        .open .bar3 { transform: rotate(45deg) translate(-5px, -5px); }

        /* MODAL */
        #modal-overlay {
            position: fixed; inset: 0; z-index: 7000; background: rgba(255,255,255,0.98);
            display: none; align-items: center; justify-content: center; overflow-y: auto;
        }

        /* UTILS */
        .btn-glam {
            background: #982598; color: black; padding: 12px 35px;
            font-family: 'Poiret One', cursive; text-transform: uppercase;
            letter-spacing: 2px; font-weight: bold; transition: all 0.3s;
        }
        .btn-glam:hover { letter-spacing: 4px; opacity: 0.9; }
        .section-gap { margin-bottom: 120px; }
