/* Container pagination */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 40px !important;
  position: relative !important;
  height: 24px !important;
}

/* Ligne de fond */
.pagination-line-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #333;
  transform: translateY(-50%);
  z-index: 0;
}

/* Ligne de progression */
.pagination-line-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #00B5FF, #C3FC12);
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.4s ease;
}

/* Bullet inactif */
.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #000000 !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  position: relative !important;
  z-index: 2 !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  outline: none !important;
}

/* Bullet actif — cercle avec anneau */
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 14px !important;
  height: 14px !important;
  background: #C3FC12 !important;
  outline: 2px solid #C3FC12 !important;
  outline-offset: 3px !important;
}