/* FITFREK_IOS_FORM_ZOOM_GUARD_V1
   iOS/WebKit automatically zooms the visual viewport when a focused form
   control renders below 16px. Keep all text-entry controls at the threshold
   on touch WebKit so search -> result navigation never inherits a zoomed view.
   Do NOT disable pinch zoom in the viewport meta tag. */
@supports (-webkit-touch-callout:none){
  @media (max-width:900px){
    html{
      -webkit-text-size-adjust:100%;
      text-size-adjust:100%;
    }
    input[type="search"],
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="url"],
    input[type="number"],
    textarea,
    select{
      font-size:16px!important;
    }
  }
}
