/* HERO de página (Wear, Goods, etc.) */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 10%;
  background: var(--bg-hero, linear-gradient(135deg, #0a0a0f 0%, #1a0533 50%, #0d0a1f 100%));
}
.page-hero-content { max-width: 600px; }
.page-hero-content h1 { font-family: 'Cinzel', serif; font-size: 3.2rem; line-height: 1.1; margin-bottom: 1.2rem; }
.page-hero-content p { color: #888; font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }
.hero-content { max-width: 600px; }
.hero-title { font-family: 'Cinzel', serif; font-size: 3.2rem; line-height: 1.1; margin-bottom: 1rem; color: #fff; }
.hero-subtitle { color: #888; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.hero-button { display: inline-block; padding: 0.9rem 2.5rem; background: var(--accent); border: none; color: #fff; font-family: 'Raleway', sans-serif; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all 0.3s; border-radius: 4px; }
.hero-button:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(123,47,255,0.4); }

/* barra de filtros */
.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #06060a;
  position: sticky;
  top: 64px;
  z-index: 500;
}
.filters-inner { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: #aaa;
  font-size: 0.8rem;
  cursor: pointer;
}
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.sort-bar select {
  background: #111;
  color: #aaa;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}
.page-products { padding: 3rem 10% 5rem; }
.products-grid-large {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.products-grid-large .product-card { height: auto; }
