.innovare-chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1080;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.chatbot-toggle {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #0A6ED1, #00A3FF);
  box-shadow: 0 18px 42px rgba(10, 110, 209, .36);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(380px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 120px));
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 242, .95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(11, 34, 57, .22);
}

.innovare-chatbot.is-open .chatbot-panel {
  display: flex;
}

.chatbot-header {
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #0B2239, #0057B8);
}

.chatbot-header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.chatbot-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: .86rem;
}

.chatbot-body {
  padding: 16px;
  overflow-y: auto;
  background: #F8FAFC;
}

.chatbot-message {
  max-width: 88%;
  margin-bottom: 12px;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: .92rem;
  line-height: 1.45;
}

.chatbot-message.bot {
  color: #102A43;
  background: #ffffff;
  border: 1px solid #DDE7F2;
}

.chatbot-message.user {
  margin-left: auto;
  color: #ffffff;
  background: #0A6ED1;
}

.chatbot-suggestions {
  display: grid;
  gap: 8px;
  margin: 8px 0 14px;
}

.chatbot-suggestion {
  border: 1px solid #CFE0F3;
  border-radius: 8px;
  padding: 9px 10px;
  text-align: left;
  color: #0057B8;
  background: #ffffff;
  font-weight: 700;
  font-size: .88rem;
}

.chatbot-suggestion:hover {
  border-color: #0A6ED1;
  background: #EAF5FF;
}

.chatbot-footer {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #DDE7F2;
  background: #ffffff;
}

.chatbot-input {
  flex: 1;
  min-width: 0;
  border: 1px solid #DDE7F2;
  border-radius: 8px;
  padding: 11px 12px;
  color: #0B2239;
  font-size: .92rem;
}

.chatbot-input:focus {
  outline: none;
  border-color: #0A6ED1;
  box-shadow: 0 0 0 .18rem rgba(10, 110, 209, .12);
}

.chatbot-send {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #ffffff;
  background: #0A6ED1;
  font-weight: 800;
}

.chatbot-disclaimer {
  padding: 0 12px 12px;
  color: #5D6B7A;
  background: #ffffff;
  font-size: .76rem;
}

@media (max-width: 575px) {
  .innovare-chatbot {
    right: 14px;
    bottom: 14px;
  }

  .chatbot-panel {
    right: -2px;
    bottom: 74px;
  }
}
