/* Mobile-only fix: keep My Collection filter/sort panels above the card grid.
   The toolbar is transformed on mobile, which creates its own stacking context;
   without an explicit z-index, later grid items can paint over the opened panels. */
@media (max-width:780px){
  .mc-toolbar{
    position:relative !important;
    z-index:95 !important;
    overflow:visible !important;
    isolation:isolate !important;
  }

  #mcFiltersMount,
  .mc-filters,
  .mc-filters-inner,
  .mc-toolbar-actions,
  .mc-sort-wrap{
    position:relative !important;
    z-index:96 !important;
    overflow:visible !important;
  }

  .mc-filters-panel,
  .mc-sort-menu{
    z-index:98 !important;
  }
}
