/* Убираем анимацию открытия попапов */
.t-popup_show, 
.t-popup_show.t-popup {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
}

/* Убираем анимацию закрытия */
.t-popup.t-popup_hidden {
    animation: none !important;
    transition: none !important;
    opacity: 0 !important;
}
/* Мгновенная реакция кнопок и форм */
.t-submit,
.t-btn,
.t-popup__close,
.t-popup__bg {
    transition: none !important;
}

document.addEventListener("DOMContentLoaded", function() {
    // Снимаем лишние задержки клика на мобильных
    document.querySelectorAll('.t-submit, .t-btn').forEach(function(btn){
        btn.style.touchAction = 'manipulation';
    });
});
