        :root {
            --olive: #AEB784;
            --dark-green: #254F22;
            --soft-leaf: #84934A;
            --white: #FFFFFF;
            --light-bg: #F3F4F4;
            --black: #000000;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Base Typography */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: "Lobster Two", sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .lobster-two-regular { font-weight: 400; font-style: normal; }
        .lobster-two-bold { font-weight: 700; font-style: normal; }
        .lobster-two-regular-italic { font-weight: 400; font-style: italic; }
        .lobster-two-bold-italic { font-weight: 700; font-style: italic; }

        h1, h2, h3, h4 { color: var(--dark-green); }
        p { color: var(--soft-leaf); }

        /* Header Styles */
        header {
            position: fixed;
            top: 0; width: 100%; height: 100px;
            background: var(--light-bg);
            display: flex; justify-content: space-between; align-items: center;
            padding: 0 5%; z-index: 1000;
            transition: var(--transition);
        }
        header.sticky { height: 70px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

        .logo { font-size: 2.2rem; font-weight: 700; color: var(--dark-green); cursor: pointer; }

        nav { display: flex; gap: 2rem; }
        .nav-link { 
            font-size: 1.2rem; cursor: pointer; color: var(--black); 
            text-decoration: none; position: relative;
        }
        .nav-link:hover { color: var(--dark-green); }

        .header-actions { display: flex; gap: 1.5rem; align-items: center; }
        .btn-icon { background: none; border: none; cursor: pointer; color: var(--dark-green); position: relative; }
        .cart-badge {
            position: absolute; -top: 8px; -right: 10px;
            background: var(--olive); color: white;
            font-size: 0.7rem; padding: 2px 6px; border-radius: 50%;
        }

        /* Hero Split Section */
        .hero-container { display: flex; min-height: 100vh; position: relative; }
        .hero-left { 
            width: 50%; background: var(--white); padding: 12% 8%; 
            display: flex; flex-direction: column; justify-content: center;
        }
        .hero-right { 
            width: 50%; position: sticky; top: 0; height: 100vh;
            background: url('https://i.pinimg.com/736x/b8/81/e1/b881e17f182ffe08a72b8297e3e5448b.jpg') center/cover no-repeat;
            animation: slowZoom 20s infinite alternate;
        }
        @keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }

        /* Sections */
        .section { padding: 100px 8%; }
        .btn {
            padding: 14px 35px; font-size: 1.1rem; border: none; cursor: pointer;
            background: var(--olive); color: white; border-radius: 4px;
            transition: var(--transition); text-decoration: none; display: inline-block;
        }
        .btn:hover { background: var(--dark-green); transform: translateY(-2px); }

        /* Products Grid */
        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px; }
        .product-card { 
            background: white; transition: var(--transition); cursor: pointer; 
            padding-bottom: 20px;
        }
        .product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .p-img-box { height: 350px; overflow: hidden; margin-bottom: 20px; position: relative; }
        .p-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 1s ease; }
        .product-card:hover img { transform: scale(1.1); }

        /* Category Showcase */
        .cat-container { background: var(--olive); padding: 80px 0; overflow: hidden; }
        .cat-scroll { display: flex; gap: 30px; padding: 0 8%; overflow-x: auto; scrollbar-width: none; }
        .cat-card {
            min-width: 300px; height: 450px; position: relative; overflow: hidden; border-radius: 8px; flex-shrink: 0;
            cursor: pointer;
        }
        .cat-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); transition: 0.5s; }
        .cat-card:hover img { filter: brightness(0.5); transform: scale(1.05); }
        .cat-text { position: absolute; bottom: 40px; left: 40px; color: white; }

        /* About Asymmetric */
        .about-split { display: flex; background: var(--light-bg); min-height: 600px; }
        .about-text { width: 50%; padding: 8%; display: flex; flex-direction: column; justify-content: center; }
        .about-visual { 
            width: 50%; background: url('https://i.pinimg.com/736x/eb/80/6a/eb806a1bfd177a7d6e57e6193b21f95b.jpg') center/cover;
            clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        /* Customer Reviews */
        .reviews-bg { background: var(--soft-leaf); padding: 100px 8%; text-align: center; color: white; }
        .review-carousel { max-width: 800px; margin: 0 auto; position: relative; }
        .rev-img { width: 100px; height: 100px; border-radius: 50%; border: 4px solid var(--olive); margin: 0 auto 30px; }

        /* Cart Drawer */
        #cart-drawer {
            position: fixed; right: -100%; top: 0; width: 450px; height: 100vh;
            background: white; z-index: 2000; box-shadow: -10px 0 50px rgba(0,0,0,0.1);
            transition: var(--transition); padding: 40px; display: flex; flex-direction: column;
        }
        #cart-drawer.open { right: 0; }
        .drawer-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.4); opacity: 0;
            pointer-events: none; transition: 0.4s; z-index: 1999;
        }
        .drawer-overlay.active { opacity: 1; pointer-events: all; }

        /* Modal */
        .modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: none;
            align-items: center; justify-content: center; z-index: 3000; padding: 20px;
        }
        .modal.active { display: flex; }
        .modal-body { 
            background: white; width: 100%; max-width: 1000px; max-height: 90vh; 
            overflow-y: auto; padding: 60px; border-radius: 4px; position: relative;
        }

        /* Footer */
        footer { background: var(--light-bg); padding: 100px 8% 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
        .footer-links { list-style: none; margin-top: 20px; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a { text-decoration: none; color: var(--soft-leaf); transition: 0.3s; cursor: pointer; }
        .footer-links a:hover { color: var(--dark-green); padding-left: 5px; }

        /* Mobile Adjustments */
        @media (max-width: 1024px) {
            .hero-container, .about-split { flex-direction: column; }
            .hero-left, .hero-right, .about-text, .about-visual { width: 100%; }
            .hero-right { height: 50vh; position: relative; }
            .about-visual { height: 400px; clip-path: none; }
            header nav { display: none; }
            #cart-drawer { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; }
        }


        .logo-img {
    height: 190px;          /* Adjust as needed */
    width: auto;
    cursor: pointer;
    transition: 0.3s;
}
.logo-img:hover {
    opacity: 0.8;
}

nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff6600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-badge {
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        display: none; /* hide menu initially */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
        /* Transitions */
        .fade-in { animation: fadeIn 0.8s ease forwards; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    