
/* AI Chatbot - Squishy4You */
.ai-chat-launcher{
  position:fixed;right:18px;bottom:92px;z-index:9999;border:0;border-radius:999px;
  background:linear-gradient(135deg,#ff77b7,#ffb6d9);color:#fff;padding:13px 16px;
  box-shadow:0 14px 35px rgba(255,119,183,.35);font-weight:800;cursor:pointer;
  display:flex;align-items:center;gap:8px;transition:transform .2s ease, box-shadow .2s ease;
}
.ai-chat-launcher:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(255,119,183,.45)}
.ai-chat-window{
  position:fixed;right:18px;bottom:150px;width:min(380px,calc(100vw - 28px));height:560px;max-height:calc(100vh - 190px);
  background:#fff;border:1px solid rgba(255,119,183,.22);border-radius:24px;z-index:9999;
  box-shadow:0 24px 60px rgba(58,33,49,.18);overflow:hidden;display:none;flex-direction:column;
}
.ai-chat-window.open{display:flex}
.ai-chat-header{background:linear-gradient(135deg,#fff1f8,#ffe5f1);padding:15px 16px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(255,119,183,.18)}
.ai-chat-title{display:flex;align-items:center;gap:10px;font-weight:900;color:#4b2439}
.ai-chat-title span{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#fff;box-shadow:0 5px 14px rgba(255,119,183,.22)}
.ai-chat-sub{font-size:12px;color:#98627c;margin-top:2px;font-weight:600}
.ai-chat-close{border:0;background:#fff;color:#9a4d74;border-radius:50%;width:34px;height:34px;cursor:pointer;font-size:18px}
.ai-chat-messages{flex:1;padding:14px;overflow:auto;background:linear-gradient(180deg,#fff,#fff8fb)}
.ai-msg{max-width:84%;padding:11px 13px;border-radius:18px;margin:8px 0;line-height:1.35;font-size:14px;white-space:pre-wrap}
.ai-msg.bot{background:#fff;border:1px solid #ffd3e7;color:#4a2740;border-bottom-left-radius:7px}
.ai-msg.user{background:#ff77b7;color:#fff;margin-left:auto;border-bottom-right-radius:7px}
.ai-quick{display:flex;gap:7px;flex-wrap:wrap;padding:0 14px 10px;background:#fff8fb}
.ai-quick button{border:1px solid #ffd0e4;background:#fff;color:#a13b70;border-radius:999px;padding:8px 10px;font-size:12px;font-weight:800;cursor:pointer}
.ai-chat-form{display:flex;gap:8px;padding:12px;border-top:1px solid rgba(255,119,183,.18);background:#fff}
.ai-chat-input{flex:1;border:1px solid #ffd0e4;border-radius:999px;padding:12px 14px;outline:none;font-size:14px;background:#fff8fb}
.ai-chat-input:focus{border-color:#ff77b7;box-shadow:0 0 0 4px rgba(255,119,183,.12)}
.ai-chat-send{border:0;border-radius:999px;background:#ff77b7;color:#fff;padding:0 16px;font-weight:900;cursor:pointer}
.ai-chat-send:disabled{opacity:.55;cursor:not-allowed}
.ai-typing{font-size:12px;color:#a86987;padding:0 16px 8px;display:none;background:#fff8fb}
@media(max-width:520px){
  .ai-chat-launcher{right:14px;bottom:84px;padding:12px 14px;font-size:13px}
  .ai-chat-window{right:10px;left:10px;bottom:138px;width:auto;height:500px;max-height:calc(100vh - 155px);border-radius:20px}
  .ai-msg{font-size:13px;max-width:88%}
}
