/* ==========================================================================
   MOBILE BEHAVIORS & TOUCH OPTIMIZATION
   Note: Layout styles are now handled in main.css (Mobile-First Strategy)
   ========================================================================== */

html {
    /* Prevent font scaling in landscape mode on iOS */
    -webkit-text-size-adjust: 100%;
    /* Smooth scrolling engine */
    -webkit-overflow-scrolling: touch;
}

html, body {
    width: 100%;
    /* CRITICAL: Prevents accidental horizontal scrolling */
    overflow-x: hidden;
    position: relative;
    /* Performance: Disables horizontal swipe delay, speeding up vertical scroll */
    touch-action: pan-y;
}

/* Remove the gray highlight tap box on iOS (Premium App Feel) */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Form Inputs: Prevent zoom on focus (Standard iOS fix) */
/* (We ensure font-size is 16px+ in main.css, but this is a backup) */
input, select, textarea {
    font-size: 16px !important; 
}