/* Jovantys Assistant */
.jv-chat-launcher{
  position:fixed;right:22px;bottom:22px;z-index:9998;
  width:58px;height:58px;border:0;border-radius:50%;
  background:linear-gradient(135deg,#0b3d91,#1686df);
  color:#fff;box-shadow:0 12px 30px rgba(5,43,93,.25);
  cursor:pointer;font-size:23px;display:grid;place-items:center;
  transition:transform .25s ease,box-shadow .25s ease;
}
.jv-chat-launcher:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(5,43,93,.30)}
.jv-chat-panel{
  position:fixed;right:22px;bottom:92px;z-index:9999;width:min(370px,calc(100vw - 28px));
  height:510px;background:#fff;border:1px solid #d9e5f3;border-radius:20px;
  box-shadow:0 24px 70px rgba(7,37,73,.20);display:none;overflow:hidden;
}
.jv-chat-panel.open{display:flex;flex-direction:column;animation:jvChatIn .22s ease both}
.jv-chat-head{padding:16px 17px;background:linear-gradient(135deg,#082f70,#0e68c8);color:#fff;display:flex;align-items:center;gap:11px}
.jv-chat-avatar{width:37px;height:37px;border-radius:12px;background:rgba(255,255,255,.14);display:grid;place-items:center;font-weight:800}
.jv-chat-title{font-weight:750;font-size:15px}.jv-chat-sub{font-size:11px;opacity:.78;margin-top:2px}
.jv-chat-close{margin-left:auto;background:transparent;border:0;color:#fff;font-size:22px;cursor:pointer}
.jv-chat-messages{flex:1;overflow:auto;padding:15px;background:#f7faff}
.jv-msg{display:flex;margin:0 0 11px}.jv-msg.bot{justify-content:flex-start}.jv-msg.user{justify-content:flex-end}
.jv-bubble{max-width:82%;padding:10px 12px;border-radius:14px;font-size:13px;line-height:1.45}
.jv-msg.bot .jv-bubble{background:#fff;border:1px solid #e0e9f4;color:#18324e;border-bottom-left-radius:5px}
.jv-msg.user .jv-bubble{background:#0b5fbd;color:#fff;border-bottom-right-radius:5px}
.jv-chat-actions{display:flex;flex-wrap:wrap;gap:7px;padding:0 13px 10px;background:#fff}
.jv-chat-actions button{border:1px solid #cddced;background:#fff;color:#0b4f9e;border-radius:999px;padding:7px 10px;font-size:11px;cursor:pointer}
.jv-chat-actions button:hover{background:#eef6ff}
.jv-chat-input{display:flex;gap:7px;padding:11px;border-top:1px solid #e4ebf3;background:#fff}
.jv-chat-input input{flex:1;min-width:0;border:1px solid #cfdae8;border-radius:11px;padding:10px 11px;font-size:13px;outline:none}
.jv-chat-input button{width:42px;border:0;border-radius:11px;background:#0b5fbd;color:#fff;cursor:pointer}
@keyframes jvChatIn{from{opacity:0;transform:translateY(10px) scale(.98)}to{opacity:1;transform:none}}
@media (max-width:600px){
 .jv-chat-launcher{right:15px;bottom:15px}
 .jv-chat-panel{right:14px;bottom:82px;height:min(510px,calc(100vh - 100px))}
}
@media (prefers-reduced-motion:reduce){.jv-chat-panel.open{animation:none}.jv-chat-launcher{transition:none}}
