/********************************************
 * CaniGuide – Carousel Styles
 * Styles Swiper génériques – chargés sur toutes les pages
 * Utilisé sur : homepage, fiches races, et toute future page
 ********************************************/

/* ============================================================
   WRAPPER SWIPER – RACE
   Centré, avec padding pour les flèches et la pagination
============================================================ */

.race-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 50px 50px;
    position: relative;
    overflow: hidden;
}

.race-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.race-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* ============================================================
   BOUTONS NAVIGATION
   Style unifié pour toutes les pages
============================================================ */

.race-swiper .swiper-button-prev,
.race-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(69, 45, 22, 0.9);
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.25s ease;
}

.race-swiper .swiper-button-prev::after,
.race-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

.race-swiper .swiper-button-prev {
    left: 10px;
}

.race-swiper .swiper-button-next {
    right: 10px;
}

.race-swiper .swiper-button-prev:hover,
.race-swiper .swiper-button-next:hover {
    background: rgba(234, 125, 31, 0.95);
    transform: scale(1.1);
}

/* ============================================================
   PAGINATION – DOTS
============================================================ */

.race-swiper .swiper-pagination {
    bottom: 10px !important;
}

.race-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #C7C7C7;
    opacity: 1;
    transition: all 0.25s ease;
}

.race-swiper .swiper-pagination-bullet-active {
    background: #EA7D1F;
    transform: scale(1.3);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 768px) {

    .race-swiper {
        padding: 16px 10px 50px;
    }

    /* Flèches masquées sur mobile – navigation au touch */
    .race-swiper .swiper-button-prev,
    .race-swiper .swiper-button-next {
        display: none !important;
    }

    .race-swiper .swiper-pagination {
        display: block !important;
    }
}