/* Swiper banner: fade slider layout only — no visual design changes */

.swiper--banner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.swiper--banner .swiper-wrapper {
    position: relative;
    width: 100%;
}

/* All slides are stacked; inactive ones hidden */
.swiper--banner .swiper-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

/* Active slide drives container height and is visible */
.swiper--banner .swiper-slide.swiper-slide-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Pagination dots */
.swiper--banner .swiper-pagination {
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.swiper--banner .swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.swiper--banner .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}
