/* ===============================
   🎠 CARRUSEL DE PRODUCTOS
=============================== */

.carrusel-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 30px auto;
}

/* ===============================
   🧱 LISTA DE PRODUCTOS (Carrusel)
=============================== */
.carrusel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
  /* No se define width para evitar estiramiento global */
}

/* ===============================
   📦 TARJETA INDIVIDUAL DEL CARRUSEL
=============================== */
.masonry-item {
  flex: 0 0 25%; /* 4 ítems visibles en escritorio */
  background-color: #2a2a2a;
  box-sizing: border-box;
  border-radius: 10px;
  min-width: 0;
  text-align: center;
  color: white;
  padding: 15px;
  font-size: 14px;
  scroll-snap-align: start;
}

.carrusel img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

/* ===============================
   ◀️▶️ FLECHAS DE NAVEGACIÓN
=============================== */
.carrusel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #e6ff00;
  border: none;
  padding: 10px 15px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  border-radius: 4px;
}

.carrusel-prev {
  left: 10px;
}

.carrusel-next {
  right: 10px;
}

/* ===============================
   📱 VERSIÓN MÓVIL DEL CARRUSEL
=============================== */
@media (max-width: 768px) {

  /* Ocultar flechas */
  .carrusel-btn {
    display: none;
  }

  /* Habilitar scroll táctil tipo snap */
  .carrusel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Mostrar 1 o 2 ítems visibles */
  .masonry-item {
    flex: 0 0 80%;
  }
}
