:root {
  --banner-navigation-offset: 10px;
}

.keshiou-carousel-section .swiper-pagination-bullet {
  --bullet-size: 10px;
  width: var(--bullet-size);
  height: var(--bullet-size);
  background: rgba(255, 255, 255, 1);
  opacity: 1 !important;
  margin: 0 15px !important;
}

.swiper-pagination-bullet-active {
  transform: scale(1.6);
  background-color: var(--primary-color) !important;
}

.swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: var(--banner-navigation-offset);
}

.swiper-pagination {
  position: relative !important;
  width: auto !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none; /* Hide default arrows */
}

.swiper-button-lock {
  display: inline-block !important;
}
.swiper-button-prev,
.swiper-button-next {
  position: relative !important;
  width: 11px !important;
  height: 11px !important;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  opacity: 1 !important;
  cursor: pointer;
  border-bottom: 10px solid rgba(217, 217, 217, 1); /* Triangle color */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  border-bottom-color: var(
    --primary-color
  ) !important; /* Change color on hover */
}

.swiper-button-prev {
  margin-right: 50px;
  transform: rotate(-90deg) translateY(-50%) !important;
}

.swiper-button-next {
  margin-left: 50px;
  transform: rotate(90deg) translateY(-50%) !important;
}
