/*------------------------------------------------------------------
   Pack797 customer UI — disable pinch / double-tap zoom
   Pairs with locked viewport meta in web/includes/head.blade.php
   (CoreSeller storefront pattern)
----------------------------------------------------------------*/
html.pack797-no-zoom,
html.pack797-no-zoom body {
    touch-action: pan-x pan-y;
}

/*
 * Phone/tablet: keep form controls ≥16px so iOS Safari does not
 * auto-zoom on focus while pinch-zoom remains locked.
 */
@media (max-width: 991.98px) {
    html.pack797-no-zoom input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='file']):not([type='hidden']):not([type='button']):not([type='submit']):not([type='reset']):not([type='image']),
    html.pack797-no-zoom select,
    html.pack797-no-zoom textarea,
    html.pack797-no-zoom .form-control {
        font-size: 16px !important;
    }
}
