/* Haha's chat widget */
#hh-chat-bubble{position:fixed;right:20px;bottom:20px;z-index:500;display:grid;place-content:center;width:60px;height:60px;padding:6px;border:0;border-radius:50%;background:var(--navy);box-shadow:0 10px 28px rgba(6,40,59,.4);cursor:pointer;transition:.2s;overflow:hidden}
#hh-chat-bubble:hover{transform:scale(1.06)}
#hh-chat-bubble .hh-chat-icon{width:100%;height:100%;object-fit:contain}
#hh-chat-bubble .hh-close-icon{display:none;width:26px;height:26px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
#hh-chat-bubble.open .hh-chat-icon{display:none}
#hh-chat-bubble.open .hh-close-icon{display:block}

#hh-chat-panel{position:fixed;right:20px;bottom:92px;z-index:500;display:none;flex-direction:column;width:360px;max-width:calc(100vw - 40px);height:520px;max-height:calc(100vh - 140px);border-radius:18px;background:#fff;box-shadow:0 20px 60px rgba(6,40,59,.28);overflow:hidden}
#hh-chat-panel.open{display:flex}
.hh-chat-head{display:flex;align-items:center;gap:10px;padding:16px 18px;color:#fff;background:var(--navy)}
.hh-chat-head strong{display:block;font:800 15px 'Saira Condensed',sans-serif}
.hh-chat-head span{display:block;color:#9fc3d4;font-size:11px}
.hh-chat-avatar{display:grid;flex-shrink:0;place-content:center;width:38px;height:38px;overflow:hidden;border-radius:50%;background:rgba(255,255,255,.15)}
.hh-chat-avatar img{width:100%;height:100%;object-fit:cover}
.hh-chat-body{flex:1;overflow-y:auto;padding:16px;background:var(--soft)}
.hh-msg{max-width:82%;margin-bottom:10px;padding:10px 13px;border-radius:14px;font-size:13.5px;line-height:1.5}
.hh-msg.bot{margin-right:auto;border-bottom-left-radius:4px;background:#fff;color:var(--ink);box-shadow:0 2px 8px rgba(6,40,59,.08)}
.hh-msg.user{margin-left:auto;border-bottom-right-radius:4px;background:var(--blue);color:#fff}
.hh-typing{display:inline-flex;gap:4px;padding:12px 14px}
.hh-typing span{width:6px;height:6px;border-radius:50%;background:var(--muted);opacity:.4;animation:hhTyping 1.1s infinite}
.hh-typing span:nth-child(2){animation-delay:.15s}
.hh-typing span:nth-child(3){animation-delay:.3s}
@keyframes hhTyping{0%,60%,100%{opacity:.3;transform:translateY(0)}30%{opacity:1;transform:translateY(-3px)}}
.hh-chat-input{display:flex;gap:8px;padding:12px;border-top:1px solid var(--line);background:#fff}
.hh-chat-input input{flex:1;padding:11px 13px;border:1px solid var(--line);border-radius:10px;font-size:13.5px}
.hh-chat-input input:focus{outline:2px solid var(--blue);outline-offset:-1px}
.hh-chat-input button{display:grid;place-content:center;width:42px;border:0;border-radius:10px;background:var(--red);color:#fff;cursor:pointer}
.hh-chat-input button svg{width:18px;fill:currentColor}
@media(max-width:480px){#hh-chat-panel{right:10px;bottom:148px;width:calc(100vw - 20px);max-height:calc(100vh - 200px)}#hh-chat-bubble{right:14px;bottom:80px}}
