/* ========== FULL WORKING CSS – DO NOT REMOVE ANY SECTION ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --deep-green: #0B3D2E;
    --pure-gold: #C9A227;
    --soft-cream: #F5F1E9;
    --earth-brown: #6B4F3A;
    --text-dark: #1E2A1E;
    --white: #FFFFFF;
    --shadow-sm: 0 10px 25px rgba(0,0,0,0.05);
    --shadow-md: 0 20px 35px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
body {
    background-color: var(--soft-cream);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}
/* Header & Navigation */
.site-header {
    background-color: var(--deep-green);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 55px; width: auto; }
.desktop-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.desktop-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--pure-gold); }
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: var(--deep-green);
    z-index: 1050;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}
.mobile-menu.active { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 1.5rem; }
.mobile-menu a {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
}
.mobile-menu a:hover { color: var(--pure-gold); }
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}
.menu-overlay.active { display: block; }
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: block; }
    .header-container { padding: 0.8rem 1.5rem; }
}
/* Buttons */
.btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--pure-gold);
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pure-gold);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn:hover {
    background: var(--pure-gold);
    color: var(--deep-green);
}
.btn-outline {
    border: 1px solid var(--deep-green);
    background: transparent;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--deep-green);
    border-radius: 40px;
    transition: all 0.2s;
    display: inline-block;
}
.btn-outline:hover {
    background: var(--deep-green);
    color: white;
}
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11,61,46,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 2rem;
    color: white;
}
.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .hero-slider { height: 70vh; min-height: 550px; }
    .hero-content h2 { font-size: 2.5rem; }
    .hero-content { padding: 0 1.5rem; }
}
/* Wave Dividers */
.wave-divider {
    background: var(--deep-green);
    height: 80px;
    width: 100%;
    margin-top: -1px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23F5F1E9'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}
.wave-divider-reverse {
    background: var(--deep-green);
    height: 80px;
    width: 100%;
    margin-top: -1px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23F5F1E9'/%3E%3C/svg%3E") no-repeat top;
    background-size: cover;
}
/* Trust strip */
.trust-strip {
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--earth-brown);
    padding: 2rem 0;
    background: var(--soft-cream);
}
/* Marquee */
.marquee-medicine {
    background: var(--deep-green);
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-block;
    animation: scrollMarquee 35s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 2rem;
}
.marquee-item img {
    height: 70px;
    width: auto;
    border-radius: 12px;
}
.marquee-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-medicine:hover .marquee-track { animation-play-state: paused; }
/* Medicine solutions */
.medicine-solutions {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}
.medicine-text {
    flex: 1.2;
}
.medicine-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--deep-green);
}
.medicine-image {
    flex: 0.9;
}
.medicine-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}
.why-organic {
    background: var(--deep-green);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
}
.why-organic h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--pure-gold);
}
.organic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.organic-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--pure-gold);
}
/* Product grids */
.product-grid-home, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.product-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.product-info {
    padding: 1.2rem;
}
.product-title {
    font-size: 1.4rem;
    font-weight: 600;
}
.product-price {
    color: var(--pure-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}
.product-desc {
    font-size: 0.9rem;
    color: #4a5e4a;
    margin-bottom: 1rem;
}
/* Delivery story */
.delivery-story {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background: url('https://images.unsplash.com/photo-1595433707802-3d1c6e0e8d7d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 3rem 0;
    background-attachment: fixed;
}
.delivery-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11,61,46,0.7);
}
.delivery-story-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
    color: white;
}
.delivery-story-content p {
    font-size: 1.4rem;
    font-weight: 400;
}
/* Other page styles */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--deep-green);
}
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.ingredient-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: transform 0.3s;
}
.ingredient-card:hover { transform: translateY(-6px); }
.ingredient-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.ingredient-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--deep-green);
}
.journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}
.article {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.article img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.article-content {
    padding: 2rem;
}
.article-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--deep-green);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}
.contact-info {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.contact-info p { margin: 1rem 0; }
.contact-info strong { color: var(--deep-green); }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: var(--white);
}
.faq-item {
    background: var(--white);
    border-radius: 24px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
}
.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: none;
}
.faq-item.active .faq-answer { display: block; }
/* Footer */
.site-footer {
    background: #082E22;
    color: #ccc;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.footer-col h4 {
    color: var(--pure-gold);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col a {
    color: #ccc;
    text-decoration: none;
}
.footer-col a:hover { color: var(--pure-gold); }
.footer-bottom {
    text-align: center;
    border-top: 1px solid #2f5a46;
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .article img { height: 250px; }
    .ingredients-grid { grid-template-columns: 1fr; }
}