/* London Baby 2026 — main vertical scroll recovery
   Surgical fix after Batch 4: preserve modal/local-guide scroll locks when active,
   but ensure the main app document remains vertically scrollable otherwise. */

html:not(.detail-modal-open):not(.lb-local-guide-open):not(.ask-chat-open),
body:not(.detail-modal-open) {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-y: auto !important;
}

body:not(.detail-modal-open):not(.lb-local-guide-open):not(.ask-chat-open) {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  min-height: 100vh !important;
  touch-action: pan-x pan-y pinch-zoom !important;
}

#app {
  min-height: 100vh;
}
