/* ===== Bulina ===== */
#chat-bubble {
  position: fixed;
  bottom: 70px;
  right: 10px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #6d28d9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  z-index: 9999;
  transition: transform 0.2s ease;
}

#chat-bubble:hover {
  transform: scale(1.05);
}

/* ===== Chat Box ===== */
#chat-box {
  position: fixed;
  bottom: 140px;
  right: 10px;
  width: 300px;
  height: 380px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
}

#chat-header {
  background: linear-gradient(135deg, #2563eb, #6d28d9);
  color: #fff;
  padding: 10px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

#chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.4;
}

.chat-msg {
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
}

.chat-msg.user {
  background: #2563eb;
  color: #fff;
  margin-left: auto;
}

.chat-msg.bot {
  background: #f1f5f9;
  color: #111;
  margin-right: auto;
}

#chat-input-area {
  display: flex;
  border-top: 1px solid #e2e8f0;
}

#chat-input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
  outline: none;
}

#chat-send {
  border: none;
  background: #2563eb;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0 0 12px 0;
  transition: background 0.2s;
}

#chat-send:hover {
  background: #1e3a8a;
}

.chat-note {
  position: fixed;
  bottom: 140px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
  font-size: 14px;
}

.chat-note.show {
  opacity: 1;
  transform: translateY(0);
}

.suggest-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suggest-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.suggest-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-suggest-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.chat-suggest-btn:hover {
  background: #f8fafc;
}