/* Mobile Safari: keep catalog product popups full-height and prevent the page behind them from showing */
@media screen and (max-width: 560px) {
  .t-catalog .t-popup.t-popup_show {
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    background-color: #fff !important;
    overscroll-behavior: none;
  }

  .t-catalog .t-popup_show .t-popup__container.t-popup__container-static {
    margin: 50px 0 0 !important;
    min-height: calc(100vh - 50px) !important;
    min-height: calc(100dvh - 50px) !important;
    background-color: #fff !important;
  }

  .t-body_popupshowed {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    overflow: hidden !important;
  }
}