﻿.product-carousel-section {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 25s linear infinite;
}

.product-card {
    flex: 0 0 250px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

    .product-card:hover {
        transform: scale(1.05);
    }

.img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
    color: #222;
}

.product-card p {
    font-size: 14px;
    color: #555;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
