#chat-launcher {
  position: fixed;
  bottom: 40px;
  right: 35px;
  background: #D4AF37;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  z-index: 999;
}

#chatbox {
  position: fixed;
  bottom: 150px;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  z-index: 9999 !important;
  max-height: 500px;
  overflow: hidden;
}

.hidden { 
  display: none !important; 
}

.chat-header {
  background: #D4AF37;
  color: white;
  padding: 10px;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chat-body {
  padding: 10px;
  height: 250px;
  overflow-y: auto;
  font-size: 14px;
}

.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.chat-input button {
  background: #D4AF37;
  color: white;
  border: none;
  padding: 0 15px;
}

.suggested {
  display: flex;
  padding: 10px;
  gap: 5px;
  flex-wrap: wrap;
}

.suggest-btn {
  background: #f0f0f0;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
