/* Slider component styles (for both Swiper and Splide) */

/* Swiper pagination styles */
.swiper-pagination-bullet {
  background-color: #e0e0e0;
  width: 15px;
  height: 15px;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #4a4a4a;
}

/* Splide styles */
.splide__pagination__page {
  background-color: #e0e0e0;
  width: 15px;
  height: 15px;
  opacity: 1;
  transition: background-color 0.3s ease;
  margin: 0 5px;
}

.splide__pagination__page.is-active {
  background-color: #4a4a4a;
  transform: scale(1);
}

.splide__pagination {
  bottom: 20px;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
}

/* Additional Splide styling for proper layout */
.splide__track {
  width: 100%;
  overflow: hidden;
}

.splide__list {
  display: flex;
  width: 100%;
}

.splide__slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splide__slide > div {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.firstSwiper {
  position: relative;
  padding-bottom: 50px;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}

.firstSwiper .splide__track {
  overflow: visible;
}

.firstSwiper .splide__pagination {
  bottom: 0;
}

.custom-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 10;
  cursor: pointer;
}

.custom-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  z-index: 10;
  cursor: pointer;
}

/* Custom arrow styles */
.custom-arrowSwiper {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.custom-arrowSwiper-left {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
