/* --- Десктоп --- */
.desc_wa_btn {
    position: fixed;
    right: 60px;
    bottom: 75px;
    z-index: 999;
}

.desc_max_btn {
    position: fixed;
    right: 60px;
    bottom: 140px;
    z-index: 999;
}



.desc_max_btn .max_btn,
.desc_wa_btn .whatsapp_btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #2fa5e0;
    border-radius: 6px;
    padding: 12px 28px;
    text-decoration: none;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.desc_wa_btn .whatsapp_btn:hover {background: #1f76a1;}

.desc_max_btn .max_btn{background: linear-gradient(73.55deg, #34a5ce 14.56%, #5533EE 63.57%, #9933DD 88.6%); background-size: 100%; background-position: right center;}
.desc_max_btn .max_btn:hover {background: linear-gradient(73.55deg, #34a5ce 14.56%, #5533EE 63.57%, #9933DD 88.6%); background-size: 200%; background-position: right center;}

.desc_wa_btn .whatsapp_btn span,
.desc_max_btn .max_btn span {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    margin-left: 10px;
}


/* --- Мобильная версия --- */
@media (max-width: 767px) {
    /* WhatsApp */
    .desc_wa_btn {
        right: 20px;
        bottom: 10px; /* теперь на одном уровне */
    }
    
    .desc_max_btn {
        right: 20px;
        bottom: 58px; /* теперь на одном уровне */
    }

    .desc_max_btn .max_btn,
    .desc_wa_btn .whatsapp_btn {
        padding: 6px 20px 7px;
        border-radius: 6px;
    }

    .desc_wa_btn .whatsapp_btn span,
    .desc_max_btn .max_btn span {
        font-size: 16px;
    }

    /* Кнопка звонка */
    .mobile_call_btn {
        position: fixed;
        left: 20px;
        bottom: 10px; /* на том же уровне */
        z-index: 999;
    }

    .bb_tel {
        width: 55px;
        height: 43px;
        background: #009e32;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 2px 4px 6px rgba(0,0,0,0.15);
        transition: background 0.3s ease;
    }

    .bb_tel:hover {
        background: #00b63a;
    }

    .tel_icon {
        width: 28px;
        height: 28px;
        filter: brightness(0) invert(1); /* делаем иконку белой */
    }
}
