:root {
            --header-bg: #F0FFDF;
            --dark-green: #40513B;
            --accent-blue: #A3CCDA;
            --white: #FFFFFF;
            --black: #000000;
            --transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Bentham', serif; 
            background-color: var(--white); 
            color: var(--black);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- NAVIGATION --- */
        header {
            position: sticky; top: 0; width: 100%; height: 80px;
            background: var(--header-bg); display: flex; align-items: center;
            justify-content: space-between; padding: 0 5%; z-index: 1000;
            transition: var(--transition);
        }
        header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.05); height: 70px; }

        .logo { font-size: 1.6rem; font-weight: bold; color: var(--dark-green); cursor: pointer; letter-spacing: 1px; }
        
        .nav-links { display: flex; gap: 40px; }
        .nav-links a { 
            color: var(--black); text-decoration: none; font-size: 1.1rem;
            position: relative; cursor: pointer;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; 
            height: 1px; background: var(--dark-green); transition: 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        .header-right { display: flex; align-items: center; gap: 25px; }
        .cart-icon { position: relative; cursor: pointer; display: flex; align-items: center; }
        .cart-count { 
            position: absolute; top: -10px; right: -10px; background: var(--dark-green); 
            color: white; font-size: 0.7rem; width: 18px; height: 18px; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh; width: 100%; position: relative;
            background: url('https://i.pinimg.com/1200x/4f/77/88/4f7788ac69cf182f261c32adb3c5c8f4.jpg') center/cover no-repeat;
            display: flex; align-items: flex-end; padding: 0 0 50px 0;
            overflow: hidden;
        }
        .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); z-index: 1; }
        
        .split-container {
            position: relative; z-index: 2; width: 100%; display: flex; height: 80vh; bottom-0;
            justify-content: space-between; padding: 0 10px; gap: 500px;
        }

        .split-card { width: calc(50% - 5px); height: 100vh; display: flex; padding: 40px; position: relative; bottom:0; }
        
        .left-split { 
            background: var(--dark-green); transform: translateX(-100%); opacity: 0;
            animation: slideInLeft 1.2s forwards 0.5s; 
        }
        .right-split { 
            background: var(--accent-blue); transform: translateX(100%); opacity: 0;
            animation: slideInRight 1.2s forwards 0.5s;
        }

        @keyframes slideInLeft { to { transform: translateX(0); opacity: 1; } }
        @keyframes slideInRight { to { transform: translateX(0); opacity: 1; } }

        .inner-white-card {
            background: var(--white); color: var(--dark-green); padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1); width: 100%; height: 100%;
            display: flex; flex-direction: column; justify-content: center; text-align: center;
        }
        .inner-white-card h2 { font-size: 2rem; margin-bottom: 15px; }
        
        .right-content {
            display: flex; flex-direction: column; justify-content: center;
            align-items: center; text-align: center; width: 100%; color: var(--dark-green);
        }
        .right-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .hero-btn {
            background: var(--dark-green); color: white; border: 2px solid var(--dark-green);
            padding: 12px 35px; cursor: pointer; transition: 0.3s; font-size: 1rem;
            margin-top: 20px;
        }
        .hero-btn:hover { background: transparent; color: var(--dark-green); border-color: var(--white); }

        /* --- PRODUCT ROW --- */
        .section-wrap { padding: 100px 5%; }
        .title-center { text-align: center; margin-bottom: 60px; }
        .title-center h2 { font-size: 2.8rem; letter-spacing: 2px; }

        .product-scroll {
            display: flex; gap: 30px; overflow-x: auto; padding: 20px 0 50px;
            scroll-snap-type: x mandatory; scrollbar-width: none;
        }
        .product-scroll::-webkit-scrollbar { display: none; }
        
        .product-card {
            min-width: 320px; background: var(--white); padding: 30px;
            border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            text-align: center; scroll-snap-align: start; transition: var(--transition);
        }
        .product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
        .product-card img { width: 100%; height: 250px; object-fit: contain; margin-bottom: 20px; }
        .product-card h4 { font-size: 1.4rem; margin-bottom: 10px; }
        .product-card .price { font-weight: bold; margin-bottom: 20px; display: block; }

        .btn-add {
            width: 100%; padding: 12px; border: 1px solid var(--dark-green);
            background: transparent; color: var(--dark-green); cursor: pointer;
            transition: 0.3s; font-family: 'Bentham'; font-size: 1rem;
            color: white;
        }
        .btn-add:hover { background: var(--dark-green); color: white; }

        /* --- PARALLAX STORY --- */
        .parallax-section {
            height: 100vh; position: relative;
            background: url('https://i.pinimg.com/736x/54/50/a7/5450a7e553e0d5bb9b242c8ae036374a.jpg') fixed center/cover no-repeat;
            display: flex; align-items: center; justify-content: center;
        }
        .elevated-card {
            background: var(--dark-green); color: white; padding: 80px;
            max-width: 900px; text-align: center; box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            z-index: 5;
        }
        .elevated-card img { width: 200px; height: 200px; object-fit: cover; margin-bottom: 40px; border: 4px solid white; }
        .elevated-card p { font-size: 1.3rem; line-height: 1.8; opacity: 0.9; }

        /* --- GALLERY --- */
        .gallery-container {
            display: flex; justify-content: center; gap: 40px; margin-top: 50px;
            animation: rotateGallery 40s linear infinite;
        }
        .gallery-container:hover { animation-play-state: paused; }
        .gallery-img {
            width: 180px; height: 180px; border-radius: 50%; object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: 0.5s;
        }
        .gallery-img:hover { transform: scale(1.2); z-index: 10; }

        @keyframes rotateGallery {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* --- SHOP PAGE --- */
        .page { display: none; padding-bottom: 100px; }
        .page.active { display: block; animation: fadeInUp 0.8s ease forwards; }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        .page-hero {
            height: 50vh; background: url('https://i.pinimg.com/736x/c8/7f/ca/c87fca594a792cb6c6db99e932173e80.jpg') center/cover;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; color: white; position: relative;
        }
        .page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
        .page-hero-content { position: relative; z-index: 2; padding: 20px; }
        .page-hero h1 { font-size: 4rem; margin-bottom: 10px; }

        .filter-bar {
            display: flex; justify-content: center; gap: 20px; margin: 40px 0;
        }
        .filter-btn {
            padding: 8px 25px; border: 1px solid var(--dark-green);
            background: transparent; cursor: pointer; font-family: 'Bentham';
        }
        .filter-btn.active { background: var(--dark-green); color: white; }

        .product-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 40px; padding: 0 10%;
        }

        /* --- ABOUT & CONTACT --- */
        .split-layout { display: flex; gap: 80px; align-items: center; flex-wrap: wrap; }
        .split-layout img { flex: 1; min-width: 400px; height: 600px; object-fit: cover; border-radius: 4px; }
        .split-layout .text-box { flex: 1; min-width: 400px; }

        .mission-section { background: var(--dark-green); color: white; padding: 100px 10%; text-align: center; margin-top: 100px; }

        .contact-form { display: flex; flex-direction: column; gap: 20px; }
        .contact-form input, .contact-form textarea {
            padding: 15px; border: 1px solid #ccc; font-family: 'Bentham'; outline: none;
        }
        .contact-form input:focus { border-color: var(--dark-green); }

        /* --- AUTH --- */
        .auth-container {
            max-width: 500px; margin: 100px auto; padding: 50px;
            border: 1px solid #eee; box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            text-align: center;
        }
        .auth-container h2 { margin-bottom: 30px; }
        .auth-container .btn-add { margin-top: 20px; }

        /* --- SIDEBARS --- */
        .sidebar {
            position: fixed; top: 0; right: -450px; width: 400px; height: 100vh;
            background: white; z-index: 2000; transition: var(--transition);
            padding: 40px; box-shadow: -10px 0 50px rgba(0,0,0,0.1);
            display: flex; flex-direction: column;
        }
        .sidebar.open { right: 0; }
        .overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 1500;
            display: none; backdrop-filter: blur(4px);
        }
        .overlay.active { display: block; }

        .cart-item { display: flex; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
        .cart-item img { width: 60px; height: 60px; object-fit: contain; }

        /* --- FOOTER --- */
        footer { background: var(--dark-green); color: white; padding: 80px 10% 40px; margin-top: 120px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 60px; }
        .footer-col h4 { margin-bottom: 30px; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; cursor: pointer; }
        .footer-col a:hover { color: white; }
        .newsletter input {
            background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.3);
            color: white; padding: 10px 0; width: 100%; margin-bottom: 15px; font-family: 'Bentham';
        }
        .footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 60px 0 30px; }

        /* --- QUICK VIEW --- */
        .modal {
            position: fixed; inset: 0; z-index: 3000; display: none;
            align-items: center; justify-content: center; padding: 20px;
        }
        .modal.active { display: flex; }
        .modal-content {
            background: white; width: 900px; max-width: 100%; padding: 50px;
            display: flex; gap: 40px; position: relative; animation: zoomIn 0.4s ease;
        }
        @keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        /* ============================ */
