/* ===== TESTIMONIALS ===== */

.testimonials {
  padding: 120px 60px;
  background: var(--cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header .section-tag {
  display: inline-flex;
  margin-bottom: 20px;
}

.testimonials-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 14px;
  align-items: center;
}

.testimonials-viewport {
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: 0 22px 55px rgba(44,36,53,0.12);
}

.testimonials-track {
  position: relative;
  min-height: 320px;
}

.testimonial-page {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.testimonial-page.is-active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-slide {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #faf8f5;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(123,94,167,0.26);
  background: rgba(255,255,255,0.95);
  color: var(--purple);
  font-size: 30px;
  line-height: 1;
  cursor: none;
  transition: all 0.25s ease;
}

.carousel-btn:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
}

.carousel-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(123,94,167,0.25);
  cursor: none;
  transition: all 0.25s ease;
}

.carousel-dot.is-active {
  background: var(--purple);
  transform: scale(1.25);
}
