        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --ivory: #FFFEF9;
            --cream: #FAF8F3;
            --blush: #E8D4D0;
            --champagne: #F4E8D8;
            --nude: #D9C4B8;
            --rose-gold: #D4AF87;
            --deep-black: #1A1A1A;
            --soft-black: #2D2D2D;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--ivory);
            color: var(--deep-black);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .cursive {
            font-family: 'Allura', cursive;
            font-weight: 400;
        }

        .script {
            font-family: 'Great Vibes', cursive;
        }

        .elegant {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Loading Screen with SVG Logo Animation */
        .loading-screen {
            position: fixed;
            inset: 0;
            background: var(--ivory);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 1s ease, visibility 1s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* SVG Logo Drawing Animation */
        .logo-svg {
            width: 400px;
            height: 200px;
        }

        .logo-svg path {
            stroke: var(--deep-black);
            stroke-width: 2;
            fill: none;
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLogo 3s ease-in-out forwards;
        }

        @keyframes drawLogo {
            to {
                stroke-dashoffset: 0;
                fill: var(--deep-black);
            }
        }

        /* Fade In Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            opacity: 0;
            animation: fadeInUp 1.2s ease-out forwards;
        }

        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Parallax Effect */
        .parallax {
            transition: transform 0.3s ease-out;
        }

        /* Text Mask Reveal */
        @keyframes maskReveal {
            from {
                clip-path: inset(0 100% 0 0);
            }
            to {
                clip-path: inset(0 0 0 0);
            }
        }

        .mask-reveal {
            animation: maskReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        /* Floating Text */
        @keyframes floatText {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-30px) rotate(2deg);
                opacity: 0.6;
            }
        }

        .float-text {
            animation: floatText 8s ease-in-out infinite;
        }

        /* Image Hover Effects */
        .image-glow {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .image-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(212, 175, 135, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .image-glow:hover::after {
            opacity: 1;
        }

        .image-glow:hover {
            transform: scale(1.02) rotate(0.5deg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        /* Product Card Rotation */
        .product-card {
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s ease;
        }

        .product-card:hover {
            transform: rotateY(5deg) rotateX(2deg);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
        }

        /* Underline Draw Animation */
        .underline-draw {
            position: relative;
            display: inline-block;
        }

        .underline-draw::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--rose-gold);
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .underline-draw:hover::after {
            width: 100%;
        }

        /* Ink Spread Button */
        .ink-spread {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .ink-spread::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(26, 26, 26, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .ink-spread:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Quote Styling */
        .editorial-quote {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 3rem;
            line-height: 1.3;
            position: relative;
        }

        .editorial-quote::before {
            content: '"';
            position: absolute;
            top: -40px;
            left: -60px;
            font-size: 10rem;
            opacity: 0.1;
            font-family: 'Playfair Display', serif;
        }

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(26, 26, 26, 0.95);
            z-index: 9999;
            overflow-y: auto;
        }

        .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal-content {
            background: var(--ivory);
            border-radius: 0;
            max-width: 800px;
            width: 100%;
            position: relative;
            max-height: 90%;
            overflow-y: auto;
            animation: fadeInUp 0.6s ease-out;
        }

        /* Page Transitions */
        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeInUp 0.8s ease-out;
        }

        /* Navigation */
        nav {
            transition: all 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        /* Hero Background Animation */
        @keyframes subtleMove {
            0%, 100% {
                transform: scale(1.05) translateY(0);
            }
            50% {
                transform: scale(1.08) translateY(-10px);
            }
        }

        .hero-bg {
            animation: subtleMove 20s ease-in-out infinite;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--rose-gold);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--nude);
        }

        /* Filter Active State */
        .filter-btn.active {
            background: var(--deep-black);
            color: var(--ivory);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .editorial-quote {
                font-size: 2rem;
            }
            
            .editorial-quote::before {
                font-size: 6rem;
                top: -20px;
                left: -30px;
            }

            .logo-svg {
                width: 300px;
                height: 150px;
            }
        }

            /* Custom Animations */
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-60px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(60px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    
    @keyframes bounceSlow {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    @keyframes zoomSlow {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    @keyframes floatText {
        0%, 100% {
            transform: translateX(0) translateY(0);
        }
        25% {
            transform: translateX(-10px) translateY(-10px);
        }
        75% {
            transform: translateX(10px) translateY(10px);
        }
    }
    
    @keyframes pulseOnce {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    @keyframes fadeInSlow {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* Animation Classes */
    .animate-slide-up {
        animation: slideUp 0.8s ease-out forwards;
    }
    
    .animate-fade-in {
        opacity: 0;
        animation: fadeIn 0.8s ease-out forwards;
    }
    
    .animate-fade-in-slow {
        opacity: 0;
        animation: fadeInSlow 1.5s ease-out forwards;
    }
    
    .animate-scale-in {
        opacity: 0;
        animation: scaleIn 0.6s ease-out forwards;
    }
    
    .animate-slide-in-left {
        opacity: 0;
        animation: slideInLeft 0.8s ease-out forwards;
    }
    
    .animate-slide-in-right {
        opacity: 0;
        animation: slideInRight 0.8s ease-out forwards;
    }
    
    .animate-float {
        animation: float 6s ease-in-out infinite;
    }
    
    .animate-bounce-slow {
        animation: bounceSlow 3s ease-in-out infinite;
    }
    
    .animate-zoom-slow {
        animation: zoomSlow 20s ease-in-out infinite;
    }
    
    .animate-float-text {
        animation: floatText 15s ease-in-out infinite;
    }
    
    .animate-pulse-once {
        animation: pulseOnce 2s ease-in-out;
    }
    
    /* Scroll Reveal Enhancement */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .scroll-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Custom Styling */
    .image-glow {
        position: relative;
    }
    
    .image-glow::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(255,255,255,0.1) 100%);
        pointer-events: none;
    }
    
    .look-card:hover .image-glow::after {
        background: radial-gradient(circle at center, transparent 0%, rgba(255,255,255,0.2) 100%);
    }
    
    .product-card:hover {
        transform: translateY(-8px);
        transition: transform 0.3s ease;
    }
    
    .editorial-quote {
        font-size: 3rem;
        font-family: 'Allura', cursive;
        line-height: 1.2;
    }
    
    @media (max-width: 768px) {
        .editorial-quote {
            font-size: 2rem;
        }
    }
    
    /* Remove header space */
    #homePage {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    section:first-child {
        padding-top: 0;
        margin-top: 0;
    }
    
    /* Custom Colors */
    :root {
        --ivory: #FFFFF0;
        --cream: #FFFDD0;
        --champagne: #F7E7CE;
        --deep-black: #1A1A1A;
        --soft-black: #333333;
        --rose-50: #FFF1F2;
        --amber-50: #FFFBEB;
        --lavender-50: #F5F3FF;
        --mint-50: #F0FDFA;
        --peach-100: #FFEDD5;
    }
        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--deep-black);
            color: var(--ivory);
            padding: 1.5rem 2rem;
            border-radius: 0;
            z-index: 10001;
            animation: fadeInUp 0.5s ease-out;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
    