/* ── Testimonials ────────────────────────────────────────── */

.sh-testimonials {
  width: 100%;
  padding: 80px 0 64px;
  overflow: hidden;
}

.sh-testimonials__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.sh-testimonials__heading {
  font-family: var(--font-nexa-heavy), sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.sh-testimonials__rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sh-testimonials__stars {
  display: flex;
  gap: 2px;
}

.sh-testimonials__rating-text {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #777;
}

/* ── Scroll track ───────────────────────────────────────── */

.sh-testimonials__track-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.sh-testimonials__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px max(24px, calc((100vw - 1200px) / 2)) 8px;
}

.sh-testimonials__track::-webkit-scrollbar {
  display: none;
}

/* ── Card ───────────────────────────────────────────────── */

.sh-testimonials__card {
  flex: 0 0 380px;
  scroll-snap-align: center;
  background: #f7f7f7;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sh-testimonials__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* ── Quote ──────────────────────────────────────────────── */

.sh-testimonials__quote {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #333;
  margin: 0;
  flex: 1;
}

/* ── Author ─────────────────────────────────────────────── */

.sh-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sh-testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009b8c, #00c9a7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nexa-heavy), sans-serif;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.sh-testimonials__author-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sh-testimonials__name {
  font-family: var(--font-nexa-heavy), sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sh-testimonials__location {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #999;
}

.sh-testimonials__category {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #009b8c;
  background: rgba(0, 155, 140, 0.08);
  border-radius: 100px;
  padding: 4px 12px;
  flex-shrink: 0;
}

/* ── Dot indicators ─────────────────────────────────────── */

.sh-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.sh-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sh-testimonials__dot--active {
  background: #009b8c;
  transform: scale(1.3);
}

/* ── Responsive: Tablet ─────────────────────────────────── */

@media (max-width: 1200px) {
  .sh-testimonials__heading {
    font-size: 36px;
  }

  .sh-testimonials__card {
    flex: 0 0 340px;
  }
}

/* ── Responsive: Mobile ─────────────────────────────────── */

@media (max-width: 809px) {
  .sh-testimonials {
    padding: 56px 0 48px;
  }

  .sh-testimonials__heading {
    font-size: 28px;
  }

  .sh-testimonials__header {
    margin-bottom: 32px;
  }

  .sh-testimonials__card {
    flex: 0 0 300px;
    padding: 24px 22px;
    gap: 16px;
  }

  .sh-testimonials__quote {
    font-size: 14.5px;
  }

  .sh-testimonials__rating-row {
    flex-direction: column;
    gap: 8px;
  }

  .sh-testimonials__rating-text {
    font-size: 14px;
  }

  .sh-testimonials__dots {
    margin-top: 24px;
  }
}
