/* Site fix (2026-07-04): Lagom2 keeps lazily-rendered dropdowns (e.g. the
   language picker) as display:block + visibility:hidden with a translate
   transform, hanging ~51px past the viewport inline edge. That inflates the
   page horizontal scroll area, which shifts the RTL layout, makes scrolling
   judder, and lays an invisible overflow region over the side menu so it stops
   taking clicks. Clipping page-level horizontal overflow removes the inflation
   without affecting any visible element (clip creates no scroll container, so
   sticky/fixed elements keep working). Verified against the live product page:
   scrollWidth 1491 -> 1440 at a 1440px viewport, menu hit-test passes. */
html, body { overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
