/* ==========================================================================
   Swiper / banner slider — minimal styles (kept for parity with brand site)
   ========================================================================== */
.swiper {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.swiper-wrapper {
  display: flex;
  transition-property: transform;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background .15s ease;
}
.swiper-pagination-bullet-active {
  background: #e63950;
  width: 22px;
  border-radius: 4px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  cursor: pointer;
  z-index: 5;
}
.swiper-button-prev { left: 8px; }
.swiper-button-next { right: 8px; }
.swiper-button-disabled { opacity: .35; cursor: default; }
