.fp-chat-launcher {
  position: fixed;
  right: 20px;
  bottom: calc(var(--chat-clearance, 0px) + 18px);
  z-index: 54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 56px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid #ff996c;
  border-radius: 4px;
  background: #ff7937;
  color: #091116;
  box-shadow: 0 5px 24px #0005;
  font: 700 14px Manrope, Arial, sans-serif;
  cursor: pointer;
}
.fp-chat-launcher:hover { background: #ff996c; }
.fp-chat-launcher:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.fp-chat-launcher[hidden], .fp-chat-badge[hidden] { display: none; }
.fp-chat-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  min-height: 22px;
  padding: 2px 5px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #091116;
  color: #fff;
  font-size: 11px;
  line-height: 16px;
}
@media (max-width: 699px) {
  .fp-chat-launcher { right: 16px; width: 56px; padding: 0; border-radius: 50%; }
  .fp-chat-label { display: none; }
}
@media print { .fp-chat-launcher { display: none; } }
