/* Minimal chat widget styles */
.qs2-chat { position: fixed; right: 18px; bottom: 18px; z-index: 99999; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.qs2-chat__fab {
  background: #0f6d2f; color: #fff; border: 0; border-radius: 999px;
  padding: 12px 14px; font-weight: 700; box-shadow: 0 10px 25px rgba(0,0,0,.18);
  cursor: pointer;
}
.qs2-chat__fab-dot { display:inline-block; width:8px; height:8px; background:#d4af37; border-radius:50%; margin-right:8px; }
.qs2-chat__panel {
  width: 340px; height: 420px; background: #fff; border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  overflow: hidden; margin-bottom: 10px; display: none; flex-direction: column;
}
.qs2-chat__header { background:#0b3a8f; color:#fff; padding: 10px 12px; display:flex; align-items:center; justify-content:space-between; }
.qs2-chat__title { font-weight: 800; font-size: 14px; }
.qs2-chat__close { background: transparent; border:0; color:#fff; font-size: 22px; line-height: 1; cursor:pointer; }
.qs2-chat__body { padding: 10px; overflow:auto; flex:1; background:#f7f8fb; }
.qs2-chat__msg { max-width: 85%; padding: 10px 12px; border-radius: 14px; margin: 8px 0; white-space: pre-wrap; font-size: 13px; line-height: 1.35; }
.qs2-chat__msg--user { background:#d4af37; color:#111; margin-left:auto; border-bottom-right-radius: 6px; }
.qs2-chat__msg--assistant { background:#fff; border:1px solid #e7e9f2; color:#111; border-bottom-left-radius: 6px; }
.qs2-chat__quick { display:flex; flex-wrap:wrap; gap:8px; padding: 10px; border-top:1px solid #eef1fb; background:#fff; }
.qs2-chat__chip { background:#f1f3fb; border:1px solid #dde3ff; color:#0b3a8f; font-weight:700; border-radius:999px; padding:8px 10px; font-size:12px; cursor:pointer; }
.qs2-chat__chip:hover { background:#e9edff; }
.qs2-chat__form { display:flex; gap:8px; padding: 10px; border-top:1px solid #e7e9f2; background:#fff; }
.qs2-chat__input { flex:1; border:1px solid #d9deef; border-radius: 10px; padding: 10px 10px; font-size: 13px; }
.qs2-chat__send { background:#0f6d2f; color:#fff; border:0; border-radius:10px; padding: 10px 12px; font-weight:700; cursor:pointer; }
.qs2-chat__hint { padding: 8px 10px 12px; font-size: 12px; color:#666; background:#fff; border-top:1px solid #eef1fb; }
.qs2-chat__hint a { color:#0b3a8f; font-weight:700; text-decoration:none; }
@media (max-width: 420px) {
  .qs2-chat__panel { width: 92vw; height: 60vh; }
}


