/* Carrousel global – fond et alignements identiques partout */

/* Swiper et variantes */
.swiper,
.swiper-wrapper,
.swiper-slide {
  background: transparent !important;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Flèches Swiper – style identique à la page Maison à jeux (roses, sans fond) */
.swiper-button-prev,
.swiper-button-next {
  width: 35px !important;
  height: 35px !important;
  border-radius: 50%;
  background: transparent !important;
  color: #ff6b9d !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: transparent !important;
  color: #e84c83 !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* Pagination bullets – blanches, actives pleines */
.swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1 !important;
}

/* Harmonisation des carrousels maison (non Swiper) */
.photo-carousel,
.carousel-slide {
  background: transparent !important;
}

/* Carrousel custom (.carousel) harmonisé */
.carousel { background: transparent; }
.carousel .nav button {
  background: rgba(255, 255, 255, 0.75);
  color: #333;
  border: none;
  border-radius: 999px;
  padding: .5rem .8rem;
  backdrop-filter: saturate(120%) blur(2px);
}
.carousel .nav button:hover { background: rgba(255, 255, 255, 0.92); }

/* Boutons flèches communs (identiques à l’accueil) */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.75);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: saturate(120%) blur(2px);
}
.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }
.carousel-arrow:hover { background: rgba(255, 255, 255, 0.92); }
