/* Marqen WhatsApp CTA Button */
.marqen-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;

  border: 1px solid rgba(0,0,0,0.12);
  background: #25D366;
  color: #fff;

  transition: transform .08s ease, opacity .12s ease;
}

.marqen-whatsapp-cta:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.marqen-whatsapp-cta:active {
  transform: translateY(0);
  opacity: .88;
}

.marqen-whatsapp-cta:focus {
  outline: 2px solid rgba(37, 211, 102, .35);
  outline-offset: 2px;
}

/* Optional: variant */
.marqen-whatsapp-cta.marqen-whatsapp-cta--outline {
  background: transparent;
  color: #111;
  border-color: rgba(0,0,0,0.18);
}
