    /* --- VARIABLES --- */
:root {
    --clr-primary: #1e392a; /* Deep elegant green */
    --clr-accent: #c5a059; /* Subtle gold */
    --clr-light: #f9f9f7;
    --clr-white: #ffffff;
    --clr-text: #333333;
    --clr-text-light: #666666;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans); color: var(--clr-text); line-height: 1.6; background-color: var(--clr-white); overflow-x: hidden; zoom: 0.9}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; color: var(--clr-primary); }
.container { width: 90%; max-width: 1250px; margin: 0 auto; }

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- HEADER (UPDATED TO MATCH FOOTER) --- */
.site-header {
    background-color: var(--clr-primary); /* Changed to deep green */
    color: var(--clr-white); /* Added white text base */
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid #3d5a49; /* Subtle green border instead of grey */
    box-shadow: var(--shadow-md);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0;
}

/* Ensure Brand Logo is white */
.brand h2 { color: var(--clr-white); font-size: 1.25rem; font-weight: 700; letter-spacing: 1px; margin: 0; }

.nav-menu { display: flex; gap: 2.5rem; }
.nav-link {
    color: var(--clr-white); /* Text is now white */
    font-size: 0.85rem; text-transform: uppercase; font-weight: 500;
    letter-spacing: 1.5px; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background-color: var(--clr-accent);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--clr-accent); }

/* Header Icons */
.header-icons { display: flex; gap: 1.5rem; align-items: center; font-size: 1.2rem; color: var(--clr-white); } /* Icons are now white */
.header-icons i { cursor: pointer; transition: var(--transition); }
.header-icons i:hover { color: var(--clr-accent); }
.cart-icon { position: relative; }
.cart-badge {
    position: absolute; top: -8px; right: -10px;
    background: var(--clr-accent); color: white;
    font-size: 0.65rem; font-weight: bold; font-family: var(--font-sans);
    height: 18px; width: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* --- HERO SECTION --- */
.hero-section { display: flex; min-height: 85vh; width: 100%; }
.hero-content {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 4rem; background: var(--clr-light);
}
.hero-card { max-width: 500px; animation: fadeIn 1s ease-out; }
.hero-tag {
    color: var(--clr-accent); font-weight: 600; font-family: var(--font-sans);
    letter-spacing: 3px; font-size: 0.75rem; text-transform: uppercase;
    display: block; margin-bottom: 1rem;
}
.hero-card h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-card p { font-size: 1.1rem; color: var(--clr-text-light); margin-bottom: 2.5rem; font-weight: 300; }

.btn-primary {
    display: inline-block; background: var(--clr-primary); color: var(--clr-white);
    padding: 1rem 2.5rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.9rem; border: 1px solid var(--clr-primary);
}
.btn-primary:hover { background: transparent; color: var(--clr-primary); }

.hero-image { flex: 1; overflow: hidden; position: relative; }
.hero-image img { width: 100%; height: 100%; object-position: center; transition: transform 10s ease; }
.hero-image:hover img { transform: scale(1.05); }

/* --- TRUST BANNER --- */
.trust-banner { background: var(--clr-primary); color: white; padding: 2rem 0; border-top: 1px solid #3d5a49; }
.trust-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; text-align: center; }
.trust-item i { font-size: 2rem; color: var(--clr-accent); margin-bottom: 0.5rem; }
.trust-item h4 { color: white; font-family: var(--font-sans); font-size: 1rem; margin-bottom: 0.2rem; }
.trust-item p { font-size: 0.85rem; opacity: 0.8; font-weight: 300; }

/* --- PRODUCT GRID --- */
.products-section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-header p { color: var(--clr-text-light); font-style: italic; font-family: var(--font-serif); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.product-card { text-align: center; transition: var(--transition); group: hover; }
.product-card:hover { transform: translateY(-10px); }

.product-image-wrapper {
    position: relative; height: 380px; overflow: hidden; background: #f4f4f4; margin-bottom: 1.5rem;
}
.product-image-wrapper img { width: 100%; height: 100%; transition: var(--transition); }
.product-card:hover .product-image-wrapper img { transform: scale(1.08); }

.add-to-cart-btn {
    position: absolute; bottom: -50px; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.95); color: var(--clr-primary);
    padding: 1rem 0; font-weight: 600; text-transform: uppercase; font-size: 0.8rem;
    letter-spacing: 1px; transition: var(--transition); cursor: pointer; border: none;
}
.product-card:hover .add-to-cart-btn { bottom: 0; }
.add-to-cart-btn:hover { background: var(--clr-accent); color: white; }

.product-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.price { font-family: var(--font-sans); font-weight: 500; color: var(--clr-text-light); }
.stars { color: var(--clr-accent); font-size: 0.8rem; margin-bottom: 0.5rem; }

/* --- FOOTER --- */
.footer { background: var(--clr-primary); color: var(--clr-white); padding: 5rem 0 2rem; font-family: var(--font-sans); border-top: 1px solid #3d5a49;}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; }
.footer h4 { margin-bottom: 1.5rem; color: var(--clr-accent); font-family: var(--font-sans); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer p { color: #a9b5b0; font-size: 0.9rem; font-weight: 300; }
.footer ul li { margin-bottom: 0.8rem; }
.footer ul li a { color: #a9b5b0; font-size: 0.9rem; transition: var(--transition); }
.footer ul li a:hover { color: var(--clr-white); padding-left: 5px; }

.newsletter input { width: 100%; padding: 0.8rem; border: 1px solid #3d5a49; background: transparent; color: white; margin-bottom: 1rem; }
.newsletter button { width: 100%; padding: 0.8rem; background: var(--clr-accent); border: none; color: white; text-transform: uppercase; font-weight: 600; cursor: pointer; }

.copyright { text-align: center; margin-top: 4rem; border-top: 1px solid #3d5a49; padding-top: 2rem; font-size: 0.85rem; color: #a9b5b0; }

/* --- MOBILE RESPONSIVE --- */
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--clr-white); } /* Hamburger is white now */

@media (max-width: 900px) {
    .hero-section { flex-direction: column; height: auto; }
    .hero-card h1 { font-size: 3rem; }
    .hero-image { min-height: 50vh; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .header-icons { display: none; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--clr-primary); /* Dropdown matches dark header */
        flex-direction: column; gap: 0;
        box-shadow: var(--shadow-md); max-height: 0; overflow: hidden; transition: var(--transition);
    }
    .nav-menu.active { max-height: 300px; }
    .nav-menu li { border-top: 1px solid #3d5a49; } /* Dark border for mobile menu */
    .nav-link { display: block; padding: 1.2rem; text-align: center; color: var(--clr-white); }
    .nav-link::after { display: none; }
}
