/* NOVARIS CLEAN – globale WhatsApp-Pulsanimation, Kontaktseite ausgenommen */
@keyframes novarisWhatsappGoldPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(5,5,5,.88),
      0 12px 28px rgba(0,0,0,.48),
      0 0 15px rgba(214,175,89,.42);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(5,5,5,.88),
      0 14px 32px rgba(0,0,0,.52),
      0 0 30px rgba(214,175,89,.78);
  }
}

@keyframes novarisWhatsappGoldRing {
  0%, 100% { opacity: .74; transform: scale(1); }
  50% { opacity: .16; transform: scale(1.13); }
}

/* Globale Animation auf allen Routen außer /kontakt.
   novaris-route-contact sitzt auf <html>; der data-loc-Fallback deckt SPA-Wechsel ab. */
html:not(.novaris-route-contact) body:not(.is-contact-route):not(:has([data-loc*="client/src/pages/Kontakt.tsx"])) a#novaris-global-whatsapp {
  animation: novarisWhatsappGoldPulse 2.8s ease-in-out infinite !important;
}

html:not(.novaris-route-contact) body:not(.is-contact-route):not(:has([data-loc*="client/src/pages/Kontakt.tsx"])) a#novaris-global-whatsapp::after {
  animation: novarisWhatsappGoldRing 2.8s ease-out infinite !important;
  border-color: rgba(247,230,173,.88) !important;
}

/* Kontaktseite: nie pulsieren, unabhängig davon, ob die Route direkt oder per SPA geladen wurde. */
html.novaris-route-contact a#novaris-global-whatsapp,
html.novaris-route-contact a#novaris-global-whatsapp::after,
body.is-contact-route a#novaris-global-whatsapp,
body.is-contact-route a#novaris-global-whatsapp::after,
body:has([data-loc*="client/src/pages/Kontakt.tsx"]) a#novaris-global-whatsapp,
body:has([data-loc*="client/src/pages/Kontakt.tsx"]) a#novaris-global-whatsapp::after {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html:not(.novaris-route-contact) body:not(.is-contact-route):not(:has([data-loc*="client/src/pages/Kontakt.tsx"])) a#novaris-global-whatsapp,
  html:not(.novaris-route-contact) body:not(.is-contact-route):not(:has([data-loc*="client/src/pages/Kontakt.tsx"])) a#novaris-global-whatsapp::after {
    animation: none !important;
  }
}

/* Direct visible pulse override for the gold WhatsApp control. */
@keyframes novarisWhatsappGoldPulseDirect { 0%,100% { transform:scale(1); box-shadow:0 0 0 4px rgba(5,5,5,.88),0 10px 24px rgba(0,0,0,.45),0 0 12px rgba(214,175,89,.4); } 50% { transform:scale(1.1); box-shadow:0 0 0 7px rgba(247,230,173,.52),0 14px 32px rgba(0,0,0,.52),0 0 34px rgba(247,230,173,.98); } }
html:not(.novaris-route-contact) body:not(.is-contact-route) a#novaris-global-whatsapp { animation:novarisWhatsappGoldPulseDirect 1.8s ease-in-out infinite !important; transform-origin:center center !important; }

html:not(.novaris-route-contact) body:not(.is-contact-route):not(:has([data-loc*="client/src/pages/Kontakt.tsx"])) a#novaris-global-whatsapp { animation-name:novarisWhatsappGoldPulseDirect !important; animation-duration:1.8s !important; animation-iteration-count:infinite !important; }
