/* ============================================
   SWIPER CAROUSEL - Jednotné nastavení
   ============================================ */

/* Základní styl Swiper kontejneru */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- PAGINATION (tečky) --- */
.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #EC6839;
    transform: scale(1.2);
}

/* --- NAVIGATION (šipky) --- */
.swiper-button-next,
.swiper-button-prev {
    color: #EC6839;
    width: 44px;
    height: 44px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

/* Skrýt šipky na mobilu pokud není potřeba */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* --- AUTOPLAY PAUSE ON HOVER --- */
.swiper:hover .swiper-autoplay {
    /* Automaticky se pozastaví při hover */
}

/* --- RESPONSIVE SPACING --- */
@media (max-width: 768px) {
    .swiper-pagination {
        margin-top: 15px !important;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
    }
}
