/* Mobile-only presentation: preserve routes, drawer handlers and cart counts. */
@media (max-width: 991px) {
  header > .overlay aside > nav > a[href="#/wishlist"],
  header > .overlay aside > nav > a[href="#/compare"],
  header > .overlay aside > nav > a[href="#/cart"] {
    display: none;
  }
  header .head > button.mobile-cart.mobile-only {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    gap: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #333;
    cursor: pointer;
    touch-action: manipulation;
  }
  header .head > button.mobile-cart.mobile-only > svg {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
  header .head > button.mobile-cart.mobile-only > b {
    position: absolute;
    top: 0;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 10px;
    line-height: 18px;
    white-space: nowrap;
    pointer-events: none;
  }
  header .head > button.mobile-cart.mobile-only:active { opacity: .75; }
  header .head > button.mobile-cart.mobile-only:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
  }
}
