.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  font-family: system-ui, sans-serif;
}

/* Floating button */
.chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #0088cc;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Chat box */
.chat-box {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 260px;
  background: white;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.chat-box p {
  font-size: 14px;
  margin-bottom: 10px;
}

.chat-box input {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.chat-box button {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: #0088cc;
  color: white;
  font-weight: 600;
  cursor: pointer;
}
