.cpn-wc-floating-button{
    position:fixed;
    bottom:18px;
    width:54px;
    height:54px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(15,23,42,0.3);
    z-index:99999;
}
.cpn-wc-pos-right{
    right:18px;
}
.cpn-wc-pos-left{
    left:18px;
}
.cpn-wc-chat-box{
    position:fixed;
    bottom:80px;
    width:280px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(15,23,42,0.25);
    overflow:hidden;
    transform:translateY(20px);
    opacity:0;
    pointer-events:none;
    transition:all .22s ease;
    z-index:99999;
}
.cpn-wc-chat-box.cpn-wc-pos-right{
    right:18px;
}
.cpn-wc-chat-box.cpn-wc-pos-left{
    left:18px;
}
.cpn-wc-chat-box.is-open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
}
.cpn-wc-chat-header{
    padding:10px 12px;
    color:#fff;
    font-weight:600;
    font-size:13px;
}
.cpn-wc-chat-body{
    padding:8px;
    max-height:260px;
    overflow-y:auto;
    background:#f9fafb;
}
.cpn-wc-agent{
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px 8px;
    margin-bottom:4px;
    background:#fff;
    border-radius:10px;
    text-decoration:none;
    color:#111827;
    border:1px solid #e5e7eb;
    transition:all .16s ease;
}
.cpn-wc-agent:hover{
    box-shadow:0 6px 16px rgba(15,23,42,0.12);
    transform:translateY(-1px);
}
.cpn-wc-avatar{
    width:30px;
    height:30px;
    border-radius:999px;
    background-size:cover;
    background-position:center;
    background-color:#111827;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:11px;
    font-weight:600;
}
.cpn-wc-meta{
    display:flex;
    flex-direction:column;
    font-size:11px;
}
.cpn-wc-name{
    font-weight:600;
}
.cpn-wc-label{
    font-size:10px;
    color:#6b7280;
}
.cpn-wc-shortcode-link{
    padding:8px 14px;
    border-radius:999px;
    border:1px solid #25D366;
    text-decoration:none;
    font-size:13px;
}
