/* Floating Contact FAB (mobile only) */
/*public_html/services/assets/css/contact-fab.css  */

.contact-fab{
  position: fixed;
  left: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 120; /* higher to sit above sheets */
  width: 48px; height: 48px; border-radius: 999px;
  background: #111; color: #fff; border: 0;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  cursor: pointer;
}
/* Hidden on desktop; comment this block out to test on desktop */
@media (min-width: 769px){ .contact-fab{ display: none; } }

/* If the cart bar is visible, lift the FAB above it */
body.has-cartbar .contact-fab{
  bottom: calc(76px + env(safe-area-inset-bottom));
}
