.chatbot-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  font-family: Arial, Helvetica, sans-serif;
}
.chatbot-toggle {
  min-width: 58px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  cursor: pointer;
}
.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: none;
  width: min(360px, calc(100vw - 2rem));
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  transform: translateY(10px);
}
.chatbot-widget.is-open .chatbot-panel {
  display: block;
  animation: chatbotSlide .18s ease-out forwards;
}
.chatbot-header {
  padding: 1rem;
  background: #1d1d1f;
  color: #fff;
}
.chatbot-header strong { display: block; }
.chatbot-header span { color: #ddd; font-size: .9rem; }
.chatbot-messages {
  display: grid;
  gap: .6rem;
  max-height: 330px;
  padding: 1rem;
  overflow: auto;
  background: #f7f7f5;
}
.chatbot-bubble {
  max-width: 86%;
  padding: .75rem .85rem;
  border-radius: 8px;
  line-height: 1.35;
}
.chatbot-bubble.bot {
  justify-self: start;
  background: #fff;
  border: 1px solid var(--line);
}
.chatbot-bubble.user {
  justify-self: end;
  background: var(--orange);
  color: #fff;
}
.chatbot-suggestions {
  display: flex;
  gap: .4rem;
  padding: 0 1rem .75rem;
  overflow-x: auto;
  background: #f7f7f5;
}
.chatbot-suggestions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: .45rem .7rem;
  white-space: nowrap;
}
.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  padding: .8rem;
  border-top: 1px solid var(--line);
}
.chatbot-form input {
  min-height: 44px;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  padding: .75rem;
}
.chatbot-form button {
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  padding: 0 .9rem;
}
@keyframes chatbotSlide { to { transform: translateY(0); } }

