/* ===== SWIPER INTERBIKE ===== */

.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

/* ===== BOUTONS PREV/NEXT ===== */

.swiper-button-next,
.swiper-button-prev {
  color: #f7931e;
  background: rgba(10, 10, 10, 0.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(10, 10, 10, 0.9);
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev {
  left: 15px;
}

/* ===== PAGINATION (points) ===== */

.swiper-pagination {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #f7931e;
  width: 30px;
  border-radius: 5px;
}

/* ===== BANNIÈRE ===== */

.swiper-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.banner-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.3);
  z-index: 1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 32px;
    height: 32px;
    opacity: 0.8;
  }
}