.carrusel-container {
  overflow-x: auto;
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
  padding: 1rem 0;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;
}

.carrusel-container::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}

.producto-card {
  flex: 0 0 50%;
  scroll-snap-align: start;
  background: #f8f8f8;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.producto-card img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.producto-card a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.producto-card:hover {
  transform: scale(1.02);
}

@media(min-width: 768px) {
  .producto-card {
    flex: 0 0 28%;
  }
}
