:root {
    --bg-color: #f4e8da;
    --primary-green: #687a61;
    --accent-earth: #6a2c0f;
    --white: #ffffff;
    --text-dark: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-earth);
}

.container { max-width: 1100px; margin: 0 auto; padding: 4rem 20px; text-align: center; }

/* Carousel Styles */
.hero-carousel { position: relative; height: 80vh; overflow: hidden; }
.carousel-container { height: 100%; width: 100%; }
.slide { 
    position: absolute; width: 100%; height: 100%; 
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease-in-out;
    display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; }
.hero-content { color: var(--white); text-align: center; padding: 0 20px; }
.hero-content h1 { color: var(--white); font-size: 3.5rem; margin-bottom: 1rem; }

/* Buttons */
.btn { 
    display: inline-block; padding: 15px 35px; background: var(--primary-green);
    color: white; text-decoration: none; border-radius: 5px; font-weight: 600;
    margin-top: 20px; transition: 0.3s;
}
.btn:hover { background: var(--accent-earth); }

.btn-alt {
    padding: 10px 20px; border: 1.5px solid var(--accent-earth);
    background: transparent; color: var(--accent-earth); cursor: pointer;
    font-weight: 600; transition: 0.3s;
}
.btn-alt:hover { background: var(--accent-earth); color: white; }

/* Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-card { padding: 40px; background: white; border-bottom: 5px solid var(--primary-green); }
.product-card.accent { border-bottom: 5px solid var(--accent-earth); }
.focus { display: block; margin: 10px 0; font-weight: 600; color: var(--primary-green); text-transform: uppercase; font-size: 0.8rem; }

/* Subscription Box */
.sub-box { background: var(--white); padding: 50px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.sub-box ul { list-style: none; padding: 20px 0; text-align: left; max-width: 400px; margin: 0 auto; }

/* Footer */
footer { background: var(--accent-earth); color: white; padding: 60px 20px; }
.countdown { font-size: 1.5rem; margin-bottom: 2rem; font-family: 'Playfair Display', serif; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .container { padding: 3rem 20px; }
}