:root {
  --swiper-theme-color: var(--main-color);
  --swiper-pagination-bottom: 20px;
}

.banner-swiper {
  width: 100%;
  height: 400px;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  gap: 5x;
}
.swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  border-radius: 3px;
  background: var(--main-color);
  opacity: 1;
  margin: 0 3px !important;
  transition: background 0.3s;
}
.swiper-pagination-bullet-active {
  width: 40px;
  background: var(--accent-color);
}

/* Mobile styles */
@media (max-width: 800px) {
  .banner-swiper {
    height: 180px;
  }
}
