﻿/* ==================== Insecticides Page Styles ==================== */
/* FINAL VERSION – Professional Catalog Layout */

/* Reset */
.insecticides-hero,
.insecticides-products,
.insecticides-container,
.insecticides-card,
.insecticides-hero *,
.insecticides-products * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body:has(.insecticides-hero) {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
}

/* =====================================================
   HERO SECTION
===================================================== */

.insecticides-hero {
    width: 100%;
    background-color: #eef2f0;
}

.insecticides-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    align-items: center;
}

.insecticides-hero__image {
    background: url('/Content/Images/farmer-pesticide1.jpg') center center no-repeat;
    background-size: contain;
    background-color: #e9efe8;
    padding: 40px;
    min-height: 520px;
}

.insecticides-hero__content {
    background: linear-gradient(135deg,#ffffff,#f8faf7);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
}

.insecticides-hero__text {
    max-width: 540px;
    margin: auto;
}

.insecticides-hero__badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #2b6e3c;
    background: rgba(43,110,60,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 18px;
}

.insecticides-hero__text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.insecticides-hero__text p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 30px;
}

/* Buttons */
.insecticides-btn {
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.insecticides-btn--primary {
    background: #2b6e3c;
    color: white;
    box-shadow: 0 6px 18px rgba(43,110,60,0.25);
}

.insecticides-btn--outline {
    background: transparent;
    border: 2px solid #2b6e3c;
    color: #2b6e3c;
}

/* =====================================================
   PRODUCTS SECTION
===================================================== */

.insecticides-products {
    padding: 70px 0;
    background: white;
}

.insecticides-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}

.insecticides-products__header {
    text-align: center;
    margin-bottom: 45px;
}

    .insecticides-products__header h2 {
        font-size: 2.6rem;
        font-weight: 700;
    }

    .insecticides-products__header p {
        color: #5a6e5a;
        font-size: 1.1rem;
    }

/* =====================================================
   GRID + EQUAL HEIGHT CARDS
===================================================== */

.insecticides-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.insecticides-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #edf2ea;
    box-shadow: 0 12px 26px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

    .insecticides-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 40px rgba(0,0,0,0.10);
    }

/* =====================================================
   IMAGE AREA — SAME SIZE EVERY CARD
===================================================== */

.insecticides-card__img {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: linear-gradient(180deg,#f7faf6,#edf3ea);
    border-bottom: 1px solid #eef2e6;
    overflow: hidden;
}

    /* Slight Premium Zoom */
    .insecticides-card__img img {
        max-width: 100%;
        max-height: 120%;
        object-fit: contain;
        transform: scale(1.05);
        transition: transform 0.35s ease;
        filter: drop-shadow(0 12px 18px rgba(0,0,0,0.10));
    }

/* Subtle hover zoom */
.insecticides-card:hover .insecticides-card__img img {
    transform: scale(1.10);
}

/* =====================================================
   CARD INFO (Equal Height)
===================================================== */

.insecticides-card__info {
    padding: 22px 18px 26px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insecticides-card__name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.insecticides-card__comp {
    font-size: 0.8rem;
    color: #2b6e3c;
    background: #e9f3e6;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 10px;
}

.insecticides-card__packing {
    font-size: 0.75rem;
    background: #fff4d8;
    padding: 6px 16px;
    border-radius: 30px;
    color: #a5721e;
    display: inline-block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
    .insecticides-hero__grid {
        grid-template-columns: 1fr;
    }

    .insecticides-hero__image {
        min-height: 360px;
        padding: 30px;
    }

    .insecticides-hero__content {
        text-align: center;
        padding: 40px 24px;
    }

    .insecticides-hero__text h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .insecticides-products {
        padding: 50px 0;
    }

    .insecticides-card__img {
        height: 240px;
        padding: 20px;
    }

    .insecticides-products__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .insecticides-hero__text h1 {
        font-size: 1.8rem;
    }
}
