.novare-chatbot {
  position: fixed;
  right: 32px;
  bottom: 42px;
  z-index: 9999;
  font-family: var(--font-sans, 'Poppins', sans-serif);
}

.novare-chatbot * {
  box-sizing: border-box;
}

.novare-chatbot__launcher {
  position: relative;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: linear-gradient(145deg, #000 0%, #071321 42%, #006ded 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 22px 55px rgba(0,0,0,.30), 0 0 0 8px rgba(0,109,237,.08);
  display: grid;
  place-items: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  isolation: isolate;
}

.novare-chatbot__launcher::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}

.novare-chatbot__launcher:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 75px rgba(0,0,0,.36), 0 0 0 10px rgba(0,109,237,.12);
}

.novare-chatbot__launcher-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.08em;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0,0,0,.32);
}

.novare-chatbot__launcher-pulse {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(0,109,237,.55);
  animation: novareChatbotPulse 2s ease-out infinite;
}

@keyframes novareChatbotPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,109,237,.55); }
  70% { box-shadow: 0 0 0 12px rgba(0,109,237,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,109,237,0); }
}

.novare-chatbot__panel {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: min(410px, calc(100vw - 32px));
  max-height: min(700px, calc(100vh - 150px));
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 36px 95px rgba(0,0,0,.28);
}

.novare-chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #000 0%, #050505 56%, #006ded 160%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.novare-chatbot__header strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: .02em;
}

.novare-chatbot__header span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.novare-chatbot__close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.novare-chatbot__close:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.36);
  transform: rotate(90deg);
}

.novare-chatbot__messages {
  height: 360px;
  max-height: calc(100vh - 365px);
  overflow-y: auto;
  padding: 18px;
  background: linear-gradient(180deg, #f8f8f8 0%, #f1f4f8 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.novare-chatbot__message {
  width: fit-content;
  max-width: 88%;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-line;
}

.novare-chatbot__message--bot {
  align-self: flex-start;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 32px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.04);
}

.novare-chatbot__message--user {
  align-self: flex-end;
  background: #006ded;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,109,237,.22);
}

.novare-chatbot__message a {
  display: inline-block;
  margin-top: 8px;
  color: #006ded;
  font-weight: 900;
  text-decoration: none;
}

.novare-chatbot__message a:hover {
  text-decoration: underline;
}

.novare-chatbot__quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-top: 1px solid rgba(0,0,0,.07);
  background: #fff;
}

.novare-chatbot__quick-actions button {
  border: 1px solid rgba(0,109,237,.18);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(0,109,237,.08);
  color: #006ded;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .04em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.novare-chatbot__quick-actions button:hover {
  background: #006ded;
  border-color: #006ded;
  color: #fff;
  transform: translateY(-1px);
}

.novare-chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px 18px 18px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.05);
}

.novare-chatbot__form input {
  min-width: 0;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 13px 15px;
  font: inherit;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.novare-chatbot__form input:focus {
  border-color: #006ded;
  box-shadow: 0 0 0 4px rgba(0,109,237,.12);
}

.novare-chatbot__form button {
  border: 0;
  border-radius: 999px;
  padding: 0 17px;
  background: #000;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.novare-chatbot__form button:hover {
  background: #006ded;
  transform: translateY(-1px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .novare-chatbot {
    right: 18px;
    bottom: 24px;
  }

  .novare-chatbot__launcher {
    width: 60px;
    height: 60px;
  }

  .novare-chatbot__panel {
    right: 0;
    bottom: 78px;
    width: calc(100vw - 28px);
    border-radius: 24px;
  }

  .novare-chatbot__messages {
    height: 320px;
  }
}


/* NOVARE V51 — chatbot restored: fixed visible placement */
.novare-chatbot{right:32px!important;bottom:42px!important;}
.novare-chatbot__launcher-pulse{right:9px!important;}
@media (max-width:640px){
  .novare-chatbot{right:18px!important;bottom:24px!important;}
  .novare-chatbot__panel{right:0!important;}
}
