/* Carousel-only styles - minimal CSS for Swiper functionality */

/* Swiper Carousel Styles */

.swiper-container {
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  transition-timing-function: ease-in-out;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

/* Pagination styles - only for swiper pagination */

.swiper-pagination {
  position: relative;
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  margin: 0 4px;
  cursor: pointer;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #3182ce;
}

/* Navigation buttons - only for swiper */

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  color: #3182ce;
  width: 44px;
  height: 44px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Ensure swiper doesn't interfere with other elements */

.swiper-container * {
  box-sizing: border-box;
}
