/* Productos home*/
#productos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tarjeta-producto {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  width: 350px; /* ajusta el ancho de cada tarjeta */
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transition: 200ms;
}

.carrusel {
  position: relative;
  width: 100%;
  height: 250px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.imagenes {
  display: flex;
  height: 100%;
}

.imagenes img {
  width: 350px;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.tarjeta-producto h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tarjeta-producto .precio {
  font-weight: 600;
}

.tarjeta-producto button {
  font-size: larger;
  background-color: #8B27F5;
  border-radius: 5px;
  padding: 10px 20px;
  color: #fff;
  border: unset;
  cursor: pointer;
  white-space: nowrap; /* evita que el texto se divida en varias líneas */
}

.tarjeta-producto:hover {
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  translate: 0px -5px;
}
.descuento {
  color: #4CAF50;
  font-size: 14px;
  margin-bottom: 5px;
}

.precio-original {
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 5px;
}
