.carousel {
  max-width: 400px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 20px;
  background: #0e1a4b;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  white-space: nowrap;
  width: 100%;
}
.slide {
  flex: 0 0 100%;
  text-align: center;
  color: white;
  padding: 30px 20px;
}
.slide img {
  width: 80px;
  margin-bottom: 15px;
}
.slide h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: white;
}
.etiqueta {
  font-size: 14px;
  color: #00bfff;
  margin: 5px 0;
}
.precio {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .slide img { width: 60px; }
  .slide h2 { font-size: 18px; }
  .precio { font-size: 28px; }
}