/* public/assets/css/whatsapp_chat.css */
.wa-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.wa-chat__button {
  width: 60px;
  height: 60px;
  background: #A67B5B;            /* almond-tea accent */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10000;
}

.wa-chat__button img {
  width: 30px;
  filter: brightness(0) invert(1); /* pastikan ikon putih */
}

.wa-chat__popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  max-width: 80%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
  pointer-events: auto;
}

.wa-chat__header {
  position: relative;
  background: #A67B5B;            /* almond-tea accent */
  color: #fff;
  padding: 10px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.wa-chat__close {
  position: absolute;
  top: 5px;
  right: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.wa-chat__body {
  padding: 10px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #333333;                 /* dark grey */
  background-color: #f8f9fa;      /* very light grey */
}

.wa-chat__body p {
  margin: 0 0 10px;
}

.wa-chat__body a {
  display: inline-block;
  background: #A67B5B;            /* almond-tea accent */
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  pointer-events: auto;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.wa-chat__body a:hover {
  background-color: #8c6248;      /* sedikit gelap saat hover */
  transform: translateY(-1px);
}
