/* forsythsfacetsort — facet "Show more / Show less".
   Loaded on faceted-search listing pages when FORSYTHSFACETSORT_ENABLED is on.
   Pairs with ps_facetedsearch's per-filter show limit set to 0 (every value
   renders, already in product-count order via the module's facet-order hook);
   the JS collapses each facet to the top N and reveals the rest on demand. */
.ffs-facet-collapsed { display: none !important; }

.ffs-facet-toggle {
  display: inline-block;
  margin: .4rem 0 .2rem;
  padding: 0;
  background: none;
  border: 0;
  color: #1b4f72;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}
.ffs-facet-toggle:hover,
.ffs-facet-toggle:focus { text-decoration: underline; outline: none; }
.ffs-facet-toggle::before { content: "+ "; font-weight: 700; }
.ffs-facet-toggle[aria-expanded="true"]::before { content: "\2212 "; } /* minus */
