/* Reviews Section */
.reviews {
  background: var(--bg-secondary);
  padding: 60px 0;
}

.reviews-carousel {
  margin: 48px auto;
  position: relative;
  max-width: 600px;
}

.reviews-swiper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: 600px;
  background: var(--surface);
}

.swiper-slide {
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  width: 100% !important;
  flex-shrink: 0;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--text);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1.2rem;
}

/* Pagination */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--text-secondary);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

/* Адаптивна висота */
@media (max-width: 1024px) {
  .reviews-swiper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 40px 0;
  }
  .reviews-swiper {
    height: 400px;
  }
  .reviews-carousel {
    margin: 32px auto;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding: 32px 0;
  }
  .reviews-swiper {
    height: 300px;
  }
  .reviews-carousel {
    margin: 24px auto;
  }
}
