

/* public/css/catalog.css */
/* Uses tokens:
   --app-bg, --app-surface, --app-text, --app-muted, --app-border
   --brand-primary, --brand-accent
*/

.catalog-page { color: var(--app-text); }

/* HERO */
.cat-hero{
  border-radius: 1.25rem;
  border: 1px solid var(--app-border);
  background: var(--app-surface);
  box-shadow: 0 .85rem 2.4rem rgba(0,0,0,.06);
  padding: 1rem;
}
@media (min-width: 768px){
  .cat-hero{ padding: 1.25rem; }
}
body.dark-mode .cat-hero,
html[data-bs-theme="dark"] .cat-hero{
  box-shadow: 0 1.2rem 3rem rgba(0,0,0,.35);
}

.cat-lead{ color: var(--app-muted); }

.cat-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.28rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--app-border);
  background: rgba(255,255,255,.55);
  color: var(--app-text);
  font-weight: 800;
  font-size: .9rem;
  white-space: nowrap;
}
body.dark-mode .cat-pill,
html[data-bs-theme="dark"] .cat-pill{
  background: rgba(255,255,255,.06);
}

/* CTA */
.cat-cta{
  border-radius: 1.25rem;
  border: 1px solid var(--app-border);
  background: rgba(255,255,255,.70);
  padding: 1rem;
}
body.dark-mode .cat-cta,
html[data-bs-theme="dark"] .cat-cta{
  background: rgba(255,255,255,.06);
}

.cat-btn-pill{ border-radius: 999px !important; font-weight: 900; }

/* FILTERS wrapper (only container styling, the partial stays clean) */
.cat-filters{
  border-radius: 1.15rem;
  border: 1px solid var(--app-border);
  background: rgba(255,255,255,.70);
  padding: 1rem;
}
body.dark-mode .cat-filters,
html[data-bs-theme="dark"] .cat-filters{
  background: rgba(255,255,255,.06);
}

/* SECTION HEADER */
.cat-section-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:.75rem;
  margin-top: 1.25rem;
  margin-bottom: .75rem;
}
