/* GIFTOS mobile anti-zoom v223
   Prevents Safari/iOS focus zoom and accidental double-tap zoom.
   Pinch-to-zoom remains available for accessibility. */
html {
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

@media (max-width: 900px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]),
  textarea,
  select,
  [contenteditable="true"] {
    font-size: 16px !important;
  }

  button,
  a,
  [role="button"],
  summary,
  label,
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  input[type="file"],
  input[type="checkbox"],
  input[type="radio"],
  input[type="range"],
  .btn,
  .button,
  .iconBtn,
  .tab,
  .chip {
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent;
  }

  input,
  textarea,
  select,
  [contenteditable="true"] {
    touch-action: manipulation;
  }
}
