/* Product Slider Styles */

/* Latest Section Slider */
.latest__items.swiper {
    overflow: visible;
}

.latest__items .swiper-wrapper {
    display: flex;
}

.latest__items .swiper-slide {
    height: auto;
}

/* Also Section Slider */
.also__items.swiper {
    overflow: visible;
}

.also__items .swiper-wrapper {
    display: flex;
}

.also__items .swiper-slide {
    height: auto;
}

/* Pagination Styles */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    display: block;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #FFC107;
    opacity: 1;
}

@media screen and (max-width: 1100px) {
    .also__item--desc {
        min-height: 126px;
    }
}

/* Desktop - Hide pagination and show grid */
@media screen and (min-width: 1024px) {
    .swiper-pagination {
        display: none !important;
    }

    .latest__items.swiper,
    .also__items.swiper {
        overflow: visible;
    }

    .latest__items .swiper-wrapper,
    .also__items .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        transform: none !important;
    }

    .latest__items .swiper-slide,
    .also__items .swiper-slide {
        width: auto !important;
        margin: 0 !important;
    }


}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {

    .latest__items.swiper,
    .also__items.swiper {
        overflow: hidden;
    }

    .also__item--desc {
        min-height: 101px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .latest__items.swiper,
    .also__items.swiper {
        overflow: hidden;
    }

    /* .also__item--desc {
        min-height: 101px;
    } */

    .also__item--desc {
        min-height: 0;
    }
}