
/* =========================================================
   5. DESKTOP CATEGORIES TRIGGER (header)
   Mobile already has category access via the bottom tab bar;
   this gives desktop users the same access from any page now
   that the main menu has been removed.
   ========================================================= */
.header-cat-trigger{display:none;}
@media (min-width:1024px){
  .header-cat-trigger{display:inline-flex;order:-1;margin-right:8px;}
  .cat-drawer{
    left:50%;right:auto;transform:translate(-50%,100%);
    width:90%;max-width:720px;border-radius:20px;bottom:40px;
  }
  .cat-drawer.is-open{transform:translate(-50%,0);}
  .cat-drawer-grid{grid-template-columns:repeat(5,1fr);}
}
