
        :root {
            --primary-bg: #cae8dc;
            --text-color: #1a1a1a;
        }

        body {
            font-family: 'Lora', serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .heading-font {
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: -0.025em;
        }

        /* Splash Screen */
        .splash-screen {
            position: fixed;
            inset: 0;
            background: #ffffff;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s;
        }

        .loader-text {
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.2em;
            font-size: 1.2rem;
            text-transform: uppercase;
            animation: pulse-fade 1.5s infinite ease-in-out;
        }

        @keyframes pulse-fade {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Mobile Menu Sidebar */
        #mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        #mobile-menu.open {
            transform: translateX(0);
        }

        .hero-section {
            background-color: var(--primary-bg);
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .nav-link {
            position: relative;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .product-card img {
            transition: transform 0.5s ease;
        }

        .product-card:hover img {
            transform: scale(1.03);
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .category-overlay {
            background: rgba(0,0,0,0.05);
            transition: background 0.3s ease;
        }
        .product-card:hover .category-overlay {
            background: rgba(0,0,0,0.15);
        }
