﻿.seeds-carousel-section {
    padding: 50px 0;
    background: #f9f9f9;
}

    .seeds-carousel-section .section-heading {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: #2b3a42;
    }

/* Carousel Container */
.seeds-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Track for Auto Scroll */
.seeds-track {
    display: flex;
    gap: 30px;
    animation: scrollLeft 16s linear infinite; /* speed control */
}

/* Product Cards */
.seed-card {
    flex: 0 0 auto;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .seed-card:hover {
        transform: scale(1.05);
    }

    /* Product Images */
    .seed-card img {
        width: 100%;
        max-height: 280px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    /* Text */
    .seed-card h5 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .seed-card p {
        font-size: 1rem;
        color: #555;
    }

/* Auto Scroll Keyframes */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
