/* === Tarjetas del primer carrusel (productos por categoría) === */
.product-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 360px; /* Altura reducida */
  text-align: left;
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 160px; /* Imagen más compacta */
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card h6 {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 4px;
}

.product-card h5 {
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: #222;
}

.product-card .price {
  font-size: 1rem;
  font-weight: bold;
  color: #c00;
  margin-bottom: 10px;
}

/* === Carrusel de grilla (cartas sueltas) === */
