
/* STL BEAST Step 3 Catalog/Search System */
.catalog-toolbar{
  display:grid;
  grid-template-columns:1.4fr .7fr .7fr;
  gap:12px;
  margin:24px 0;
  background:rgba(7,11,19,.82);
  border:1px solid rgba(155,44,255,.25);
  border-radius:16px;
  padding:16px;
}
.catalog-toolbar input,
.catalog-toolbar select{
  width:100%;
}
.category-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 24px;
}
.category-pill{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  text-decoration:none;
  background:rgba(255,255,255,.04);
  font-weight:900;
  font-size:13px;
}
.category-pill.active,
.category-pill:hover{
  border-color:rgba(155,44,255,.75);
  box-shadow:0 0 22px rgba(155,44,255,.22);
}
.catalog-results-note{
  color:#a8b3c7;
  margin:0 0 12px;
}
@media(max-width:800px){
  .catalog-toolbar{grid-template-columns:1fr}
}
