/*
Виджет выключен
#consultation-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ff7a00;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 2000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

#consultation-widget:hover {
    background-color: #e26900;
    transform: scale(1.05);
}

#consultation-widget img {
    width: 24px;
    height: 24px;
}
*/