/**
 * Single root scrollport — sitewide (mala.ae / malastg).
 *
 * NEVER set overflow-x:hidden on BOTH html and body.
 * That forces overflow-y:auto on both → dual scrollports → mobile
 * often swallows the first vertical flick (second attempt works).
 *
 * overflow-x: clip does not promote overflow-y to auto.
 */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip !important;
}
