/**
 * Mobile Slider
 */

.wetheme-mobile-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.wetheme-mobile-slider .swiper-container {
    width: 100%;
    height: 100%;
}

.wetheme-mobile-slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wetheme-mobile-slider .slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.wetheme-mobile-slider .slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wetheme-mobile-slider .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wetheme-mobile-slider .slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.wetheme-mobile-slider .slide-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pagination */
.wetheme-mobile-slider .swiper-pagination {
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.wetheme-mobile-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.wetheme-mobile-slider .swiper-pagination-bullet-active {
    background: #f7b401;
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .wetheme-mobile-slider {
        border-radius: 10px;
    }
    
    .wetheme-mobile-slider .swiper-pagination {
        bottom: 12px;
        gap: 6px;
    }
    
    .wetheme-mobile-slider .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
    
    .wetheme-mobile-slider .swiper-pagination-bullet-active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .wetheme-mobile-slider {
        border-radius: 8px;
    }
    
    .wetheme-mobile-slider .swiper-pagination {
        bottom: 10px;
        gap: 5px;
    }
    
    .wetheme-mobile-slider .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
    }
    
    .wetheme-mobile-slider .swiper-pagination-bullet-active {
        width: 18px;
    }
}

