/**
 * Shop secondary category bar: avoid JS height on every resize (fixes jank).
 * Previously global.js set .shop-tab height from width × 0.7296875 on each resize.
 */
@media (min-width: 992px) {
  .products .shop-tabs .shop-tab {
    aspect-ratio: 1 / 0.7296875;
    height: auto !important;
  }
}

/* Sticky category filter bar: avoid transition:all animating position/padding (flicker with filters-fixed). */
.products .filters.black-bg {
  transition: none;
}
