/* ==== CHATBOT STYLISH SNEAKERS ==== */
.chatbot-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 3500;
  font-family: "Poppins", Arial, sans-serif;
}

.chatbot-toggle {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #ff7b00;
  color: white;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 123, 0, 0.35);
}

.chatbot-panel {
  display: none;
  width: 340px;
  max-width: calc(100vw - 28px);
  height: 470px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid #eeeeee;
}

.chatbot-panel.active {
  display: flex;
  flex-direction: column;
}

.chatbot-header {
  background: #111111;
  color: white;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header strong {
  font-size: 15px;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f7f7f7;
}

.chatbot-message {
  max-width: 86%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.4;
  font-size: 14px;
}

.chatbot-message.bot {
  background: white;
  color: #222;
  border: 1px solid #e6e6e6;
  border-bottom-left-radius: 4px;
}

.chatbot-message.user {
  background: #ff7b00;
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: white;
  border-top: 1px solid #eeeeee;
}

.chatbot-input {
  flex: 1;
  border: 1px solid #cccccc;
  border-radius: 12px;
  padding: 10px;
  outline: none;
  font-size: 14px;
}

.chatbot-send {
  border: none;
  border-radius: 12px;
  background: #111111;
  color: white;
  font-weight: 800;
  padding: 0 14px;
  cursor: pointer;
}

.chatbot-send:disabled {
  background: #777777;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .chatbot-widget {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    width: calc(100vw - 24px);
    height: 430px;
  }
}
