/* Плавающий контейнер */
.connection-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
} /* Основная кнопка (Phone / Close) */
.connection-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent; /* без фона */
    border: none; /* без рамки */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* убираем тень */
    transition: transform 0.3s;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* небольшая тень */
}
.connection-btn img {
    width: 60px; /* иконка сразу занимает кнопку */
    height: 60px;
    transition: transform 0.6s ease-out;
}
.connection-btn.rotate img {
    transform: rotate(540deg); /* анимация вращения */
} /* Контейнер с иконками */
.connection-options {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px);
}
.connection-options.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
} /* Иконки мессенджеров */
.connection-options button {
    width: 60px; /* такие же, как у стартовой */
    height: 60px;
    margin: 5px 0;
    border-radius: 50%;
    border: 2px solid #fff; /* белое обрамление */
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, opacity 0.3s;
    overflow: hidden;
}
.connection-options button img {
    width: 30px; /* чуть меньше, чтобы вписывалось в круг */
    height: 30px;
}
.connection-options button:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
