
/* LumixAI Guide chatbot */
#lumix-guide-launcher{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  width:56px;
  height:56px;
  border:none;
  border-radius:999px;
  background:#1fc8a0;
  color:#081a2f;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  font:700 20px/1 'Outfit', Arial, sans-serif;
  cursor:pointer;
}
#lumix-guide-panel{
  position:fixed;
  right:18px;
  bottom:86px;
  z-index:9999;
  width:min(380px, calc(100vw - 24px));
  max-height:min(640px, calc(100vh - 110px));
  background:#081a2f;
  color:#fff;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  overflow:hidden;
  display:none;
}
#lumix-guide-panel.is-open{display:flex;flex-direction:column;}
.lumix-guide-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 16px 14px;
  background:linear-gradient(180deg, rgba(31,200,160,.18), rgba(31,200,160,.06));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.lumix-guide-brand{display:flex;align-items:center;gap:10px;}
.lumix-guide-mark{
  width:34px;height:34px;border-radius:999px;background:#1fc8a0;color:#081a2f;
  display:flex;align-items:center;justify-content:center;font:700 16px/1 'Outfit', Arial, sans-serif;
}
.lumix-guide-title{font:700 15px/1.2 'Outfit', Arial, sans-serif;}
.lumix-guide-sub{font:400 12px/1.3 'Outfit', Arial, sans-serif;color:#d3e1f4;}
.lumix-guide-close{
  background:transparent;border:none;color:#d3e1f4;font-size:22px;line-height:1;cursor:pointer;
}
.lumix-guide-body{padding:14px 14px 16px;overflow:auto;}
.lumix-guide-msg{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  border-radius:18px;
  padding:12px 14px;
  font:400 14px/1.55 'Outfit', Arial, sans-serif;
  margin-bottom:12px;
}
.lumix-guide-actions{display:grid;gap:8px;margin-top:6px;}
.lumix-guide-chip,
.lumix-guide-link{
  appearance:none;
  border:none;
  width:100%;
  text-align:left;
  border-radius:16px;
  padding:12px 14px;
  font:600 14px/1.35 'Outfit', Arial, sans-serif;
  cursor:pointer;
}
.lumix-guide-chip{
  background:#fff;
  color:#081a2f;
}
.lumix-guide-chip.alt{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
}
.lumix-guide-link{
  display:block;
  background:#1fc8a0;
  color:#081a2f;
  text-decoration:none;
}
.lumix-guide-mini{
  margin-top:10px;
  color:#9eb3cc;
  font:400 12px/1.45 'Outfit', Arial, sans-serif;
}
@media (max-width: 768px){
  #lumix-guide-launcher{right:14px;bottom:14px;width:54px;height:54px;}
  #lumix-guide-panel{right:12px;bottom:78px;width:calc(100vw - 24px);max-height:calc(100vh - 96px);}
}
