/* Ana whisper bubble — anchored just above the Ana launcher. */
.anan-whisper {
  position: fixed; z-index: 99998;
  right: 24px; bottom: 92px;
  max-width: 280px; padding: 14px 34px 14px 16px;
  background: #FFFDF8; color: #2b2b28;
  border: 1px solid rgba(149, 131, 89, .35); border-radius: 14px 14px 4px 14px;
  box-shadow: 0 10px 34px rgba(37, 42, 44, .22);
  font: 400 13.5px/1.5 Montserrat, sans-serif;
  cursor: pointer;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.anan-whisper.is-in { opacity: 1; transform: none; }
.anan-whisper::after {
  content: ""; position: absolute; right: 18px; bottom: -7px;
  width: 12px; height: 12px; transform: rotate(45deg);
  background: #FFFDF8;
  border-right: 1px solid rgba(149, 131, 89, .35);
  border-bottom: 1px solid rgba(149, 131, 89, .35);
}
.anan-whisper__x {
  position: absolute; top: 6px; right: 6px;
  width: 22px; height: 22px; border: 0; border-radius: 50%;
  background: none; color: #9b958a; font-size: 14px; line-height: 1;
  cursor: pointer;
}
.anan-whisper__x:hover { background: rgba(149, 131, 89, .12); color: #55524a; }
@media (max-width: 767px) {
  .anan-whisper { right: 12px; left: auto; bottom: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  .anan-whisper { transition: none; transform: none; }
}