.floating-buttons {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 99;
    pointer-events: none;
}

.floating-buttons a {
    pointer-events: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgb(0 0 0 / 40%);
    transition: transform 0.2s;
}

.floating-buttons a:active {
    transform: scale(0.92);
}

.btn-phone {
    background: transparent;
}

.btn-telegram {
    background: transparent;
}

.btn-phone img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.btn-telegram img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    opacity: 0.9;
}

/* Плавающий логотип-меню сверху справа */
.floating-logo {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    right: 16px;
    z-index: 99;
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgb(0 0 0 / 40%);
    background: transparent;
    transition: transform 0.2s;
    opacity: 0;
}

.floating-logo:active {
    transform: scale(0.92);
}

.floating-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}