/* ==========================================================================
   SUBPÁGINAS DE PRODUCTOS
   ========================================================================== */
.page-container {
  padding-bottom: 4rem;
}

/* Banner Verde de la Línea de Productos */
.page-header.prod-banner {
  background: linear-gradient(135deg, #064e3b 0%, #15803d 50%, #22c55e 100%);
  padding: 3rem 5%;
  text-align: center;
  color: #ffffff;
  border-bottom: 4px solid #facc15;
  margin-bottom: 2.5rem;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.2);
}

.category-badge {
  background-color: #22c55e;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.page-header h1 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.page-header .subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  opacity: 0.95;
}

/* Grilla de Galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0 5%;
}

.gallery-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.img-placeholder {
  width: 100%;
  height: 220px;
  background-color: #f8fafc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: #94a3b8;
  font-size: 3.5rem;
  overflow: hidden;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.badge-tag.prod {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #16a34a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* Adaptación Móvil */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
}