#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(145deg, #f5d76e, #d4af37); /* Royal gold */
  color: #222; /* Dark text for contrast */
  font-size: 28px;
  padding: 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.3),
    inset 0 2px 6px rgba(255, 255, 255, 0.6),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: luxuryPulse 2.8s infinite ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover glow */
#chatbot-icon:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 0 22px rgba(255, 215, 0, 0.9),
    0 0 40px rgba(218, 165, 32, 0.7);
}

/* Pulse animation */
@keyframes luxuryPulse {
  0% {
    box-shadow: 0 0 12px rgba(245, 215, 110, 0.4), 0 0 20px rgba(245, 215, 110, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(245, 215, 110, 0.8), 0 0 40px rgba(245, 215, 110, 0.5);
  }
  100% {
    box-shadow: 0 0 12px rgba(245, 215, 110, 0.4), 0 0 20px rgba(245, 215, 110, 0.3);
  }
}
#chatbot-window {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-height: 400px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
}
#chatbot-window.hidden { display: none; }
#chatbot-header {
  background: #ff9800;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 0 0;
}
#chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}
.message { margin: 5px 0; padding: 6px 10px; border-radius: 8px; }
.bot { background: #f1f1f1; text-align: left; }
.user { background: #ffecb3; text-align: right; }
#chatbot-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}
#chatbot-input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}
#chatbot-send {
  background: #ff9800;
  border: none;
  color: white;
  padding: 8px 12px;
  cursor: pointer;
}
.quick-options button {
  background: #eee;
  border: 1px solid #ccc;
  margin: 3px;
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
}
