/* ===== Catálogo — Estilos específicos ===== */

/* Hero compacto del catálogo */
.catalogo-hero {
  background: linear-gradient(135deg, #4c1d95, #1e1b4b, #0f172a);
  color: #fff;
  padding: 20px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.catalogo-hero h2 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 6px;
}

.catalogo-hero p {
  font-size: 0.85rem;
  color: #cbd5e1;
  max-width: 500px;
  margin: 0 auto;
}

/* Heading del catálogo antes de la grilla */
.catalog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-heading h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.catalog-heading .product-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 9999px;
}

/* Ajuste responsive */
@media (max-width: 600px) {
  .catalogo-hero {
    padding: 16px;
    border-radius: 16px;
  }

  .catalogo-hero h2 {
    font-size: 1.2rem;
  }
}
