/* ==========================================================================
   social_proof_toasts.css — CD-A3b (18.09.2026)
   Ersetzt die 3 statischen style="-Attribute des Social-Proof-Toasts durch
   spt-*-Klassen — Werte 1:1, unlayered. Toast-Ein/Ausblenden passiert per
   JS-Inline (transform/opacity) — Inline schlägt Klasse, identisches
   Verhalten zum frueheren Inline-Basiszustand.
   ========================================================================== */
.spt-container {
  margin-bottom: calc(4.5rem + env(safe-area-inset-bottom)) !important;
  max-width: 380px;
  pointer-events: none;
}
.spt-toast {
  pointer-events: auto;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.spt-close { font-size: 0.65rem; }
