:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --secondary: #3498db;
    --text: #2c3e50;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: #3d2b1f; 
    overflow-x: hidden;
}

/* Parallax-lite Background */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/farm-landscape-rich.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); 
    z-index: -1;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li { margin-left: 2rem; }
nav a { text-decoration: none; color: var(--text); font-weight: 600; transition: 0.3s; }
nav a:hover { color: var(--primary); }

.cta-button {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
}

/* Sections */
section {
    padding: 80px 5%;
    position: relative;
    z-index: 1;
}

.white-box-section {
    background: rgba(255, 255, 255, 0.85);
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 60px 5%;
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.hero-text { text-align: left; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.1; color: #1a252f; }
.hero p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; }

.hero-visual { text-align: center; }
.hero-product-img { 
    width: 280px !important;
    height: auto !important;
    border-radius: 15px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
}

/* Product Details Section Overhaul */
.ingredients-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 10px; }

.static-label-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    margin-top: 40px;
}

.label-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    width: 100%;
}

.label-box h3 { 
    margin-bottom: 25px; 
    font-size: 2rem; 
    color: var(--text);
    text-align: center;
}

.static-label-img {
    width: 100% !important;
    max-width: 1000px !important;
    height: auto !important;
    border: 1px solid #eee;
    display: block;
    margin: 0 auto;
}

/* Specific override for Other Ingredients to be smaller */
.label-box:nth-child(2) .static-label-img {
    max-width: 500px !important;
}

/* 90-Day Guarantee Section Fix */
.trust {
    padding: 60px 5%;
    text-align: center;
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff9e6;
    padding: 40px;
    border-radius: 30px;
    border: 2px dashed #f1c40f;
    box-shadow: var(--shadow);
}

.guarantee-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Features */
.features { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.feature-card { padding: 40px 30px; border-radius: 20px; background: var(--light-bg); border: 1px solid #edf2f7; transition: 0.3s; }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.feature-card .icon { font-size: 3rem; margin-bottom: 20px; display: block; }

/* Comparison Cards */
.product-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.product-card { 
    background: var(--white); 
    padding: 60px 40px; 
    border-radius: 30px; 
    width: 400px; 
    box-shadow: var(--shadow); 
    border: 1px solid #f0f0f0; 
    text-align: center;
    position: relative;
}
.product-card.featured { border: 3px solid var(--primary); transform: scale(1.05); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 6px 20px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }

.check-list { 
    list-style: none; 
    text-align: left; 
    margin: 30px auto; 
    max-width: 280px; 
}
.check-list li { 
    margin-bottom: 12px; 
    padding-left: 35px; 
    position: relative; 
    display: flex;
    align-items: flex-start; /* Better for multi-line points */
}
.check-list li::before { 
    content: "✓"; 
    position: absolute; 
    left: 0; 
    color: var(--primary); 
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Footer */
footer { 
    background: #1a252f; 
    color: #bdc3c7; 
    padding: 60px 5%; 
    text-align: center;
    position: relative;
    z-index: 10;
    font-size: 0.9rem;
}
.footer-links { margin-top: 20px; }
.footer-links a { color: #bdc3c7; margin: 0 15px; text-decoration: none; font-size: 0.85rem; }

/* Buttons */
.primary-btn, .secondary-btn { 
    display: inline-block; 
    padding: 1.2rem 2.8rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: 0.3s;
}
.primary-btn { 
    background: var(--primary); 
    color: #fff; 
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}
.secondary-btn { 
    background: #ecf0f1; 
    color: var(--text); 
}
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(46, 204, 113, 0.4); }

/* Responsive */
@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; padding: 30px; }
    .hero h1 { font-size: 2.5rem; }
    .product-card.featured { transform: scale(1); }
}
