/*
 * HolDent — Floating WhatsApp CTA (desktop)
 */

.holdent-floating-cta {
  position: fixed;
  right: var(--space-lg);
  bottom: var(--space-lg);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--color-whatsapp);
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: var(--z-sticky-cta);
  transition: transform var(--transition-fast);
}

@media (min-width: 1024px) {
  .holdent-floating-cta { display: inline-flex; }
}

.holdent-floating-cta:hover {
  transform: scale(1.05);
}
