/* iOS/Safari: делаем поп-ап по реальной высоте экрана, без "подрезания" */
.t-popup, .t-popup__container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Современные браузеры: dynamic viewport */
@supports (height: 100dvh) {
  .t-popup, .t-popup__container { height: 100dvh !important; }
}

/* iOS fallback */
@supports (-webkit-touch-callout: none) and (not (height: 100dvh)) {
  .t-popup, .t-popup__container { height: -webkit-fill-available !important; }
}
