@media (min-width: 992px) {
  body:is(#category, #manufacturer, #prices-drop, #new-products, #best-sales, #search) .all-columns:has(> #left-column #search_filters) {
    display: flex;
    align-items: flex-start;
  }

  body:is(#category, #manufacturer, #prices-drop, #new-products, #best-sales, #search) #left-column:has(#search_filters) {
    position: sticky;
    top: 16px;
    align-self: flex-start;
    max-height: calc(100vh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #999 transparent;
  }

  body:is(#category, #manufacturer, #prices-drop, #new-products, #best-sales, #search) #left-column:has(#search_filters)::-webkit-scrollbar {
    width: 6px;
  }

  body:is(#category, #manufacturer, #prices-drop, #new-products, #best-sales, #search) #left-column:has(#search_filters)::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #999;
  }
}
