/* ==========================
   BANANA PRODUCT SECTION
========================== */
.banana-product-section {
    background: linear-gradient(to bottom, #fffdf7, #f9f5ee);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

/* ==========================
   BANANA PRODUCT SECTION
========================== */
.banana-product-section .product-image img {
    width: 100%;
    max-width: 550px; /* पूर्वी 650px होते, कमी केले */
    max-height: 400px; /* पूर्वी 650px/auto, कमी करून content प्रमाणे */
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    object-fit: cover; /* Aspect ratio ठेवा, stretch नाही */
    transition: 0.5s ease;
}

.banana-product-section .product-image img:hover {
    transform: scale(1.05);
}

.banana-product-section .product-content {
    padding-left: 30px; /* GAP REDUCED */
}

.banana-product-section .product-tag {
    background: linear-gradient(135deg, #f4b400, #fdd835);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.banana-product-section .product-title {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color:#a67c00;
}

.banana-product-section .product-desc {
    font-size: 15px;
    line-height: 1.8;
    color:#555;
}

.banana-product-section .btn-primary {
    background: linear-gradient(135deg, #f4b400, #fdd835);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    transition: 0.4s;
}

.banana-product-section .btn-primary:hover {
    transform: translateY(-3px);
}

/* ===============================
   BANANA HIGHLIGHT SECTION
=============================== */
.banana-highlight-section {
    background: linear-gradient(to right, #fff8e1, #ffffff);
    padding: 90px 0;
}

.banana-highlight-section .highlight-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #f9a825;
}

.banana-highlight-section .highlight-header p {
    max-width: 750px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.banana-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%;
    text-align: center;
}

.banana-highlight-section .highlight-card:hover {
    transform: translateY(-10px);
    background: #fff8e1;
}

.banana-highlight-section .highlight-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.banana-highlight-section .highlight-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* ================================
   BANANA VARIETIES
================================ */
.banana-varieties-section {
    background: linear-gradient(to right, #fff8e1, #ffffff);
    padding: 90px 0;
}

.banana-varieties-section .variety-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.banana-varieties-section .variety-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    transition: 0.4s ease;
    height: 100%;
    min-height: 380px; /* ALL BOXES SAME SIZE */
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banana-varieties-section .variety-card img {
    max-width: 200px; /* IMAGE SIZE INCREASED */
    width: 100%;
    margin: 0 auto 20px;
}

.banana-varieties-section .variety-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color:#a67c00;
}

.banana-varieties-section .variety-card p {
    font-size: 15px;
    color:#555;
}

.banana-varieties-section .variety-card:hover {
    background: #fff3c4;
    transform: translateY(-8px);
}

.banana-varieties-section .variety-cta {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #f9a825;
    transition: 0.3s;
}

.banana-varieties-section .variety-card:hover .variety-cta {
    letter-spacing: 1px;
}

/* ================================
   BANANA BENEFITS
================================ */
.banana-benefits-section {
    background: #fffaf1;
    padding: 90px 0;
}

.banana-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;
}

.banana-benefits-section .benefit-box:hover {
    background: #fff3c4;
    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) {
    .banana-product-section .product-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .banana-product-section .product-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {

    .banana-product-section {
        padding: 60px 0;
        text-align: center;
    }

    .banana-product-section .product-title {
        font-size: 26px;
    }

    .banana-highlight-section .highlight-header h2,
    .section-title {
        font-size: 24px;
    }

    .banana-highlight-section .highlight-header p {
        font-size: 14px;
    }

    .banana-varieties-section .variety-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .banana-varieties-section .variety-card img {
        max-width: 180px;
    }

    .banana-benefits-section .benefit-box {
        margin-bottom: 15px;
    }
}