.hano-floating-wrap,
.hano-floating-wrap * {
    box-sizing: border-box;
}

.hano-floating-wrap {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-family: inherit;
}

.hano-scroll-top {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: #ffffff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
    padding: 0;
    line-height: 1;
}

.hano-scroll-top.hano-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hano-scroll-top:hover {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
    transform: translateY(-2px);
}

.hano-scroll-top i {
    font-size: 17px;
}

.hano-whatsapp {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827 !important;
    border: 1px solid rgba(17, 24, 39, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
    line-height: 1;
    white-space: nowrap;
}

.hano-whatsapp:hover {
    color: #0f9f58 !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.24);
}

.hano-whatsapp i {
    font-size: 21px;
    color: #25D366;
}

@media (max-width: 767px) {
    .hano-floating-wrap {
        right: 14px;
        bottom: 88px;
        gap: 9px;
    }

    .hano-scroll-top {
        width: 43px;
        height: 43px;
    }

    .hano-whatsapp {
        min-height: 46px;
        padding: 0 15px;
        font-size: 13px;
    }

    .hano-whatsapp i {
        font-size: 20px;
    }
}
