/* ===== REVIEWS SECTION ===== */
.section--reviews {
  padding-top: clamp(50px, 7vh, 90px);
  padding-bottom: clamp(50px, 7vh, 90px);
  overflow: hidden;
}

.section--reviews .section-header {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section--reviews .section-label {
  display: inline-block;
}

.section--reviews .section-subtitle {
  margin-top: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-carousel {
  position: relative;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: clamp(16px, 1.6vw, 22px);
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 24px clamp(20px, 5vw, 80px);
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 380px);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  scroll-snap-align: center;
  transition: box-shadow 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
}

.review-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.review-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.3s var(--ease-expo),
              color 0.3s var(--ease-expo),
              box-shadow 0.3s var(--ease-expo);
  z-index: 2;
}
.reviews-arrow:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(58, 143, 163, 0.3);
}
.reviews-arrow svg {
  width: 20px;
  height: 20px;
}
.reviews-arrow--prev { left: clamp(8px, 2vw, 24px); }
.reviews-arrow--next { right: clamp(8px, 2vw, 24px); }

.reviews-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .reviews-arrow {
    width: 40px;
    height: 40px;
  }
  .reviews-arrow svg {
    width: 18px;
    height: 18px;
  }
  .review-card {
    width: clamp(240px, 75vw, 320px);
  }
}
