﻿/* ================================
   🌿 Pesticides Products Carousel
   ================================ */
.seeds-carousel-section {
    padding: 60px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

    .seeds-carousel-section .section-heading {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
        font-weight: 700;
        color: #2d572c;
    }

/* Carousel container */
.seeds-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track for scrolling */
.seeds-track {
    display: flex;
    gap: 20px;
    animation: scrollLeft 25s linear infinite;
}

/* Single product card */
.pesticide-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    width: 220px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

    .pesticide-card:hover {
        transform: translateY(-8px) scale(1.05);
    }

/* Image styling */
.image-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pesticide-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Title */
.product-brand-title {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin: 0;
}

/* Auto-scroll animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate for infinite loop (important!) */
.seeds-track::after {
    content: "";
    display: flex;
}
