/**
 * New Products Carousel Styles
 */

.new-products-carousel {
    position: relative;
    padding: 0 50px;
}

.new-products-carousel .swiper-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

.new-products-carousel .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.new-products-carousel .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.new-products-carousel .swiper-slide > article {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Navigation Arrows */
.new-products-carousel .swiper-button-prev,
.new-products-carousel .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #333;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-products-carousel .swiper-button-prev:hover,
.new-products-carousel .swiper-button-next:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.new-products-carousel .swiper-button-prev {
    left: 0;
}

.new-products-carousel .swiper-button-next {
    right: 0;
}

.new-products-carousel .swiper-button-prev::after,
.new-products-carousel .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

.new-products-carousel .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Pagination Dots */
.new-products-carousel .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.new-products-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.new-products-carousel .swiper-pagination-bullet-active {
    background-color: #333;
    width: 12px;
    height: 12px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .new-products-carousel {
        padding: 0 40px;
    }
    
    .new-products-carousel .swiper-button-prev,
    .new-products-carousel .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .new-products-carousel .swiper-button-prev::after,
    .new-products-carousel .swiper-button-next::after {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .new-products-carousel {
        padding: 0 30px;
    }
    
    .new-products-carousel .swiper-button-prev,
    .new-products-carousel .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    
    .new-products-carousel .swiper-button-prev::after,
    .new-products-carousel .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .new-products-carousel {
        padding: 0 25px;
    }
}
