.hero-slider {
  width: 100%;
  position: relative;
  max-width: 1200px;
  margin: 4rem auto;
}

.hero-slider .swiper {
  width: 100%;
  height: 200px;
}

.hero-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Навигация - стрелки */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--accent-color);
  background-color: rgba(28, 28, 27, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 700;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
  transform: scale(1.1);
}

/* Пагинация - точки */
.hero-slider .swiper-pagination {
  bottom: 20px !important;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all var(--transition-fast);
}

.hero-slider .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 30px;
  border-radius: 6px;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .hero-slider .swiper {
    height: 400px;
  }
  
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .hero-slider .swiper-button-next:after,
  .hero-slider .swiper-button-prev:after {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-slider .swiper {
    height: 300px;
    min-height: 200px;
  }
  
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
    display: none; /* Скрываем стрелки на мобильных */
  }
  
  .hero-slider .swiper-pagination {
    bottom: 10px !important;
  }
  
  .hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  
  .hero-slider .swiper-pagination-bullet-active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .hero-slider .swiper {
    height:120px;
    min-height: 120px;
  }
}
