/* The hamburger remains the primary navigation until the full desktop menu
   appears. Do not repeat the complete category tree inside page content. */
@media (max-width: 1199.98px) {
  body.page-category.layout-left-column #left-column .ps-categorytree {
    display: none !important;
  }
}

/* Keep the category tree available beside products on full desktop only. */
@media (min-width: 1200px) {
  body.page-category.layout-left-column #left-column .ps-categorytree {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (min-width: 992px) {
  body.page-category.layout-left-column #left-column {
    align-self: flex-start;
    max-height: calc(100dvh - var(--popelup-sticky-header-offset, 9rem) - 1rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    position: sticky;
    scrollbar-gutter: stable;
    top: var(--popelup-sticky-header-offset, 9rem);
  }
}
