/* Scoped Swiper carousel */

.swiper-craousel {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 12px;
}

.swiper-craousel .swiper {
    border-radius: 8px;
    overflow: hidden;
}

.swiper-craousel .swiper-slide {
    position: relative;
}

.swiper-craousel .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}


/* Dots overlay (bottom-center over image) */

.swiper-craousel .swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 14px;
    /* transform: translateX(-50%); */
    display: flex;
    justify-content: center;
    z-index: 99;
}

.swiper-craousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    opacity: 1;
    margin: 0 4px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.swiper-craousel .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.95);
}


/* Hide arrows (if not needed) */

.swiper-craousel .swiper-button-prev,
.swiper-craousel .swiper-button-next {
    display: none !important;
}

@media (min-width: 768px) {
    .swiper-craousel {
        padding: 18px;
    }
}