:root {
    --primary-color: #2E7D32;
    /* Deep Leaf Green */
    --secondary-color: #FFF8E1;
    /* Cashew Cream */
    --accent-color: #795548;
    /* Earthy Brown */
    --action-color: #E64A19;
    /* Burnt Orange */
    --text-dark: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

.marathi-text,
.marathi-sub,
.marathi-desc {
    font-family: 'Mukta', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--action-color), #D84315);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(230, 74, 25, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 74, 25, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.big-btn {
    font-size: 1.3rem;
    padding: 15px 30px;
    margin-top: 15px;
}

/* --- Navbar --- */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Mukta', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 70px;
    /* Increased from 40px */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-btn-mobile {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    /* Background set in HTML for easier image updates */
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.english-text {
    margin-bottom: 25px;
    font-weight: 300;
}

/* --- Sections General --- */
.section {
    padding: 100px 0;
    /* More breathing room */
}

.bg-light {
    background-color: #FAFAFA;
    /* Lighter, cleaner grey/cream */
}

.bg-light {
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Mukta', sans-serif;
    line-height: 1.2;
}

.section-title span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

/* --- Products --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow */
    transition: var(--transition);
    border: none;
    /* Removing border for cleaner look */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info .grade {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.marathi-desc {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.english-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

/* --- Pricing --- */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px;
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.pricing-table tr:hover {
    background-color: #f9f9f9;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 15px;
}

/* --- About --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: 'Mukta', sans-serif;
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stars {
    color: #FFC107;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-family: 'Mukta', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.review-text-en {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.customer-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2px;
}

.location {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Footer --- */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-title {
    font-family: 'Mukta', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-title span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    opacity: 0.8;
}

.contact-details {
    margin-top: 40px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.shipping-note {
    color: #FFC107;
    margin-top: 20px;
    font-size: 0.9rem !important;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* --- FAQ --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fssai-text {
    font-size: 1rem;
    color: #81C784;
    /* Light green/official look */
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* --- Media Queries --- */
@media (max-width: 768px) {

    /* ... existing mobile styles ... */
    .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 60px;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        padding-top: 40px;
        padding-left: 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    /* --- Mobile Pricing Table (Vertical Card View) --- */
    .pricing-table-wrapper {
        overflow-x: visible;
        /* Remove scroll */
    }

    .pricing-table {
        min-width: 0;
        /* Allow full shrink */
        display: block;
        background: transparent;
        box-shadow: none;
    }

    .pricing-table thead {
        display: none;
        /* Hide header */
    }

    .pricing-table tbody {
        display: block;
        width: 100%;
    }

    .pricing-table tr {
        display: block;
        background: var(--white);
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        padding: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pricing-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        text-align: right;
    }

    .pricing-table td:last-child {
        border-bottom: none;
    }

    .pricing-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-light);
        text-align: left;
        margin-right: 20px;
    }
}