/* Global WhatsApp FAB — stacks above AI (Contact FAB hidden on mobile) */
.lmyc-whatsapp-fab {
  position: fixed;
  right: 1.5rem;
  bottom: calc(1.5rem + 4.4rem + 0.75rem);
  z-index: 220;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  min-width: 4.4rem;
  min-height: 4.4rem;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background: #25d366 !important;
  border: 0;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  text-decoration: none;
  line-height: 0;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.lmyc-whatsapp-fab:hover,
.lmyc-whatsapp-fab:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 10px 28px rgba(18, 140, 70, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  background: #1ebe57 !important;
  outline: none;
}

.lmyc-whatsapp-fab__icon {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
  fill: #fff;
  pointer-events: none;
}

/* Contact page: Contact FAB hidden — WA sits above AI (both 4.4rem) */
body.lmyc-contact-page .lmyc-whatsapp-fab {
  display: inline-flex !important;
  bottom: calc(1.5rem + 4.4rem + 0.75rem);
}

@media screen and (max-width: 749px) {
  body.lmyc-contact-page .lmyc-whatsapp-fab {
    bottom: calc(1rem + 4rem + 0.7rem);
  }
}

@media screen and (max-width: 749px) {
  .lmyc-whatsapp-fab {
    right: 1rem;
    bottom: calc(1rem + 4rem + 0.7rem);
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    min-height: 4rem;
  }

  .lmyc-whatsapp-fab__icon {
    width: 1.55rem;
    height: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmyc-whatsapp-fab {
    transition: none;
  }
}
