/* TAIF V5 — Mobile Native Behaviors Fix V2
   Scope: mobile mode only.
   Fixes always-visible pull-refresh label and supports keyboard-safe field focus. */

@media (max-width: 860px){
  body.taif-mobile-mode .taif-mobile-pull-refresh{
    opacity:0 !important;
    visibility:hidden !important;
    transform:translate(-50%, -120%) !important;
  }

  body.taif-mobile-mode .taif-mobile-pull-refresh.is-visible,
  body.taif-mobile-mode .taif-mobile-pull-refresh.is-refreshing{
    opacity:1 !important;
    visibility:visible !important;
    transform:translate(-50%, calc(-100% + (var(--taif-pull-progress, 0) * 56px))) !important;
  }

  body.taif-mobile-mode .taif-keyboard-focus-target{
    scroll-margin-bottom:160px !important;
    scroll-margin-top:calc(var(--mobile-app-bar-height, 52px) + 20px) !important;
  }
}