/* PREMIUM ABOUT PAGE */
/* ============================ */

.about-hero {
    position: relative;
    height: 90vh;
    background-image: url('https://i.pinimg.com/736x/03/60/11/036011c4ac6c824400284a92888a21a4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.4rem;
}

/* Layout */
.about-section {
    padding: 120px 8%;
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* Philosophy */
.philosophy-section {
    padding: 120px 8%;
    background: #f8f8f8;
}

.timeline {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline-item h3 {
    margin-bottom: 10px;
}

/* Mission */
.mission-section-premium {
    padding: 120px 8%;
    text-align: center;
}

.mission-section-premium h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Impact */
.impact-section {
    padding: 120px 8%;
    background: #111;
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-top: 60px;
    text-align: center;
}

.impact-item h3 {
    font-size: 3rem;
}

/* CTA */
.about-cta {
    padding: 120px 8%;
    text-align: center;
}

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.alt-bg {
    background: #f7f7f7;
}

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 50px;
    margin-top: 60px;
}

.split-feature-section {
    padding: 120px 8%;
}

.split-feature {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.feature-image img {
    width: 100%;
    border-radius: 20px;
}

.feature-text {
    flex: 1;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.impact-banner {
    background: #111;
    color: white;
    padding: 120px 8%;
    text-align: center;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    font-style: italic;
}

.final-cta {
    padding: 120px 8%;
    text-align: center;
}
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 40px;
    width: 500px;
    max-width: 90%;
    border-radius: 14px;
    text-align: left;
    position: relative;
    animation: fadeIn 0.35s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.popup-box h3 {
    margin-bottom: 15px;
}

.popup-box p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.popup-close {
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    font-size: 22px;
}

.popup-btn {
    margin-top: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    /* Optional: hide login text on small mobile */
    .auth-link {
        display: none;
    }
}