/* v2.6.6 — mobile category button icon dedupe
   Fixes duplicated hamburger / stripe icon in the mobile category drawer.
   The visual redesign in part 46 adds a dedicated icon on the text span,
   so we must suppress the older button ::before icon on phones. */

@media (max-width: 991.98px) {
  body.vlg-theme .vlg-nav.is-open .vlg-category-button::before,
  body.vlg-theme.vlg-menu-open .vlg-nav.is-open .vlg-category-button::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  body.vlg-theme .vlg-nav.is-open .vlg-category-button,
  body.vlg-theme.vlg-menu-open .vlg-nav.is-open .vlg-category-button {
    gap: 12px !important;
  }

  body.vlg-theme .vlg-nav.is-open .vlg-category-button span,
  body.vlg-theme.vlg-menu-open .vlg-nav.is-open .vlg-category-button span {
    gap: 12px !important;
  }
}
