
/* Floating launcher */
.es-ai-launcher{position:fixed;right:20px;bottom:20px;width:56px;height:56px;border-radius:50%;background:#00ffc2;color:#0b0c10;display:flex;align-items:center;justify-content:center;font-weight:900;box-shadow:0 12px 28px rgba(0,0,0,.35);cursor:pointer;z-index:9999}
.es-ai-launcher:hover{transform:translateY(-1px)}
/* Chat window */
.es-ai-chat{position:fixed;right:20px;bottom:90px;width:360px;max-width:92vw;display:none;z-index:10000}
.es-ai-chat.open{display:block}
.es-ai-chat__window{background:#0b0c10;border:1px solid rgba(255,255,255,.08);border-radius:16px;box-shadow:0 16px 32px rgba(0,0,0,.45);overflow:hidden}
.es-ai-chat__header{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;border-bottom:1px solid rgba(255,255,255,.08);background:#0f1016}
.es-ai-chat__title{font-weight:800;color:#e9ecef}
.es-ai-chat__close{background:transparent;border:none;color:#e9ecef;font-size:18px;cursor:pointer}
.es-ai-chat__messages{height:320px;overflow:auto;padding:12px;display:flex;flex-direction:column;gap:10px}
.es-ai-msg{display:flex;gap:10px}
.es-ai-msg--user{justify-content:flex-end}
.es-ai-bubble{max-width:80%;padding:10px 14px;border-radius:14px;line-height:1.4;font-size:15px;white-space:pre-wrap}
.es-ai-msg--user .es-ai-bubble{background:#ff2d6b;color:#fff;border-bottom-right-radius:4px}
.es-ai-msg--bot .es-ai-bubble{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-bottom-left-radius:4px;color:#e9ecef}
.es-ai-quick{display:flex;flex-wrap:wrap;gap:8px;padding:8px 12px;border-top:1px solid rgba(255,255,255,.08);background:#0f1016}
.es-ai-qbtn{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:#e9ecef;border-radius:20px;padding:6px 10px;font-size:13px;cursor:pointer}
.es-ai-chat__input{display:flex;gap:8px;border-top:1px solid rgba(255,255,255,.08);padding:10px;background:#0f1016}
#es-ai-chat-input{flex:1;resize:none;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:#12141b;color:#e9ecef;padding:10px;font-size:15px}
#es-ai-chat-send{background:#00ffc2;border:none;color:#0b0c10;font-weight:800;padding:10px 16px;border-radius:12px;cursor:pointer}
#es-ai-chat-send:disabled{opacity:.6;cursor:not-allowed}
@media (max-width:600px){.es-ai-chat{right:10px;bottom:80px;width:92vw}}
