@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@400;500;600;700&display=swap');


:root {
    --primary-green: #2E7D32;
    --primary-light: #4caf50;
    --light-blue: #deebd1;
    --light-cream: #deebd1;

    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --gray-bg: #faefda;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 30px;
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-wrapper {
        order: -1;

    }
}

.section {
    padding: 40px 0;
}

.section-bg {
    background-color: transparent;

}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}


.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.header {
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}


.header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;

    width: auto;
}

.nav-menu {
    display: flex;
    gap: 45px;

}

.nav-link {
    font-weight: 600;
    font-size: 1.1rem;

    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}


.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-green);
}


.hero {
    margin-top: 70px;

    height: 85vh;
    background-color: var(--light-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 12px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}


.explore-categories-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    padding: 10px 0px 30px 0px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
}

.category-item .img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 140px;
    border-radius: 12px;

    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid transparent;
}

.category-item:hover .img-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item span {
    font-weight: 600;
    font-size: 1.05rem;
}



.category-filters-container {
    padding: 0px 8px;
    margin: 0 auto 40px;
    max-width: 1100px;
    background: var(--white);
    border-radius: 60px;
    /* Modern pill bar */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Soft premium elevation */
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.category-filters {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 5px 60px;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    /* Centered by default */
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 8px 5px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 1px;
    opacity: 0.6;
}

.filter-btn:hover {
    opacity: 1;
    color: var(--primary-green);
}

.filter-btn.active {
    opacity: 1;
    color: var(--primary-green);
}

/* Minimalist indicator line */
.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20%;
    width: 60%;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 20px;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.scroll-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.scroll-btn i {
    font-size: 1rem;
}

.left-btn {
    margin-right: -10px;
}

.right-btn {
    margin-left: -10px;
}

@media (max-width: 991px) {
    .category-filters {
        justify-content: flex-start;
        padding: 5px 50px;
    }
}

@media (max-width: 768px) {
    .category-filters-container {
        border-radius: 12px;
        padding: 0 4px;
        margin-bottom: 20px;
    }

    .category-filters {
        padding: 5px 40px;
        gap: 20px;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 4px 2px;
    }

    .scroll-btn {
        width: 32px;
        height: 32px;
    }

    .scroll-btn i {
        font-size: 0.8rem;
    }
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.product-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 10px 10px 30px 10px;
    margin: 0 50px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    align-items: stretch;
    flex: 1;
    scroll-behavior: smooth;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slider .product-card {
    flex: 0 0 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    scroll-snap-align: start;
    height: auto;
}

@media (max-width: 991px) {
    .product-slider .product-card {
        flex: 0 0 calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .product-slider .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--primary-green);
    color: var(--white);
}

.slider-arrow.left-arrow {
    left: 0;
}

.slider-arrow.right-arrow {
    right: 0;
}

@media (max-width: 768px) {
    .slider-arrow.left-arrow {
        left: -10px;
    }

    .slider-arrow.right-arrow {
        right: -10px;
    }

    .product-slider {
        margin: 0 40px;
    }
}

.category-slider-section {
    margin-bottom: 50px;
}

.category-slider-section h3.category-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--primary-green);
}

