/* SmartSwiper (offline) minimal styling */

.smart-swiper,
.swiper,
.swiper-container {
  overflow: hidden;
}

.smart-swiper-wrapper,
.swiper-wrapper {
  display: flex;
  will-change: transform;
  transition: transform 350ms ease;
}

.smart-swiper-slide,
.swiper-slide {
  flex: 0 0 auto;
}

.smart-swiper-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.smart-swiper-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(148, 163, 184, 0.6); /* slate-400 */
  cursor: pointer;
}

.smart-swiper-bullet.is-active {
  background: rgba(99, 102, 241, 1); /* indigo-500 */
}

