/* BrookCherit WhatsApp — fixed left (AI assistant stays on the right) */
.bc-whatsapp-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 10053;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.bc-whatsapp-fab:hover,
.bc-whatsapp-fab:focus-visible {
  color: #fff;
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.bc-whatsapp-fab__icon {
  font-size: 1.65rem;
  line-height: 1;
}

.bc-whatsapp-fab__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.bc-whatsapp-fab__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  opacity: 0;
  pointer-events: none;
  animation: bc-whatsapp-pulse 2s ease-out 3;
}

@keyframes bc-whatsapp-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@media (max-width: 575.98px) {
  .bc-whatsapp-fab {
    left: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 0 14px 0 12px;
  }

  .bc-whatsapp-fab__label {
    font-size: 0.78rem;
  }
}