.product-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;

    height: auto;
    max-height: 250px;
    object-fit: contain;

    background: transparent;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-actions-container {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.variant-select {
    flex: 1;
    min-width: 100px;
    height: 38px;
    padding: 0 4px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 0.85rem;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0;
    outline: none;
}

.add-to-cart-btn {
    flex: 1;
    height: 38px;
    min-width: 80px;
    padding: 0 10px;
    font-size: 0.85rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-sizing: border-box;
    margin: 0;
    border: none;
}

@media (max-width: 500px) {
    .product-actions-container {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        align-items: stretch;
    }

    .qty-control {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        width: 80px;
    }

    .variant-select {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        width: 100%;
        min-width: 0;
    }

    .add-to-cart-btn {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        width: 100%;
    }

    .product-card {
        padding: 12px;
    }

    .product-card h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .product-card p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .qty-btn {
        width: 25px;
    }

    .qty-input {
        width: 30px;
    }
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 38px;
    width: 90px;
    overflow: hidden;
    background: var(--white);
}

.qty-btn {
    width: 30px;
    height: 100%;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-input {
    width: 30px;
    height: 100%;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* --- How It Works Section --- */
.how-it-works-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hiw-left {
    flex: 1;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.hiw-icon-large {
    background: var(--primary-green);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(140, 198, 63, 0.3);
}

.hiw-text-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.hiw-text-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.hiw-divider {
    width: 1px;
    background: repeating-linear-gradient(to bottom, transparent, transparent 4px, #e0e0e0 4px, #e0e0e0 8px);
    height: 250px;
}

.hiw-right {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hiw-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hiw-feature-icon {
    width: 45px;
    height: 45px;
    background: #f4f9f1;
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hiw-feature p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}


.farm-to-home-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.fth-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.fth-square {
    width: 320px;
    height: 230px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.fth-step:hover .fth-square {
    transform: scale(1.05);
}

.fth-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fth-step p {
    font-weight: 600;
    color: var(--text-dark);
    max-width: 280px;
    font-size: 1.15rem;
}

.fth-line {
    flex: 0.5;
    height: 2px;
    background: repeating-linear-gradient(to right, transparent, transparent 5px, var(--primary-green) 5px, var(--primary-green) 10px);
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-box {
    padding: 20px;
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* --- Delivery Area Modern Banner --- */
.delivery-banner-container {
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-banner {
    background-color: #1b4332;
    /* Deep forest green */
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.delivery-banner-left {
    flex: 1;
}

.delivery-banner-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.delivery-banner-title i {
    color: #ffc107;
    /* Yellow/Gold icon */
}

.delivery-banner-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.accent-text {
    color: #ffc107;
    font-weight: 700;
}

.delivery-banner-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.timing-card {
    background: #f8f9fa;
    /* Light grey/off-white */
    padding: 30px;
    border-radius: 18px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timing-inner-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.timing-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1b4332;
    letter-spacing: 1px;
}

.timing-line {
    flex: 1;
    height: 2px;
    background: #e9ecef;
}

.timing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timing-item {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f1f3f5;
    transition: transform 0.2s;
}

.timing-item:hover {
    transform: translateX(5px);
    border-color: #ffc107;
}

.timing-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.timing-icon.orange {
    color: #fd7e14;
    background: rgba(253, 126, 20, 0.1);
}

.timing-icon.blue {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
}

.timing-text {
    font-weight: 600;
    color: #343a40;
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .delivery-banner {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        gap: 40px;
    }

    .delivery-banner-title {
        justify-content: center;
        font-size: 2.22rem;
    }

    .delivery-banner-right {
        justify-content: center;
        width: 100%;
    }

    .timing-card {
        max-width: 100%;
    }
}

/* --- Testimonials Section --- */
.testimonials-heading {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.testimonials-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 3px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    opacity: 0.15;
    margin-bottom: 10px;
    display: block;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 10px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-tag {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}


.faq-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.faq-box {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.faq-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    background: var(--white);
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.faq-box.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;

}

.faq-box.active .faq-question i {
    transform: rotate(180deg);
}

.page-header {
    margin-top: 70px;
    padding: 80px 0;
    background-color: var(--light-blue);
    text-align: center;
}

.page-header h1 {
    color: var(--primary-green);
    font-size: 2.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info-card i {
    color: var(--primary-green);
    width: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}


.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-box h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-box p {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: var(--primary-green);
    background: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
}


@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .logo img {
        height: 60px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-right {
        gap: 10px;
        margin-left: auto;
        margin-right: 20px;
    }


    .nav-right .btn-primary {
        display: none !important;
    }


    .nav-right .btn-outline {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }

    .section {
        padding: 30px 0;

    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .hero {
        margin-top: 80px;
        height: 70vh;
    }

    .hero-content {
        padding: 25px;
        margin: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .explore-categories-grid {
        display: flex;

        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
    }

    .explore-categories-grid::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        min-width: 100px;
        scroll-snap-align: start;
    }

    .category-item .img-wrapper {
        width: 100px;
        height: 100px;
    }

    .category-item span {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    @media (max-width: 480px) {
        .hero-buttons {
            flex-direction: column;
        }

        .hero-buttons .btn {
            width: 100%;
        }
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        margin-top: 80px;
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .footer-container {
        gap: 30px;
    }


    .how-it-works-box {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .hiw-left {
        flex-direction: column;
        align-items: center;
    }

    .hiw-text-content h3,
    .hiw-text-content p {
        text-align: justify;
    }

    .hiw-right {
        text-align: left;
        width: 100%;
        margin-top: 20px;
    }

    .hiw-divider {
        width: 100%;
        height: 1px;
        background: repeating-linear-gradient(to right, transparent, transparent 4px, #e0e0e0 4px, #e0e0e0 8px);
    }

    .farm-to-home-flow {
        flex-direction: column;
        gap: 30px;
    }

    .fth-step {
        width: 100%;
    }

    .fth-square {
        width: 100%;
        height: auto;
        aspect-ratio: 320 / 230;
    }

    .fth-line {
        width: 2px;
        height: 50px;
        background: repeating-linear-gradient(to bottom, transparent, transparent 5px, var(--primary-green) 5px, var(--primary-green) 10px);
        margin-top: 0;
    }

    .delivery-banner {
        padding: 30px 20px;
        gap: 25px;
        border-radius: 16px;
        max-width: 90%;
        margin: 0 auto;
    }

    .delivery-banner-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .delivery-banner-subtitle {
        font-size: 1.1rem;
    }

    .timing-card {
        padding: 20px;
    }
}

/* --- About Page Redesign Styles --- */
.about-page-header {
    background: var(--light-cream);
    position: relative;
    overflow: hidden;
}

.header-subtitle {
    display: block;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.about-hero-card {
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.about-content-v2 {
    display: flex;
    flex-direction: column;
}

.premium-heading {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    width: fit-content;
}

.premium-para {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-image-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-stack {
    position: relative;
    width: 100%;
}

.main-about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-overlay-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #f0f0f0;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.image-overlay-card i {
    color: #FFC107;
    font-size: 1.2rem;
}

.image-overlay-card span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
}

.value-icon-wrapper {
    width: 65px;
    height: 65px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-green);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    background: var(--primary-green);
    color: var(--white);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.quality-promise-banner {
    background: var(--primary-green);
    padding: 40px 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.2);
}

.quality-icon {
    font-size: 3.5rem;
    opacity: 0.9;
}

.quality-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.quality-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .premium-heading {
        font-size: 2.2rem;
    }

    .about-hero-card {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-promise-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .about-hero-card {
        margin-top: -60px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-card {
        padding: 30px;
        border-radius: 20px;
        margin-top: -40px;
    }

    .premium-heading {
        font-size: 1.6rem;
    }

    .story-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .image-overlay-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        justify-content: center;
    }
}