/* V7.2.1 — La Boussole widget chatbot */
.nci-boussole-launcher{
  position:fixed;
  right:1.2rem;
  bottom:1.2rem;
  z-index:99998;
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  border:1px solid rgba(200,169,106,.55);
  border-radius:999px;
  padding:.9rem 1.05rem;
  background:#0B0B0B;
  color:#F4F4F2;
  box-shadow:0 18px 50px rgba(0,0,0,.42);
  font:inherit;
  font-weight:900;
  cursor:pointer;
}
.nci-boussole-launcher span:first-child{
  width:34px;height:34px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:#C8A96A;color:#0B0B0B;
}
.nci-boussole-panel{
  position:fixed;
  right:1.2rem;
  bottom:5.4rem;
  z-index:99999;
  width:min(420px,calc(100vw - 1.4rem));
  height:min(680px,calc(100vh - 7rem));
  display:none;
  flex-direction:column;
  border:1px solid rgba(200,169,106,.35);
  border-radius:1.4rem;
  overflow:hidden;
  background:#0B0B0B;
  color:#F4F4F2;
  box-shadow:0 28px 90px rgba(0,0,0,.55);
}
.nci-boussole-panel.open{display:flex}
.nci-boussole-head{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1rem;
  border-bottom:1px solid rgba(200,169,106,.22);
  background:linear-gradient(180deg,rgba(200,169,106,.12),rgba(255,255,255,.02));
}
.nci-boussole-title{display:flex;align-items:center;gap:.7rem;font-weight:950}
.nci-boussole-title img{width:38px;height:38px;border-radius:50%}
.nci-boussole-title small{display:block;color:#C8A96A;text-transform:uppercase;letter-spacing:.12em;font-size:.65rem}
.nci-boussole-close{
  border:1px solid rgba(200,169,106,.35);
  background:transparent;color:#C8A96A;
  width:38px;height:38px;border-radius:50%;
  cursor:pointer;font-size:1.2rem;
}
.nci-boussole-messages{
  flex:1;overflow:auto;padding:1rem;
  display:grid;align-content:start;gap:.8rem;
  scroll-behavior:smooth;
}
.nci-boussole-msg{
  max-width:88%;
  padding:.82rem .92rem;
  border-radius:1rem;
  line-height:1.55;
  animation:nciBoussoleFade .18s ease both;
}
.nci-boussole-msg.bot{
  justify-self:start;
  background:#111;
  border:1px solid rgba(200,169,106,.18);
}
.nci-boussole-msg.user{
  justify-self:end;
  background:#C8A96A;
  color:#0B0B0B;
  font-weight:850;
}
.nci-boussole-msg h3{margin:.2rem 0 .6rem;color:#C8A96A;font-family:Georgia,serif}
.nci-boussole-msg ul{margin:.5rem 0 0;padding-left:1.15rem}
.nci-boussole-msg li{margin:.3rem 0}
.nci-boussole-msg a{color:#C8A96A;font-weight:900}
.nci-boussole-choices{
  padding:1rem;
  border-top:1px solid rgba(200,169,106,.22);
  display:grid;
  gap:.55rem;
  background:rgba(255,255,255,.02);
}
.nci-boussole-choice{
  border:1px solid rgba(200,169,106,.35);
  border-radius:.95rem;
  background:rgba(255,255,255,.035);
  color:#F4F4F2;
  padding:.82rem .9rem;
  font:inherit;
  font-weight:850;
  text-align:left;
  cursor:pointer;
}
.nci-boussole-choice:hover,.nci-boussole-choice.primary{
  background:#C8A96A;color:#0B0B0B;
}
.nci-boussole-note{
  color:#AAA69A;
  font-size:.78rem;
  line-height:1.4;
  margin:.2rem 0 0;
}
@keyframes nciBoussoleFade{from{opacity:0;transform:translateY(5px)}to{opacity:1;transform:none}}
@media(max-width:640px){
  .nci-boussole-launcher{
    right:.85rem;bottom:.85rem;
    padding:.82rem .95rem;
  }
  .nci-boussole-panel{
    right:.55rem;left:.55rem;bottom:4.9rem;
    width:auto;
    height:min(680px,calc(100vh - 6rem));
    border-radius:1.1rem;
  }
}
