/* Products Carousel Styles */
.products-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.products-carousel .swiper-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.products-carousel .swiper-slide {
    text-align: center;
    width: 300px;
    padding: 0 20px;
}

.products-carousel .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.products-carousel .swiper-slide:hover img {
    transform: scale(1.05);
}

.products-carousel .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
}

.products-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
}

.products-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background: #E4A853;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-carousel .swiper-slide {
        width: 200px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .products-carousel .swiper-slide {
        width: 150px;
        padding: 0 5px;
    }
}
