.eiiman-chat {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 10px 18px;
    border: 2px solid #fff;
    border-radius: 32px;
    background: #0866d9;
    color: #fff;
    box-shadow: 0 4px 18px rgb(0 0 0 / 20%);
    font-family: inherit;
    line-height: 1.4;
    text-decoration: none;
}
.eiiman-chat:hover,
.eiiman-chat:focus {
    background: #064fa8;
    color: #fff;
    text-decoration: none;
}
.eiiman-chat:focus-visible {
    outline: 3px solid #172c4b;
    outline-offset: 3px;
}
.eiiman-chat strong,
.eiiman-chat small {
    display: block;
    color: inherit;
}
.eiiman-chat strong { font-size: 15px; font-weight: 700; }
.eiiman-chat small { font-size: 12px; }
.eiiman-chat__icon { flex-shrink: 0; }
@media (max-width: 480px) {
    .eiiman-chat {
        right: max(12px, env(safe-area-inset-right));
        padding: 8px 14px;
    }
}
@media print {
    .eiiman-chat { display: none; }
}
