/* =================================================
   OIL SEEDS PAGE
================================================= */


/* =================================================
   CATEGORY HERO
================================================= */

.category-hero {

    position: relative;

    height: 55vh;

    min-height: 400px;

    overflow: hidden;

}


.category-hero img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.category-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.15)
        );

}


.category-hero-content {

    position: absolute;

    left: 8%;

    top: 50%;

    transform: translateY(-50%);

    color: white;

}


.category-hero-content > p {

    color: #b8e69f;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 15px;

}


.category-hero-content h1 {

    font-size: clamp(48px, 6vw, 75px);

    line-height: 1;

    margin-bottom: 25px;

}


.breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

}


.breadcrumb a {

    color: white;

    text-decoration: none;

}


.breadcrumb span {

    opacity: 0.75;

}



/* =================================================
   PRODUCTS SECTION
================================================= */

.products-section {

    padding: 100px 8%;

    background: #f7f9f5;

}


/* =================================================
   HEADING
================================================= */

.products-heading {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}


.products-heading h2 {

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.15;

    color: #222;

}


.section-label {

    color: #4c9a2a;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.heading-line {

    width: 60px;

    height: 3px;

    background: #4c9a2a;

    margin: 20px auto;

}



/* =================================================
   PRODUCT GRID
================================================= */

.products-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}



/* =================================================
   PRODUCT CARD
================================================= */

.product-card {
    margin: 0;
    padding: 0;
    background:transparent;
    border:none;
    overflow: hidden;
    transition: 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin:0;
    padding:0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    display: block;
    margin: 0;
    padding:0;
    
}

.product-card:hover .product-image img {
    transform: scale(1.00025);
}






/* =================================================
   ENQUIRY SECTION
================================================= */

.category-cta {

    padding: 90px 8%;

    background: #315f20;

    text-align: center;

    color: white;

}


.category-cta-content {

    max-width: 700px;

    margin: auto;

}


.category-cta-content > p:first-child {

    color: #c4e8af;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.category-cta h2 {

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.15;

    margin: 15px 0;

}


.category-cta h2 span {

    color: #c1e99f;

}


.category-cta-content > p:not(:first-child) {

    line-height: 1.7;

    opacity: 0.85;

    margin-bottom: 30px;

}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 28px;

    background: white;

    color: #315f20;

    text-decoration: none;

    font-weight: 700;

}



/* =================================================
   FOOTER
================================================= */

.footer {

    background: #172214;

    color: white;

}


.footer-container {

    max-width: 1200px;

    margin: auto;

    padding: 70px 8%;

    display: grid;

    grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;

    gap: 45px;

}


.footer-logo {

    width: 150px;

    margin-bottom: 20px;

}


.footer-column > p {

    color: #aeb8a8;

    font-size: 14px;

    line-height: 1.7;

}


.footer-column h3 {

    font-size: 17px;

    margin-bottom: 20px;

}


.footer-column > a {

    display: block;

    color: #aeb8a8;

    text-decoration: none;

    font-size: 14px;

    margin-bottom: 12px;

}


.footer-column p i {

    color: #8fd36f;

    margin-right: 8px;

}




.footer-bottom {

    padding: 20px 8%;

    border-top: 1px solid #293927;

    text-align: center;

}


.footer-bottom p {

    color: #8d9887;

    font-size: 13px;

}



/* =================================================
   RESPONSIVE
================================================= */

@media (max-width: 1000px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .footer-container {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .category-hero {

        height: 50vh;

        min-height: 350px;

    }


    .category-hero-content {

        left: 6%;

    }


    .products-section {

        padding: 70px 6%;

    }


    .products-grid {

        grid-template-columns: 1fr;

    }


    .footer-container {

        grid-template-columns: 1fr;

        padding: 55px 6%;

    }

}