/* =========================================================
BO - Image Pagination
Shared visual contract for pagination dots placed on images.
The page slider is the reference: 8 px circles, 8 px center spacing,
0.55 inactive opacity and 1 active opacity.
========================================================= */

.bo-page-slider .swiper-pagination-bullet,
.bo-vehicle-listing .bo-listing-card__gallery-dot,
.bo-gallery-pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.25rem !important;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--bo-image-pagination-color, #fff);
    box-shadow: none;
    opacity: 0.55;
    transform: none;
    transition: opacity 0.16s ease;
}

.bo-page-slider .swiper-pagination-bullet-active,
.bo-vehicle-listing .bo-listing-card__gallery-dot.is-active,
.bo-gallery-pagination .swiper-pagination-bullet-active {
    background: var(--bo-image-pagination-color, #fff);
    opacity: 1;
}

.bo-page-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover,
.bo-vehicle-listing .bo-listing-card__gallery-dot:not(.is-active):hover,
.bo-gallery-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    opacity: 0.8;
}

.bo-page-slider .swiper-pagination-bullet:focus-visible,
.bo-vehicle-listing .bo-listing-card__gallery-dot:focus-visible,
.bo-gallery-pagination .swiper-pagination-bullet:focus-visible {
    outline: 2px solid var(--bo-image-pagination-color, #fff);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .bo-page-slider .swiper-pagination-bullet,
    .bo-vehicle-listing .bo-listing-card__gallery-dot,
    .bo-gallery-pagination .swiper-pagination-bullet {
        transition: none;
    }
}
