 .fab-container {
position: fixed; bottom: 80px; right: 30px;
display: flex; flex-direction: column; gap: 15px;
z-index: 1000;
opacity: 1 !important;
background: transparent !important;
}

.fab {
width: 60px;
height: 60px;
border-radius: 50%;

background-color: white !important; /* белый фон кнопки, непрозрачный */
background: #fff !important;
color: inherit !important;
border-bottom: none !important;

display: flex;
align-items: center;
justify-content: center;

font-size: 40px;
cursor: pointer;

/* жирная, непрозрачная тень, чтобы отделить кнопку от фона */
box-shadow: 0 3px 8px rgba(0,0,0,0.3);
opacity: 1 !important;
user-select: none;
pointer-events: auto;
text-decoration: none;

transition: background-color 0.3s, transform 0.15s;
}

/* Иконки красим в фирменные цвета */
.fab.whatsapp i {
color: #25d366 !important; /* яркий зеленый Вацапа */
}

.fab.telegram i {
color: #0088cc !important; /* яркий синий Телеги */
}

.fab.vk {
    font-size: 30px;
    background-color: #5181B8 !important; /* фирменный синий ВК */
}
.fab.vk i {
color: white !important;
}

.fab:hover {
filter: brightness(95%);
}

.fab i {
user-select: none;
pointer-events: none;
}