        :root {
            --primary-bg: #8FA31E;
            --accent-peach: #F5BABB;
            --accent-gold: #EDA35A;
            --white: #FFFFFF;
            --black: #000000;
            --off-white: #FFFFF0;
            --dark-green: #6d7d17;
            --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            background-color: var(--primary-bg);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        .cursive { font-family: 'Petit Formal Script', cursive; text-transform: none; }

        /* --- NAVIGATION --- */
        header {
            background: var(--off-white);
            color: var(--black);
            height: 90px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 6%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }

        .logo { font-size: 2rem; cursor: pointer; color: var(--primary-bg); transition: 0.3s; }
        .logo:hover { color: var(--accent-gold); }

        .menu-trigger {
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px;
            z-index: 1100;
            transition: transform 0.3s ease;
        }
        .menu-trigger:hover { transform: scale(1.1); }

        .nav-overlay {
            position: fixed;
            inset: 0;
            background: var(--white);
            z-index: 1050;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        .nav-overlay.active { display: flex; opacity: 1; }

        .nav-links { list-style: none; text-align: center; }
        .nav-links li { margin: 15px 0; overflow: hidden; }
        .nav-links a {
            font-family: 'Petit Formal Script', cursive;
            font-size: 3rem;
            color: var(--black);
            text-decoration: none;
            display: block;
            transition: var(--transition);
            transform: translateY(100%);
        }
        .nav-overlay.active .nav-links a { transform: translateY(0); }
        .nav-links a:hover { color: var(--accent-gold); letter-spacing: 2px; }

        /* --- HERO --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 8%;
            position: relative;
            background: var(--primary-bg);
            overflow: hidden;
        }

        .hero-left { width: 55%; z-index: 10; opacity: 0; transform: translateX(-100px); animation: slideIn 1.2s forwards 0.2s; }
        .hero-right { width: 45%; display: flex; justify-content: flex-end; z-index: 10; opacity: 0; animation: fadeIn 2s forwards 0.5s; }

        @keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
        @keyframes fadeIn { to { opacity: 1; } }

        .hero h1 { font-size: 5.5rem; margin-bottom: 30px; line-height: 1.1; }
        .hero p { font-size: 1.25rem; max-width: 550px; margin-bottom: 50px; font-weight: 300; }

        .btn {
            padding: 18px 45px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 800;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            border: none;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-peach { background: var(--accent-peach); color: var(--black); }
        .btn-peach:hover { background: var(--accent-gold); color: var(--white); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

        /* --- PRODUCT GRID & CARDS --- */
        .featured-cards-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 0 6% 120px;
            margin-top: -120px;
            position: relative;
            z-index: 50;
        }

        .p-card {
            background: var(--accent-peach);
            border-radius: 40px;
            padding: 25px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: 0 15px 45px rgba(0,0,0,0.12);
            color: var(--black);
        }
        .p-card:hover { transform: translateY(-20px) scale(1.02); background: var(--white); }
        .p-card img { width: 100%; height: 300px; object-fit: cover; border-radius: 30px; margin-bottom: 20px; }
        .p-card h4 { font-size: 1.6rem; margin-bottom: 8px; font-family: 'Petit Formal Script', cursive; }
        .p-card .price { font-weight: 900; font-size: 1.2rem; color: var(--primary-bg); }

        /* --- SECTIONS --- */
        .section { padding: 140px 10%; position: relative; }
        .two-col { display: flex; gap: 100px; align-items: center; }
        .two-col > * { flex: 1; }
        .section-heading { font-size: 4.5rem; margin-bottom: 40px; }
        .img-box img { width: 100%; border-radius: 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); transition: 0.5s; }
        .img-box:hover img { transform: scale(1.02); }

        /* --- LEGAL/CONTENT PAGES --- */
        .content-page { background: var(--white); color: var(--black); padding: 150px 10% 100px; min-height: 100vh; }
        .content-wrap { max-width: 900px; margin: 0 auto; }
        .content-wrap h1 { color: var(--primary-bg); font-size: 4rem; margin-bottom: 50px; text-align: center; }
        .content-wrap h2 { margin: 40px 0 20px; color: var(--dark-green); font-size: 1.8rem; border-bottom: 2px solid var(--accent-peach); display: inline-block; }
        .content-wrap p { margin-bottom: 25px; font-size: 1.1rem; opacity: 0.8; }
        .content-wrap ul { margin-bottom: 30px; padding-left: 20px; }
        .content-wrap li { margin-bottom: 10px; opacity: 0.8; }

        /* --- MODAL --- */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(15px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        .modal-overlay.active { display: flex; }
        .modal-content {
            background: var(--white);
            width: 1100px;
            max-height: 90vh;
            border-radius: 50px;
            display: flex;
            overflow: hidden;
            color: var(--black);
            position: relative;
            box-shadow: 0 50px 100px rgba(0,0,0,0.5);
        }
        .modal-left { width: 45%; }
        .modal-left img { width: 100%; height: 100%; object-fit: cover; }
        .modal-right { width: 55%; padding: 70px; overflow-y: auto; }

        /* --- FILTER --- */
        .filter-container { display: flex; justify-content: center; gap: 20px; margin-bottom: 80px; flex-wrap: wrap; }
        .filter-btn {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--accent-peach);
            padding: 14px 35px;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 700;
            transition: 0.3s;
        }
        .filter-btn.active, .filter-btn:hover { background: var(--accent-peach); color: var(--black); }

        /* --- FOOTER --- */
        footer { background: var(--dark-green); padding: 100px 10% 40px; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 80px; }
        .footer-logo { font-size: 3rem; margin-bottom: 20px; color: var(--accent-peach); }
        .footer-links h4 { font-size: 1.6rem; margin-bottom: 30px; color: var(--accent-gold); font-family: 'Petit Formal Script', cursive; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a { color: var(--white); text-decoration: none; opacity: 0.7; transition: 0.3s; cursor: pointer; }
        .footer-links a:hover { opacity: 1; color: var(--accent-peach); padding-left: 8px; }

        /* --- RESPONSIVE --- */
        @media (max-width: 1100px) {
            .hero h1 { font-size: 3.5rem; }
            .featured-cards-row { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
            .two-col { flex-direction: column; text-align: center; gap: 50px; }
            .modal-content { flex-direction: column; width: 100%; max-height: 95vh; }
            .modal-left, .modal-right { width: 100%; height: 400px; }
            .footer-grid { grid-template-columns: 1fr; gap: 50px; }
        }
