/* Mudeku Swiper Styles */
/* Basiert auf klak-swiper.css */

.mudeku-swiper {
    width: 100%;
    height: 100%;
}

.mudeku-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mudeku-swiper .swiper-button-next,
.mudeku-swiper .swiper-button-prev {
    color: #003893;
    background: rgba(255,255,255,0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mudeku-swiper .swiper-button-next:hover,
.mudeku-swiper .swiper-button-prev:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.mudeku-swiper .swiper-pagination-bullet {
    background: #003893;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.mudeku-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #003893;
    transform: scale(1.2);
}

.mudeku-swiper .swiper-pagination {
    position: static;
    margin-bottom: 10px;
}

/* Lazy Loading Styles */
.mudeku-swiper .swiper-lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.mudeku-swiper .swiper-lazy-loaded {
    opacity: 1;
}

.mudeku-swiper .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid #003893;
    border-radius: 50%;
    border-top-color: transparent;
    animation: swiper-preloader-spin 1s infinite linear;
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Touch und Keyboard Navigation */
.mudeku-swiper {
    touch-action: pan-y;
}

.mudeku-swiper .swiper-slide {
    touch-action: pan-y;
}

/* Accessibility */
.mudeku-swiper .swiper-button-next:focus,
.mudeku-swiper .swiper-button-prev:focus {
    outline: 2px solid #003893;
    outline-offset: 2px;
}

.mudeku-swiper .swiper-pagination-bullet:focus {
    outline: 2px solid #003893;
    outline-offset: 2px;
} 