/* Shop page (PLP) layout breaks when multiple filter categories are active
   at once (e.g. ?_category=A;B;C;D — 4 chips shown) — .shop-content gets
   pushed BELOW .shop-widgets instead of sitting beside it, leaving a huge
   blank gap. Root cause: Filter Everything's selected-terms chip row
   (.wpc-filter-chips-list) is `display:flex; flex-wrap:nowrap` — with 4+
   chips its min-content width can exceed the ~900px .shop-content has to
   work with (1180px container − 280px sidebar), and since nothing in that
   chain is allowed to shrink below its own content width, .shop-content's
   own min-content balloons to the full 1180px. .shop-bar (the flex row
   pairing sidebar + content) then has no choice but to wrap those two
   onto separate lines — sidebar first, content dropped below it, with the
   sidebar's own height reading as blank space above the products.
   Confirmed directly: forcing .shop-bar to flex-wrap:nowrap made the gap
   disappear immediately. Fix here at the actual source instead — let the
   chip row wrap onto multiple lines when there are more chips than fit,
   so it never needs more horizontal space than .shop-content actually
   has. This is a plugin class (filter-everything-pro), not a theme one —
   overriding via the theme keeps it safe across plugin updates. */
.wpc-filter-chips-list {
  flex-wrap: wrap !important;
}

/*# sourceMappingURL=style-d.css.map */
