:root {
    --primary: #1b4332;
    /* Forest Green */
    --primary-dark: #0f291e;
    --secondary: #d4a373;
    /* Earthy Gold */
    --secondary-light: #e6c5a5;
    --bg: #f8f9fa;
    /* Clean Slate */
    --text: #343a40;
    --white: #ffffff;
    --border: #e9ecef;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Utility */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

/* --- Header & Nav Logic --- */

/* Top Bar */
.top-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: #666;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
}

.contact-info span {
    margin-left: 1.5rem;
}

.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* WebKit support */
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo-area img {
    height: 60px;
    width: auto;
}

/* Navigation Inline - CENTERED */
.nav-area {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* Changed from flex-end to center */
    padding: 0 1rem;
}

.nav-menu-inline {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu-inline a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-transform: capitalize;
    /* "Home" not "HOME" */
    position: relative;
}

.nav-menu-inline a:hover,
.nav-menu-inline a.active {
    color: var(--primary);
}

/* Header Actions (Cart) */
.header-actions {
    display: flex;
    align-items: center;
}

.cart-icon-btn {
    position: relative;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.cart-icon-btn:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    margin-left: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0;
    transition: transform 0.2s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-area {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 0;
        z-index: 999;
    }

    .nav-area.open {
        display: flex !important;
    }

    .nav-menu-inline {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: center;
    }

    .header-grid {
        justify-content: space-between;
    }
}


/* --- Hero Section (New Style) --- */
.hero-new {
    position: relative;
    height: 600px;
    background-image: url('../assets/images/hero-section-sneha-spices.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the container */
    padding-left: 0;
    /* Removed manual offset */
    margin-bottom: 0;
}

.hero-new .container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /* Align card to the left */
}

/* Floating Card */
.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.hero-subtitle {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.hero-new h1 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-new p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.shop-btn {
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
}

.shop-btn:hover {
    background-color: var(--primary-dark);
}

/* Timeline */
.timeline-section {
    padding: 5rem 0;
    background-color: var(--bg);
    /* Changed from white to light gray for separation */
    text-align: center;
}

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary);
    transition: 0.3s;
}

.step:hover .step-icon {
    background-color: var(--primary);
    color: var(--white);
}

/* Products */
.products-section {
    padding: 5rem 0;
    background-color: var(--white);
    /* Cleaner background */
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 0;
    border: none;
    background: transparent;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.product-card {
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-container {
    position: relative;
    height: 220px;
    width: 220px;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.product-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none;
}

.product-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.product-tooltip {
    position: fixed;
    width: 260px;
    background: rgba(27, 67, 50, 0.98);
    color: var(--white);
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 10000;
    text-align: center;
    pointer-events: none;
}

.product-tooltip h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.product-tooltip p {
    font-size: 0.7rem;
    line-height: 1.4;
    color: #f8f9fa;
}

.product-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.product-img-container:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1;
    /* Push footer down */
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.product-meta {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-desc {
    display: none;
    /* Hide description for cleaner grid */
}

/* Custom Button for Card */
.card-footer {
    margin-top: auto;
    width: 100%;
}

.product-card .btn-primary {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 2rem;
    text-transform: uppercase;
}

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

/* Inquiry Page */
.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    color: var(--white) !important; /* Fix dark-green text contrast on dark-green banner overlay */
}

.inquiry-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.basket-summary {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.basket-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.item-remove {
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.inquiry-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row-2col {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-family: inherit;
}

.form-control:focus {
    outline: 2px solid var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
    .contact-info span {
        margin-left: 0;
    }

    .header-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    .logo-area img {
        height: 50px;
    }

    .search-area {
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-new {
        justify-content: center;
        padding: 0 1rem;
        height: auto;
        min-height: 500px;
    }

    .hero-card {
        margin: 2rem 0;
        text-align: center;
    }

    .inquiry-layout {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.main-footer {
    background-color: #0b1a13; /* Deep dark emerald background */
    border-top: 4px solid var(--primary); /* Deep green top accent bar */
    color: #ccd5d1; /* Soft light-green-gray text */
    padding: 5rem 0 2.5rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.8fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white); /* White headings */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-sans);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary); /* Small gold accent underline */
}

.footer-col p {
    line-height: 1.6;
    color: #ccd5d1;
}

.footer-logo-container {
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    display: inline-block;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.footer-logo {
    height: 36px;
    display: block;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ccd5d1;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px; /* Subtle hover slide */
}

.footer-contact-sections {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split European and Indian offices side-by-side */
    gap: 1.5rem;
}

.footer-contact-block {
    background: #132c20; /* Slightly lighter dark green card */
    padding: 1.25rem;
    border-radius: 0.5rem;
    border-top: 3px solid var(--secondary); /* Gold accent top border */
    transition: transform 0.3s ease;
}

.footer-contact-block:hover {
    transform: translateY(-3px);
}

.footer-contact-block h5 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary); /* Gold heading for card */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-block p {
    font-size: 0.8rem;
    color: #ccd5d1;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-contact-block p a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-contact-block p a:hover {
    color: var(--secondary);
}

.footer-email-block {
    grid-column: span 2;
    background: #132c20;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
}

.footer-email-block a {
    color: inherit;
    text-decoration: none;
}

.footer-email-block a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid #1c3d2e; /* Subtle dark green separator line */
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-contact-sections {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .footer-contact-sections {
        grid-template-columns: 1fr;
    }
    .footer-email-block {
        grid-column: span 1;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #f4f7f5; /* Premium soft green tint for section separation */
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image-side {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-side:hover .about-img {
    transform: scale(1.04);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(27, 67, 50, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1rem 1.75rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border-bottom: 3px solid var(--secondary);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
    font-weight: 600;
}

.about-content-side .section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.about-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 700;
}

.about-tagline {
    font-family: var(--font-sans);
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.45;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
}

.about-partnership {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 2rem;
}

.product-range-container h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.product-range-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

.portfolio-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fcfcfc;
    padding: 1.15rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.portfolio-icon {
    font-size: 1.5rem;
    background: #f0f5f2;
    padding: 0.5rem;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portfolio-text h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.portfolio-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.about-footnote {
    font-size: 0.9rem;
    color: #555;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--secondary);
    line-height: 1.5;
}

/* Responsiveness for About Section */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-img {
        height: 400px;
    }
    
    .about-content-side h2 {
        font-size: 2.1rem;
    }
}

/* --- New Added Sections --- */

/* Certifications Section */
.certs-section {
    padding: 5rem 0;
    background-color: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--border);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-light);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.cert-card h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.cert-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

/* Footer Contact Restyling - Cleaned/Merged to main block */
.footer-bottom-links a {
    font-size: 0.85rem;
    color: #666 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a.active {
    color: var(--primary) !important;
    text-decoration: underline;
}

/* Policy Pages Layout */
.policy-container h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.policy-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-container li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0.5rem;
}