body{
    font-family:'Poppins',sans-serif;
    background-color:#ffffff;
}

/* ==========================
   CORIANDER PRODUCT SECTION
========================== */
.coriander-product-section {
    background: linear-gradient(to bottom, #fffdf4, #f9f7ed);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
   /* product image & content मध्ये कमी gap */
    flex-wrap: wrap;
}

.coriander-product-section .product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coriander-product-section .product-image img {
    width: 100%;
    max-width: 500px; /* uniform size vegetable प्रमाणे */
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.coriander-product-section .product-image img:hover {
    transform: scale(1.05);
}

.coriander-product-section .product-content {
    flex: 1;
   
    min-width: 250px;
}


.coriander-product-section .product-tag {
    background: linear-gradient(135deg, #8d6e63, #a1887f);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.coriander-product-section .product-title {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color:#333;
}

.coriander-product-section .product-desc {
    font-size: 15px;
    line-height: 1.7;
    color:#555;
}

.coriander-product-section .btn-primary {
    background: linear-gradient(135deg, #8d6e63, #a1887f);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    transition: 0.4s;
}

.coriander-product-section .btn-primary:hover {
    transform: translateY(-3px);
}

/* ===============================
   CORIANDER HIGHLIGHT SECTION
=============================== */
.coriander-highlight-section {
    background: linear-gradient(to right, #f7f3e8, #ffffff);
    padding: 90px 0;
}

.coriander-highlight-section .highlight-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.coriander-highlight-section .highlight-card:hover {
    transform: translateY(-10px);
    background: #f3e9d9;
}

.coriander-highlight-section .highlight-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.coriander-highlight-section .highlight-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color:#333;
}

/* ================================
   CORIANDER VARIETIES
================================ */
.coriander-varieties-section {
    background: linear-gradient(to right, #fbf9f3, #ffffff);
    padding: 90px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.coriander-varieties-section .variety-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.coriander-varieties-section .variety-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
    min-height: 380px; /* same height */
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coriander-varieties-section .variety-card img {
    max-width: 170px; /* uniform image size */
    height: 140px;
    object-fit: contain;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.coriander-varieties-section .variety-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color:#333;
}

.coriander-varieties-section .variety-card p {
    font-size: 15px;
    color:#555;
    flex-grow: 1;
}

.coriander-varieties-section .variety-cta {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #6d4c41;
    transition: 0.3s;
}

.coriander-varieties-section .variety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    background: #f3e9d9;
}

.coriander-varieties-section .variety-card:hover img {
    transform: scale(1.08);
}

.coriander-varieties-section .variety-card:hover .variety-cta {
    letter-spacing: 1px;
}

/* ================================
   CORIANDER BENEFITS
================================ */
.coriander-benefits-section {
    background: #f8f6f0;
    padding: 90px 0;
}

.coriander-benefits-section .benefit-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    transition: 0.3s ease;
    text-align: center;
}

.coriander-benefits-section .benefit-box:hover {
    background: #efe3d1;
    transform: translateY(-5px);
}

/* ================================
   FADE ANIMATION
================================ */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .coriander-product-section {
        flex-direction: column;
    }

    .coriander-product-section .product-content {
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .coriander-product-section .product-title {
        font-size: 26px;
    }

    .coriander-varieties-section .variety-card {
        min-height: auto;
        padding: 25px 15px;
    }

    .coriander-varieties-section .variety-card img {
        max-width: 150px;
        height: 120px;
    }

    .coriander-benefits-section .benefit-box {
        margin-bottom: 15px;
    }

    .coriander-highlight-section .highlight-card,
    .coriander-varieties-section .variety-card,
    .coriander-benefits-section .benefit-box {
        text-align: center;
    }

    .coriander-highlight-section .highlight-header h2 {
        font-size: 26px;
    }

    .coriander-highlight-section .highlight-header p {
        font-size: 14px;
    }
}