/* Исправление проблем с мобильной производительностью */

/* Убираем проблемные анимации на мобильных */
@media screen and (max-width: 640px) {
    /* Отключаем тяжелые анимации кнопки звонка */
    .circlephone,
    .circle-fill,
    .img-circleblock {
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -ms-animation: none !important;
        -o-animation: none !important;
        animation: none !important;
    }
    
    /* Упрощаем кнопку на мобильных */
    #popup__toggle {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    #popup__toggle .circlephone,
    #popup__toggle .circle-fill {
        display: none;
    }
    
    #popup__toggle .img-circle {
        width: 50px;
        height: 50px;
        bottom: 0;
        right: 0;
        opacity: 1;
    }
    
    #popup__toggle .img-circleblock {
        width: 50px;
        height: 50px;
        background-size: contain;
    }
    
    /* Кнопка вверх тоже меньше */
    #upbutton {
        width: 40px;
        height: 40px;
        bottom: 15px;
        left: 15px;
        background-size: contain;
    }
    
    /* Мобильное меню - исправляем z-index */
    .mobilemenu-wrapper {
        z-index: 9999 !important;
    }
    
    .mobilemenu {
        z-index: 10000;
    }
    
    /* Убираем лишние элементы на мобильных */
    .messangers {
        display: none !important;
    }
}

/* Для планшетов тоже облегчаем */
@media screen and (max-width: 960px) {
    .circlephone,
    .circle-fill {
        -webkit-animation: none !important;
        -moz-animation: none !important;
        animation: none !important;
    }
}
