/* Candidate 2026-09-14 (SITE line): sticky Buy bar vs fixed Privacy choices.
   The sticky Buy bar is switched on only for product pages opened at phone width (max-width: 767px).
   When such a page is later widened (window resize or phone/tablet rotation), the bar stayed fixed at
   the bottom and collided with the fixed Privacy choices entry: outside US/CA the entry covered Buy on
   SORA pages and the bar covered the entry on HIMARI pages. Pages opened at 768px or wider never show
   the bar, so hiding it in that range matches existing desktop behaviour. The in-page buy box, prices,
   handoff forms, consent logic and all JavaScript stay unchanged. */
@media (min-width: 768px) {
  .product-sticky-buy:not([hidden]) {
    display: none;
  }
}
