/* Стили для кнопки обратного звонка */
.callback-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    font-size: 16px;
    text-align: center;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callback-button:hover {
    background-color: #1ebe57;
}

/* Стили для кнопки Telegram */
.telegram-button {
    background-color: #0088cc; /* Синий цвет Telegram */
    bottom: 90px; /* Сдвигаем выше, чтобы не перекрывалась с WhatsApp */
}

.telegram-button:hover {
    background-color: #006bb3;
}

/* Стили для формы обратного звонка */
.callback-form {
    display: none;
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    width: 250px;
}

.callback-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 13px;
}

.callback-form button {
    width: 100%;
    padding: 10px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.callback-form button:hover {
    background-color: #1ebe57;
}