body {
  overflow-x: hidden;
}

.custom-suite-carousel {
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
}

.custom-suite-carousel .swiper-wrapper {
  padding-right: 5vw;
  box-sizing: content-box;
}

.custom-suite-carousel .swiper-slide {
  transition: transform 0.2s, opacity 0.2s;
  opacity: 1;
}

/* Hover scale effect (non-peek) */
.custom-suite-carousel .swiper-slide:hover {
  transform: scale(1.02);
}

/* JS-applied fade class for peek slide */
.custom-suite-carousel .swiper-slide.is-peek {
  opacity: 0.4;
}

/* Pagination container */
.custom-swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 70px;
}

/* Bar-style pagination bullets */
.custom-swiper-pagination .swiper-pagination-bullet {
  width: 60px !important;
  height: 2px !important;
  background: #d0d0d0 !important;
  border-radius: 1px !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.custom-swiper-pagination .swiper-pagination-bullet-active {
  width: 80px !important;
  height: 2px !important;
  background: black !important;
  border-radius: 1px !important;
}

/* Mobile-specific pagination sizing */
@media (max-width: 767px) {
  .custom-swiper-pagination {
    margin-top: 40px !important;
  }

  .custom-swiper-pagination .swiper-pagination-bullet {
    width: 35px !important;
    height: 2px !important;
  }

  .custom-swiper-pagination .swiper-pagination-bullet-active {
    width: 55px !important;
    height: 2px !important;
  }
}