/* Avoid accidental double-tap zoom without disabling pinch zoom or scrolling. */
html, body {
  touch-action: manipulation;
}

/* iOS zooms focused fields whose rendered text is smaller than 16px.
   Cover shared search/account forms and page-specific checkout/customisation fields. */
@media (max-width: 1024px), (pointer: coarse) {
  html body input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):not([type="color"]),
  html body select,
  html body textarea,
  html body [contenteditable="true"] {
    font-size: max(16px, 1rem) !important;
  }
}
