/* Süleyman Chat Widget - WorldwideTradeX */
#wwt-chat-widget{position:fixed;bottom:24px;right:24px;z-index:9999;font-family:'Inter',sans-serif}
#wwt-chat-bubble{width:58px;height:58px;background:#0f172a;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 20px rgba(0,0,0,.35);transition:transform .2s}
#wwt-chat-bubble:hover{transform:scale(1.08)}
#wwt-chat-bubble svg{width:26px;height:26px;fill:#d97706}
#wwt-chat-badge{position:absolute;top:-4px;right:-4px;background:#d97706;color:#fff;font-size:10px;font-weight:700;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center}
#wwt-chat-box{display:none;position:absolute;bottom:70px;right:0;width:340px;background:#fff;border-radius:16px;box-shadow:0 8px 40px rgba(0,0,0,.18);overflow:hidden;flex-direction:column}
#wwt-chat-box.open{display:flex}
#wwt-chat-header{background:#0f172a;color:#fff;padding:14px 16px;display:flex;align-items:center;gap:10px}
#wwt-chat-header .avatar{width:36px;height:36px;border-radius:50%;overflow:hidden;flex-shrink:0}
#wwt-chat-header .avatar img{width:100%;height:100%;object-fit:cover}
#wwt-chat-header .info{flex:1}
#wwt-chat-header .name{font-weight:700;font-size:14px}
#wwt-chat-header .status{font-size:11px;opacity:.7}
#wwt-chat-close{cursor:pointer;opacity:.7;padding:4px}
#wwt-chat-close:hover{opacity:1}
#wwt-chat-messages{flex:1;overflow-y:auto;padding:14px;display:flex;flex-direction:column;gap:10px;max-height:320px;min-height:200px}
.wwt-msg{max-width:82%;padding:9px 13px;border-radius:12px;font-size:13px;line-height:1.5;word-break:break-word}
.wwt-msg.bot{background:#f1f5f9;color:#1e293b;align-self:flex-start;border-bottom-left-radius:4px}
.wwt-msg.user{background:#0f172a;color:#fff;align-self:flex-end;border-bottom-right-radius:4px}
.wwt-typing{display:flex;gap:4px;padding:10px 13px;background:#f1f5f9;border-radius:12px;align-self:flex-start;border-bottom-left-radius:4px}
.wwt-typing span{width:7px;height:7px;background:#94a3b8;border-radius:50%;animation:wwt-bounce .9s infinite}
.wwt-typing span:nth-child(2){animation-delay:.15s}
.wwt-typing span:nth-child(3){animation-delay:.3s}
@keyframes wwt-bounce{0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-6px)}}
#wwt-chat-input-area{display:flex;border-top:1px solid #e2e8f0;padding:10px}
#wwt-chat-input{flex:1;border:none;outline:none;font-size:13px;padding:6px 8px;font-family:inherit;resize:none;max-height:80px}
#wwt-chat-send{background:#d97706;color:#fff;border:none;border-radius:8px;padding:7px 14px;cursor:pointer;font-size:13px;font-weight:600;transition:background .2s}
#wwt-chat-send:hover{background:#b45309}
@media(max-width:400px){#wwt-chat-box{width:calc(100vw - 32px);right:-8px}}
