/* AN Chat UI Bridge — smooth hide/show for CTA while chat is open */
.an-ask-pill {
  transition: opacity .28s ease, transform .28s ease, visibility .28s linear;
  will-change: opacity, transform;
}
body.an-chat-active .an-ask-pill {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(.92);
}
