/* TrendPret – carousel stability fix */

.tp-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.tp-carousel-track {
  display: flex;
  gap: 16px;
  padding: 8px 16px;
}

.tp-carousel-item {
  min-width: 260px;
  max-width: 260px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.tp-carousel img {
  display: block;
  max-width: 100%;
  height: auto;
}
