.sale-carousel {
  position: relative;
  margin: 2rem 0;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: 1rem 2rem;
}
.carousel-item {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}
.carousel-item h4 {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.carousel-item .price {
  color: var(--miza-teal);
  font-weight: bold;
}

/* Botones de navegación */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--miza-pink);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
