/* Mobil görünümde alt kategori stilleri */

/* Swiper navigasyon ve pagination stilleri */
.tf-sw-categories .swiper-pagination {
    position: relative;
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.tf-sw-categories .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    opacity: 0.5;
    margin: 0 4px;
}

.tf-sw-categories .swiper-pagination-bullet-active {
    background-color: var(--primary);
    opacity: 1;
}

.tf-sw-categories .swiper-button-next,
.tf-sw-categories .swiper-button-prev {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.8);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tf-sw-categories .swiper-button-next:after,
.tf-sw-categories .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

/* Mobil görünümde alt kategori resim boyutları */
@media (max-width: 767px) {
    .collection-circle .img-style {
        max-width: 90px;
        max-height: 90px;
        margin: 0 auto;
    }
    
    .collection-circle .collection-content {
        margin-top: 5px;
    }
    
    .collection-circle .collection-content .cls-title .text {
        font-size: 11px;
        line-height: 1.2;
    }
    
    /* Swiper boşluk ayarları */
    .tf-sw-categories .swiper-slide {
        padding: 0 2px;
    }
    
    /* Kaydırma göstergesi için ek stil */
    .tf-sw-categories:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background-color: var(--primary);
        border-radius: 2px;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            opacity: 0.3;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0.3;
        }
    }
}