/* Desire Gym Home Page Mobile Category Carousel CSS */

.mobile-carousel-wrapper {
    display: none;
    text-align: center;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

@media (max-width: 767px) {
    .mobile-carousel-wrapper {
        display: block;
    }
}

.mobile-category-swiper {
    width: auto;
    padding-bottom: 30px; 
    position: relative;
    margin: 0 auto;
}

.mobile-category-swiper .swiper-wrapper {
    transition-property: transform !important;
    transition-timing-function: ease-in-out !important;
}

.mobile-category-swiper .swiper-slide img {
    width: 335px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.mobile-category-swiper .swiper-pagination-bullet {
    background: #d3d3d3;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
}

.mobile-category-swiper .swiper-pagination-bullet-active {
    background: #cc0000; 
}