.ai-chat-popup {
  position: fixed;
  right: 25px;
  bottom: 90px;
  width: 360px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  flex-direction: column;
  z-index: 99999;
  display: none;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}
.ai-chat-header {
  background: linear-gradient(90deg,#E90A7C,#FF205C);
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-chat-messages {
  flex: 1;
  padding: 12px;
  height: 300px;
  overflow-y: auto;
  background: #fafafa;
}
.ai-chat-input {
  display: flex;
  border-top: 1px solid #eee;
}
.ai-chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
}
.ai-chat-input button {
  background: #E90A7C;
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
}
.ai-chat-button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: linear-gradient(90deg,#E90A7C,#FF205C);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
  z-index: 9999;
}
.ai-admin-crawl {
  border-top: 1px solid #eee;
  padding: 10px;
  background: #f9f9f9;
  text-align: center;
}
.crawl-btn {
  background: linear-gradient(90deg,#6a11cb,#2575fc);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.crawl-btn:hover {
  opacity: 0.9;
}
.ai-chat-popup {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}
.ai-chat-popup[style*="display: flex"] {
  transform: translateY(0);
  opacity: 1;
}
