/* ==========================
   GINGER PRODUCT SECTION
========================== */
.ginger-product-section {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.ginger-product-section .product-image img {
    width: 100%;
    max-width: 550px; /* width increased */
    max-height: 400px; /* height reduced for content balance */
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: 0.5s ease;
}

.ginger-product-section .product-image img:hover {
    transform: scale(1.05);
}

.ginger-product-section .product-content {
    padding-left: 30px; /* small gap */
}

@media (max-width: 991px) {
    .ginger-product-section .product-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }
}

.ginger-product-section .product-tag {
    background: #80cbc4;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.ginger-product-section .product-title {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color: #333;
}

.ginger-product-section .product-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.ginger-product-section .btn-primary {
    background: #80cbc4;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    transition: 0.4s;
}

.ginger-product-section .btn-primary:hover {
    background: #4db6ac;
    transform: translateY(-3px);
}

/* ==========================
   GINGER HIGHLIGHT SECTION
========================== */
.ginger-highlight-section {
    background: #ffffff;
    padding: 90px 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.ginger-highlight-section .highlight-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #546e7a;
}

.ginger-highlight-section .highlight-header p {
    max-width: 750px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.ginger-highlight-section .highlight-card {
    background: #fafafa;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.4s ease;
}

.ginger-highlight-section .highlight-card:hover {
    transform: translateY(-10px);
    background: #f2f2f2;
}

.ginger-highlight-section .highlight-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.ginger-highlight-section .highlight-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* ==========================
   GINGER VARIETIES SECTION
========================== */
.ginger-varieties-section {
    background: linear-gradient(to right, #f7f7f7, #ffffff);
    padding: 90px 0;
}

.ginger-varieties-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.ginger-varieties-section .col-md-4 {
    flex: 0 0 32%;
    display: flex;
}

.ginger-varieties-section .variety-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
}

.ginger-varieties-section .variety-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

.ginger-varieties-section .variety-card img {
    max-width: 180px; /* adjusted */
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.ginger-varieties-section .variety-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.ginger-varieties-section .variety-card p {
    text-align: center;
    flex-grow: 1;
    margin-bottom: 15px;
    color: #555;
}

.ginger-varieties-section .variety-cta {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #607d8b;
    transition: 0.3s;
}

.ginger-varieties-section .variety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    background: #f2f2f2;
}

.ginger-varieties-section .variety-card:hover .variety-cta {
    letter-spacing: 1px;
    color: #455a64;
}

/* ==========================
   GINGER BENEFITS SECTION
========================== */
.ginger-benefits-section {
    background: #f9f9f9;
    padding: 90px 0;
    text-align: center;
}

.ginger-benefits-section .benefit-box {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    transition: 0.3s ease;
}

.ginger-benefits-section .benefit-box:hover {
    background: #f2f2f2;
    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) {
    .ginger-product-section .product-content {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .ginger-varieties-section .col-md-4 {
        flex: 0 0 48%; /* 2 per row on tablets */
    }
}

@media (max-width: 768px) {
    .ginger-highlight-section .highlight-card,
    .ginger-varieties-section .variety-card,
    .ginger-benefits-section .benefit-box {
        text-align: center;
    }

    .ginger-highlight-section .highlight-header h2,
    .section-title {
        font-size: 26px;
    }

    .ginger-highlight-section .highlight-header p {
        font-size: 14px;
    }

    .ginger-varieties-section .row {
        flex-direction: column;
        gap: 20px; /* 1 per row on mobile */
    }
}