/* ==========================
   ONION PRODUCT SECTION
========================== */
.onion-product-section {
    background-color: #f9f9f9;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.onion-product-section .product-image {
    text-align: center;
}

.onion-product-section .product-image img {
    width: 100%;
    max-width: 650px; /* IMAGE SIZE INCREASED */
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: 0.5s ease;
}

.onion-product-section .product-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}



.onion-product-section .product-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.onion-product-section .product-desc {
    font-size: 17px;
    line-height: 1.8;
}

/* Button */
.onion-product-section .btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8962c);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    transition: 0.4s ease;
}

.onion-product-section .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* ===============================
   PRODUCT HIGHLIGHT SECTION
=============================== */
.product-highlight-section {
    padding: 100px 0;
    background-color: #f4f6f8;
    text-align: center;
}

.product-highlight-section .highlight-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-highlight-section .highlight-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    flex: 1 1 260px;
    max-width: 300px;
    min-height: 330px; /* SAME HEIGHT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.product-highlight-section .highlight-box:hover {
    transform: translateY(-8px);
    background: #d0f0d0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* ===============================
   ONION VARIETIES SECTION
=============================== */
.features-area {
    padding: 90px 15px;
    background: #ffffff;
}

.features-area .section-title {
    font-size: 34px;
    text-align: center;
    margin-bottom: 50px;
}

/* Equal Height Cards */
.feature-card {
    display: flex;
}

.feature-card a.card {
    background: #f8f9fa;
    border-radius: 18px;
    padding: 40px 25px;
    width: 100%;
    min-height: 400px; /* SAME HEIGHT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.feature-card a.card:hover {
    transform: translateY(-8px);
    background: #e6f4ea;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* BIGGER VARIETY IMAGES */
.feature-card img {
    max-width: 220px; /* IMAGE SIZE INCREASED */
    width: 100%;
    margin-bottom: 20px;
}

.feature-card .card-title {
    font-size: 22px;
    font-weight: 600;
}

.feature-card .card-text {
    font-size: 15px;
    text-align: center;
}

/* ===============================
   USAGE SECTION
=============================== */
.usage-area {
    background: #f0fff5;
    padding: 90px 15px;
    text-align: center;
}

.usage-area .section-title {
    font-size: 34px;
    margin-bottom: 40px;
}

.usage-cards li {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    font-size: 17px;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.usage-cards li:hover {
    background: #28a74520;
}

/* ===============================
   FADE IN ANIMATION
=============================== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   MOBILE RESPONSIVE
=============================== */

@media (max-width: 991px) {

    .onion-product-section {
        text-align: center;
        padding: 70px 20px;
    }

    .onion-product-section .product-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .onion-product-section .product-title {
        font-size: 30px;
    }

    .onion-product-section .product-image img {
        max-width: 100%;
        margin: 0 auto;
    }

    .feature-card a.card {
        min-height: 350px;
    }
}

@media (max-width: 768px) {

    .product-highlight-section .highlight-box {
        max-width: 90%;
        min-height: auto;
    }

    .feature-card a.card {
        min-height: auto;
        padding: 30px 20px;
    }

    .feature-card img {
        max-width: 180px;
    }

    .section-title {
        font-size: 28px;
    }

    .usage-cards li {
        text-align: center;
    }
}

@media (max-width: 576px) {

    .onion-product-section .product-title {
        font-size: 26px;
    }

    .feature-card img {
        max-width: 160px;
    }

    .section-title {
        font-size: 24px;
    }
}