.acoes-compra .acoes-compra__btn--chat{
    border-color:#2f68ac !important;
    background:#fff !important;
    color:#24568f !important;
}

.acoes-compra .acoes-compra__btn--chat:hover{
    background:#f2f7fd !important;
    color:#1f4c80 !important;
}

.ecommerce-chat{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:1050;
    width:min(390px, calc(100vw - 28px));
    height:min(590px, calc(100dvh - 40px));
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border:1px solid #dce4ed;
    border-radius:18px;
    background:#fff;
    box-shadow:0 22px 70px rgba(15, 35, 55, .24);
}

.ecommerce-chat[hidden]{
    display:none !important;
}

.ecommerce-chat__header{
    display:grid;
    grid-template-columns:42px minmax(0, 1fr) auto;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border-bottom:1px solid #e6ebf0;
    background:#fff;
}

.ecommerce-chat__avatar{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    overflow:hidden;
    border:1px solid #dce5ef;
    border-radius:50%;
    background:#eef4fb;
    color:#2f68ac;
    font-size:14px;
    font-weight:800;
}

.ecommerce-chat__avatar img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.ecommerce-chat__avatar img[hidden],
.ecommerce-chat__avatar span[hidden]{
    display:none;
}

.ecommerce-chat__identity{
    min-width:0;
}

.ecommerce-chat__title{
    display:block;
    overflow:hidden;
    color:#172436;
    font-size:15px;
    font-weight:700;
    line-height:1.3;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.ecommerce-chat__presence{
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:3px;
    color:#66788c;
    font-size:12px;
}

.ecommerce-chat__presence::before{
    width:7px;
    height:7px;
    flex:0 0 auto;
    border-radius:50%;
    background:#9aa7b5;
    content:"";
}

.ecommerce-chat__presence[data-online="true"]::before{
    background:#1ca75b;
    box-shadow:0 0 0 3px rgba(28, 167, 91, .12);
}

.ecommerce-chat__close{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border:0;
    border-radius:10px;
    background:#f2f5f8;
    color:#526477;
    font-size:22px;
    line-height:1;
    cursor:pointer;
}

.ecommerce-chat__product{
    display:flex;
    align-items:center;
    gap:10px;
    padding:9px 14px;
    border-bottom:1px solid #e9edf2;
    background:#f8fafc;
    color:#526477;
    font-size:12px;
    line-height:1.35;
}

.ecommerce-chat__product strong{
    display:-webkit-box;
    overflow:hidden;
    color:#27384a;
    font-size:12px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

.ecommerce-chat__messages{
    flex:1 1 auto;
    min-height:0;
    overflow-y:auto;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:14px;
    background:#f7f9fb;
    overscroll-behavior:contain;
}

.ecommerce-chat__empty,
.ecommerce-chat__status{
    margin:auto 0;
    padding:16px;
    border:1px dashed #d4dde7;
    border-radius:14px;
    background:#fff;
    color:#647589;
    font-size:13px;
    line-height:1.5;
    text-align:center;
}

.ecommerce-chat__status{
    margin:0;
}

.ecommerce-chat__message{
    max-width:86%;
    display:flex;
    flex-direction:column;
    gap:3px;
}

.ecommerce-chat__message--customer{
    align-self:flex-end;
    align-items:flex-end;
}

.ecommerce-chat__message--store{
    align-self:flex-start;
    align-items:flex-start;
}

.ecommerce-chat__bubble{
    padding:9px 11px;
    border:1px solid #dce4ed;
    border-radius:14px;
    background:#fff;
    color:#172436;
    font-size:13px;
    line-height:1.45;
    overflow-wrap:anywhere;
}

.ecommerce-chat__message--customer .ecommerce-chat__bubble{
    border-color:#c9daf0;
    background:#eaf2fc;
}

.ecommerce-chat__time{
    color:#8a97a6;
    font-size:10px;
}

.ecommerce-chat__composer{
    flex:0 0 auto;
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    gap:8px;
    padding:10px;
    border-top:1px solid #e1e7ed;
    background:#fff;
}

.ecommerce-chat__input{
    width:100%;
    min-height:42px;
    max-height:110px;
    padding:10px 12px;
    border:1px solid #cfd8e3;
    border-radius:12px;
    resize:none;
    color:#172436;
    font:inherit;
    font-size:13px;
    line-height:1.4;
    outline:0;
}

.ecommerce-chat__input:focus{
    border-color:#6e9bce;
    box-shadow:0 0 0 3px rgba(47, 104, 172, .1);
}

.ecommerce-chat__send{
    min-width:76px;
    height:42px;
    align-self:end;
    padding:0 14px;
    border:0;
    border-radius:12px;
    background:#2f68ac;
    color:#fff;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.ecommerce-chat__send:disabled,
.ecommerce-chat__input:disabled{
    opacity:.6;
    cursor:not-allowed;
}

@media (max-width: 560px){
    .ecommerce-chat{
        right:8px;
        bottom:8px;
        width:calc(100vw - 16px);
        height:min(620px, calc(100dvh - 16px));
        border-radius:16px;
    }
}
