        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --cream: #F9F6F1;
            --warm-white: #FFF9F0;
            --soft-brown: #8B6F47;
            --dusty-rose: #D4A5A5;
            --butter-yellow: #F4D19B;
            --dark-text: #3E2723;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background: var(--cream);
            color: var(--dark-text);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        .cursive {
            font-family: 'Dancing Script', cursive;
            font-weight: 600;
        }

        .lora {
            font-family: 'Lora', serif;
        }

        /* Grain Texture */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
            pointer-events: none;
            z-index: 1;
        }

        /* Oven Glow Animation */
        @keyframes ovenGlow {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }

        .oven-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--butter-yellow) 0%, transparent 70%);
            animation: ovenGlow 4s ease-in-out infinite;
            filter: blur(60px);
        }

        /* Bread Rise Animation */
        @keyframes breadRise {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bread-rise {
            animation: breadRise 1.5s ease-out forwards;
        }

        /* Flour Dust Animation */
        @keyframes flourDust {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            50% {
                opacity: 0.6;
            }
            100% {
                opacity: 0;
                transform: translateY(40px);
            }
        }

        .flour-dust {
            position: absolute;
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            animation: flourDust 3s ease-in-out infinite;
        }

        /* Soft Rise Motion */
        @keyframes softRise {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .soft-rise {
            opacity: 0;
            animation: softRise 1.2s ease-out forwards;
        }

        /* Steam Rise */
        @keyframes steamRise {
            from {
                opacity: 0;
                transform: translateY(0) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(-20px) scale(1);
            }
        }

        .steam-rise {
            animation: steamRise 0.8s ease-out forwards;
        }

        /* Warm Glow on Hover */
        .warm-hover {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .warm-hover:hover {
            filter: brightness(1.1);
            box-shadow: 0 20px 40px rgba(139, 111, 71, 0.2);
            transform: translateY(-8px);
        }

        /* Soft Button */
        .soft-btn {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .soft-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .soft-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .soft-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 111, 71, 0.3);
        }

        /* Parallax */
        .parallax {
            transition: transform 0.3s ease-out;
        }

        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hand-drawn Divider */
        .hand-divider {
            position: relative;
            height: 2px;
            background: var(--soft-brown);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hand-divider.visible {
            transform: scaleX(1);
        }

        /* Product Card */
        .product-card {
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(139, 111, 71, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .product-card:hover::after {
            opacity: 1;
        }

        .product-card .product-name {
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.5s ease;
        }

        .product-card:hover .product-name {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(62, 39, 35, 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(--warm-white);
            border-radius: 8px;
            max-width: 900px;
            width: 100%;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            animation: softRise 0.6s ease-out;
        }

        /* Page Transitions */
        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: softRise 0.8s ease-out;
        }

        /* Navigation */
        nav {
            backdrop-filter: blur(10px);
            background: rgba(249, 246, 241, 0.95);
            border-bottom: 1px solid rgba(139, 111, 71, 0.2);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 4px 20px rgba(139, 111, 71, 0.1);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--soft-brown);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--dusty-rose);
        }

        /* Hero Background */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.25;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            inset: 0;
            background: var(--warm-white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .modal-content { padding: 1.5rem; }
        }
