body:not(.admin-layout) .floating-contact {
    position: fixed;
    right: 18px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 10px;
}

body:not(.admin-layout) .floating-contact__toggle,
body:not(.admin-layout) .floating-contact__button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 46, 86, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

body:not(.admin-layout) .floating-contact__toggle {
    display: none;
    background: #123b5d;
    font-size: 20px;
}

body:not(.admin-layout) .floating-contact__stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body:not(.admin-layout) .floating-contact__channel {
    position: relative;
}

body:not(.admin-layout) .floating-contact__button:hover,
body:not(.admin-layout) .floating-contact__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 46, 86, .22);
}

body:not(.admin-layout) .floating-contact__channel--call .floating-contact__button {
    background: #f28b82;
}

body:not(.admin-layout) .floating-contact__channel--zalo .floating-contact__button {
    background: #4da3e6;
}

body:not(.admin-layout) .floating-contact__channel--messenger .floating-contact__button {
    background: #58a8ff;
}

body:not(.admin-layout) .floating-contact__channel--whatsapp .floating-contact__button,
body:not(.admin-layout) .floating-contact__channel--viber .floating-contact__button {
    background: #43c66f;
}

body:not(.admin-layout) .floating-contact__channel--telegram .floating-contact__button {
    background: #2aabee;
}

body:not(.admin-layout) .floating-contact__channel--line .floating-contact__button,
body:not(.admin-layout) .floating-contact__channel--wechat .floating-contact__button,
body:not(.admin-layout) .floating-contact__channel--other .floating-contact__button {
    background: #2d9d78;
}

body:not(.admin-layout) .floating-contact__zalo {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

body:not(.admin-layout) .floating-contact__panel {
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    min-width: 230px;
    max-width: 280px;
    padding: 12px;
    border: 1px solid rgba(0, 89, 153, .12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 46, 86, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

body:not(.admin-layout) .floating-contact__channel:hover .floating-contact__panel,
body:not(.admin-layout) .floating-contact__channel:focus-within .floating-contact__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

body:not(.admin-layout) .floating-contact__panel-title {
    margin-bottom: 8px;
    color: #123b5d;
    font-size: 13px;
    font-weight: 800;
}

body:not(.admin-layout) .floating-contact__item {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #173555;
    text-decoration: none;
    line-height: 1.35;
}

body:not(.admin-layout) .floating-contact__item:hover,
body:not(.admin-layout) .floating-contact__item:focus {
    background: #eef7ff;
    color: #005999;
}

body:not(.admin-layout) .floating-contact__item span,
body:not(.admin-layout) .floating-contact__item small {
    display: block;
}

body:not(.admin-layout) .floating-contact__item small {
    margin-top: 2px;
    color: #6d8294;
    font-size: 12px;
}

@media (max-width: 767px) {
    body:not(.admin-layout) .floating-contact {
        right: 12px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }

    body:not(.admin-layout) .floating-contact__toggle {
        display: flex;
    }

    body:not(.admin-layout) .floating-contact__stack {
        display: none;
    }

    body:not(.admin-layout) .floating-contact.is-open .floating-contact__stack {
        display: flex;
    }

    body:not(.admin-layout) .floating-contact__button {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    body:not(.admin-layout) .floating-contact__panel {
        right: 58px;
        max-width: calc(100vw - 84px);
    }
}
