.chatbot-trigger {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--green-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
}

.chatbot-panel {
  position: fixed;
  right: 16px;
  bottom: 70px;
  width: min(320px, 90vw);
  max-height: 70vh;
  z-index: 95;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-soft);
}

.chatbot-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chatbot-output {
  min-height: 80px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 10px;
  font-size: 13px;
  background: var(--chip-bg);
  color: var(--text-main);
}

.chatbot-form {
  display: flex;
  gap: 8px;
}

.chatbot-form input {
  flex: 1;
}

.chatbot-contact {
  display: grid;
  gap: 6px;
}

.chatbot-contact input {
  width: 100%;
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chatbot-quick button {
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}
