/**
 * Slider recensioni negozio — scroll-snap nativo (nessuna libreria di
 * carousel), il JS in reviews-slider.js aggiunge solo l'autoplay e i
 * pulsanti prev/next, che sono comunque un progressive enhancement:
 * senza JS la sezione resta scrollabile a dito/con la rotellina.
 */
.herbavis-reviews-slider {
  position: relative;
}

.herbavis-reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.herbavis-reviews-track::-webkit-scrollbar {
  display: none;
}

.herbavis-review-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border: 1px solid #E4E0D6;
  border-radius: 4px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .herbavis-review-card {
    width: 320px;
  }
}

.herbavis-review-stars {
  color: #D9A25E;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 10px;
}

.herbavis-review-stars span {
  color: #E4E0D6;
}

.herbavis-review-stars span.is-filled {
  color: #D9A25E;
}

.herbavis-review-title {
  font-weight: 600;
  color: #14301F;
  font-size: 14px;
  margin: 0 0 6px;
}

.herbavis-review-text {
  color: #4A4F48;
  font-size: 13.5px;
  line-height: 21px;
  margin: 0 0 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.herbavis-review-author {
  font-weight: 600;
  color: #1B5E36;
  font-size: 12.5px;
  margin: 0;
}

.herbavis-slider-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #E4E0D6;
  background: #fff;
  color: #14301F;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.herbavis-slider-nav-btn:hover {
  background: #E8EFE2;
}

@media (prefers-reduced-motion: reduce) {
  .herbavis-reviews-track {
    scroll-behavior: auto;
  }
}
