.aukcion-chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1080;
  font-family: inherit;
}

.aukcion-chatbot-toggle {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #5b35d5);
  box-shadow: 0 18px 45px rgba(13, 110, 253, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.aukcion-chatbot-toggle:hover,
.aukcion-chatbot-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(13, 110, 253, .45);
}

.aukcion-chatbot-pulse {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 6px;
  top: 6px;
  border-radius: 999px;
  background: #22c55e;
  border: 3px solid #fff;
}

.aukcion-chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(380px, calc(100vw - 28px));
  height: min(620px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, .1);
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .24);
}

.aukcion-chatbot-panel[hidden] {
  display: none;
}

.aukcion-chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #5b35d5);
}

.aukcion-chatbot-avatar {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.aukcion-chatbot-header strong,
.aukcion-chatbot-header span {
  display: block;
  line-height: 1.2;
}

.aukcion-chatbot-header span {
  margin-top: 3px;
  font-size: .82rem;
  opacity: .86;
}

.aukcion-chatbot-close {
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  width: 36px;
  height: 36px;
  color: #fff;
  background: rgba(255,255,255,.16);
}

.aukcion-chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.aukcion-chatbot-message {
  display: flex;
  margin-bottom: 10px;
}

.aukcion-chatbot-message > div {
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: .94rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.aukcion-chatbot-message a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.aukcion-chatbot-message.is-bot {
  justify-content: flex-start;
}

.aukcion-chatbot-message.is-bot > div {
  color: #172033;
  background: #eef4ff;
  border-bottom-left-radius: 6px;
}

.aukcion-chatbot-message.is-user {
  justify-content: flex-end;
}

.aukcion-chatbot-message.is-user > div {
  color: #fff;
  background: #0d6efd;
  border-bottom-right-radius: 6px;
}

.aukcion-chatbot-message.is-typing > div {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.aukcion-chatbot-message.is-typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: .45;
  animation: aukcionChatbotTyping 1s infinite ease-in-out;
}

.aukcion-chatbot-message.is-typing span:nth-child(2) { animation-delay: .15s; }
.aukcion-chatbot-message.is-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes aukcionChatbotTyping {
  0%, 80%, 100% { transform: translateY(0); opacity: .35; }
  40% { transform: translateY(-4px); opacity: .9; }
}

.aukcion-chatbot-quick {
  display: flex;
  gap: 8px;
  padding: 10px 12px 0;
  overflow-x: auto;
  background: #fff;
}

.aukcion-chatbot-quick button {
  white-space: nowrap;
  border: 1px solid rgba(13, 110, 253, .18);
  border-radius: 999px;
  padding: 7px 10px;
  color: #0d6efd;
  background: #f3f7ff;
  font-size: .82rem;
  font-weight: 700;
}

.aukcion-chatbot-form {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.aukcion-chatbot-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  padding: 11px 13px;
  outline: none;
}

.aukcion-chatbot-form input:focus {
  border-color: rgba(13, 110, 253, .55);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, .1);
}

.aukcion-chatbot-form button {
  width: 46px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: #0d6efd;
}

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

  .aukcion-chatbot-panel {
    right: -6px;
    bottom: 72px;
    height: min(580px, calc(100vh - 96px));
  }
}

/* Chatbot v4: more quick-question buttons */
.aukcion-chatbot-quick {
  flex-wrap: wrap;
  max-height: 96px;
  overflow-y: auto;
}

.aukcion-chatbot-quick button {
  cursor: pointer;
}
