/* Slorify Live-Chat — Floating FAB + Slide-up Panel */

/* ─── FAB / Bubble unten rechts ─── */
.slorify-chat-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 9998;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #e63946 0%, #d22f3c 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 32px -10px rgba(230,57,70,0.6), 0 4px 12px -4px rgba(0,0,0,0.4);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.slorify-chat-fab:hover  { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(230,57,70,0.7), 0 6px 16px -4px rgba(0,0,0,0.5); }
.slorify-chat-fab:active { transform: translateY(0); }
.slorify-chat-fab:focus-visible { outline: 3px solid rgba(255,255,255,0.6); outline-offset: 3px; }

.slorify-chat-fab__icon { transition: opacity .18s ease, transform .18s ease; }
.slorify-chat-fab__icon--close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.6); }
.slorify-chat-fab.is-open .slorify-chat-fab__icon--chat  { opacity: 0; transform: rotate(90deg) scale(0.6); }
.slorify-chat-fab.is-open .slorify-chat-fab__icon--close { opacity: 1; transform: rotate(0)    scale(1);   }

.slorify-chat-fab__notif {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  background: #0a0a0a; color: #fff;
  font: 700 11px/18px 'Plus Jakarta Sans', system-ui, sans-serif;
  text-align: center;
  border: 2px solid #fff;
  transform: scale(0);
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.slorify-chat-fab__notif.is-on { transform: scale(1); animation: slorify-fab-pulse 1.6s ease-out 1; }
@keyframes slorify-fab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,57,70,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

/* ─── Panel ─── */
.slorify-chat-panel {
  position: fixed;
  right: 24px; bottom: 96px;
  z-index: 9999;
  width: 380px; max-width: calc(100vw - 32px);
  height: min(580px, calc(100vh - 120px));
  border-radius: 18px;
  overflow: hidden;
  background: #0f0f10;
  box-shadow: 0 28px 60px -20px rgba(0,0,0,0.55), 0 8px 20px -8px rgba(0,0,0,0.4);
  transform-origin: bottom right;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s cubic-bezier(0.16, 1, 0.3, 1), opacity .18s ease;
}
.slorify-chat-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.slorify-chat-panel[hidden] { display: none; }

/* ─── Inner Chat (innerhalb Panel) ─── */
.slorify-chat {
  --chat-radius: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  background: #0f0f10;
  border: none;
  padding: 18px 18px 14px;
  display: flex; flex-direction: column;
  height: 100%;
  position: relative;
}

.slorify-chat__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid #1f1f1f; margin-bottom: 10px;
}
.slorify-chat__head-text { min-width: 0; flex: 1; }
.slorify-chat__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #e63946 0%, #d22f3c 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.04em; font-size: 15px; flex-shrink: 0;
}
.slorify-chat__title { color: #fff; font-weight: 700; font-size: 14px; line-height: 1.2; }
.slorify-chat__sub {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.slorify-chat__livedot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #e63946; box-shadow: 0 0 0 0 rgba(230,57,70,0.7);
  animation: slorify-chat-pulse 2.2s infinite; vertical-align: middle; margin-right: 6px;
}
@keyframes slorify-chat-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,57,70,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}
.slorify-chat__counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.35);
  margin-left: auto; flex-shrink: 0;
}
.slorify-chat__close {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(255,255,255,0.55);
  border: none; border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.slorify-chat__close:hover { background: rgba(255,255,255,0.08); color: #fff; }
.slorify-chat__close:focus-visible { outline: 2px solid #e63946; outline-offset: 1px; }

/* F2 URL-Preview-Card */
.slorify-chat__preview {
  display: flex; gap: 10px; align-self: flex-start; max-width: 84%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 8px;
  text-decoration: none; color: inherit;
  transition: background .15s ease;
}
.slorify-chat__preview:hover { background: rgba(255,255,255,0.06); }
.slorify-chat__preview--user { align-self: flex-end; }
.slorify-chat__preview-img {
  width: 64px; height: 64px; object-fit: cover; border-radius: 6px; flex-shrink: 0;
}
.slorify-chat__preview-body { min-width: 0; flex: 1; }
.slorify-chat__preview-site {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45);
}
.slorify-chat__preview-title {
  color: #fff; font-weight: 600; font-size: 13px; line-height: 1.3; margin-top: 1px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.slorify-chat__preview-desc {
  color: rgba(255,255,255,0.65); font-size: 12px; line-height: 1.4; margin-top: 2px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.slorify-chat__preview-url {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  color: rgba(255,255,255,0.4); margin-top: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* F1 Datei-Upload — Picker-Button + Image/File-Bubbles + Drop-Zone */
.slorify-chat__fileinput { display: none; }
.slorify-chat__attach {
  width: 36px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
  transition: background .15s ease, color .15s ease;
}
.slorify-chat__attach:hover { background: rgba(99,102,241,0.15); color: #c7d2fe; border-color: rgba(99,102,241,0.4); }
.slorify-chat__mic {
  width: 36px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
  transition: background .15s ease, color .15s ease;
}
.slorify-chat__mic:hover { background: rgba(230,57,70,.15); color: #fca5a5; border-color: rgba(230,57,70,.4); }
.slorify-chat__mic.is-recording {
  background: #e63946; color: #fff; border-color: #e63946;
  animation: slorify-rec-pulse 1.4s infinite;
}
@keyframes slorify-rec-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,.7); }
  50%      { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}
.slorify-chat__rec-timer {
  background: rgba(230,57,70,.15); color: #fca5a5;
  border: 1px solid rgba(230,57,70,.4);
  border-radius: 8px; padding: 6px 10px; margin-bottom: 6px;
  font-size: 12px; font-family: 'JetBrains Mono', monospace;
}
.slorify-chat__attach-audio { width: 100%; max-width: 240px; height: 38px; }
.slorify-chat__msg--attach { padding: 6px 8px; }
.slorify-chat__attach-img {
  display: block; max-width: 240px; max-height: 240px;
  border-radius: 8px; cursor: zoom-in;
}
.slorify-chat__attach-cap {
  font-size: 11.5px; opacity: .6; margin-top: 4px;
}
.slorify-chat__attach-file {
  display: inline-flex; align-items: center; gap: 6px;
  color: inherit; text-decoration: underline;
}
.slorify-chat__attach-meta { font-size: 11px; opacity: .5; margin-left: 8px; }

.slorify-chat.is-dragover {
  outline: 2px dashed rgba(99,102,241,.6);
  outline-offset: -8px;
  background: rgba(99,102,241,.04);
}

/* F8 Sound-Mute-Toggle im Header */
.slorify-chat__mute {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(255,255,255,0.45);
  border: none; border-radius: 8px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.slorify-chat__mute:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* F6 Quick-Antwort-Buttons unter Bot-Bubble */
.slorify-chat__quick {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-self: flex-start; max-width: 92%;
  padding: 4px 0 0 4px;
}
.slorify-chat__quick.is-used { opacity: 0.55; }
.slorify-chat__quick-btn {
  background: rgba(99,102,241,0.12);
  color: #c7d2fe;
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: 999px;
  padding: 7px 13px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.slorify-chat__quick-btn:hover:not(:disabled) {
  background: #6366f1; color: #fff; transform: translateY(-1px);
}
.slorify-chat__quick-btn:disabled { cursor: default; opacity: 0.5; }

/* ─── Stream / Messages ─── */
.slorify-chat__stream {
  flex: 1; overflow-y: auto; padding: 6px 4px 10px;
  display: flex; flex-direction: column; gap: 10px;
  scroll-behavior: smooth;
}
.slorify-chat__msg {
  max-width: 84%; padding: 10px 13px; border-radius: 12px;
  font-size: 14px; line-height: 1.55;
  word-wrap: break-word; overflow-wrap: anywhere;
}
.slorify-chat__msg--bot {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.92);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.slorify-chat__msg--user {
  background: #e63946; color: #fff;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.slorify-chat__msg--operator {
  background: #1c2030; color: #e0e7ff;
  align-self: flex-start; border-bottom-left-radius: 4px;
  border: 1px solid rgba(99,102,241,0.35);
}

/* Pre-Handover Wartezeit-Bar */
.slorify-chat__waitbar {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.35);
  color: #c7d2fe;
  font-size: 12.5px; line-height: 1.4;
  padding: 8px 12px; border-radius: 8px;
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 10px;
}
.slorify-chat__waitbar-dot {
  display: inline-block; width: 8px; height: 8px; flex-shrink: 0;
  border-radius: 50%; background: #6366f1;
  box-shadow: 0 0 0 0 rgba(99,102,241,.7);
  animation: slorify-chat-pulse 1.6s infinite;
}

/* DSGVO-Consent-Gate: erscheint vor dem ersten /start im Stream.
   Klar lesbar, prominenter Accept-Button, deaktiviert bis Checkbox geklickt. */
.slorify-chat__consent {
  background: #14161e;
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: 12px;
  padding: 16px 16px 14px;
  margin: 6px 0;
  color: #e4e7ee;
  font-size: 13px; line-height: 1.55;
}
.slorify-chat__consent-head {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 14.5px; color: #fff;
  margin-bottom: 8px;
}
.slorify-chat__consent-body p { margin: 6px 0; }
.slorify-chat__consent-body ul {
  list-style: none; padding: 4px 0; margin: 6px 0;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px;
}
.slorify-chat__consent-body li {
  padding: 4px 0 4px 16px; position: relative;
  color: rgba(255,255,255,0.78);
}
.slorify-chat__consent-body li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 4px; height: 4px; border-radius: 50%; background: #6366f1;
}
.slorify-chat__consent-body strong { color: #fff; }
.slorify-chat__consent-body a { color: #a5b4fc; text-decoration: underline; }

.slorify-chat__consent-actions {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
.slorify-chat__consent-check {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; color: rgba(255,255,255,0.85); cursor: pointer;
  line-height: 1.4;
}
.slorify-chat__consent-check input[type="checkbox"] {
  margin-top: 2px; flex-shrink: 0;
  accent-color: #e63946;
  width: 16px; height: 16px;
}
.slorify-chat__consent-buttons {
  display: flex; gap: 8px; justify-content: flex-end;
}
.slorify-chat__consent-cancel {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 9px 14px;
  font-family: inherit; font-size: 13px; cursor: pointer;
}
.slorify-chat__consent-cancel:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.slorify-chat__consent-accept {
  background: #e63946; color: #fff; border: none;
  border-radius: 8px; padding: 9px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13.5px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, opacity .15s ease;
}
.slorify-chat__consent-accept:hover:not(:disabled) { background: #d22f3c; transform: translateY(-1px); }
.slorify-chat__consent-accept:disabled { opacity: 0.45; cursor: not-allowed; }

/* User-Wait-Display: zeigt „wartest seit X Sek." über dem Compose-Feld bei Operator-Modus */
.slorify-chat__userwait {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(99,102,241,0.25);
  color: rgba(255,255,255,0.75);
  font-size: 12px; line-height: 1.3;
  padding: 6px 10px; border-radius: 6px;
  margin: 0 0 8px;
  display: flex; align-items: center; gap: 8px;
}
.slorify-chat__userwait strong { color: #fff; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.slorify-chat__userwait-dot {
  display: inline-block; width: 7px; height: 7px; flex-shrink: 0;
  border-radius: 50%; background: #6366f1;
  animation: slorify-chat-pulse 1.6s infinite;
}

/* Reset-Button („Neue Anfrage starten →") nach chat:closed */
.slorify-chat__reset-btn {
  align-self: center;
  margin-top: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(230,57,70,0.4);
  background: rgba(230,57,70,0.12);
  color: #fca5a5;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 13.5px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.slorify-chat__reset-btn:hover {
  background: #e63946; color: #fff; border-color: #e63946;
}

/* Operator-Typing-Indicator (kleines Label vor den 3 Punkten) */
.slorify-chat__msg--typing-op { padding: 8px 12px; opacity: 0.85; }
.slorify-chat__typing-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-right: 6px;
}
.slorify-chat__msg--system {
  background: transparent; color: rgba(255,255,255,0.45);
  font-size: 11.5px; text-align: center; align-self: center;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em;
}
.slorify-chat__msg .typing { display: inline-flex; gap: 4px; }
.slorify-chat__msg .typing span {
  width: 6px; height: 6px; background: rgba(255,255,255,0.6); border-radius: 50%;
  animation: slorify-chat-bounce 1.4s infinite ease-in-out both;
}
.slorify-chat__msg .typing span:nth-child(1) { animation-delay: -0.32s; }
.slorify-chat__msg .typing span:nth-child(2) { animation-delay: -0.16s; }
@keyframes slorify-chat-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* ─── Compose — mobile-first Layout, Buttons fix-quadratisch ─── */
.slorify-chat__compose {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid #1f1f1f;
  display: grid;
  grid-template-columns: 36px 36px minmax(0, 1fr) auto;
  gap: 6px;
  align-items: end;
}
.slorify-chat__compose textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: #fff;
  font-family: inherit; font-size: 14px;
  padding: 9px 12px; resize: none;
  min-height: 38px; max-height: 110px; line-height: 1.45;
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.slorify-chat__compose textarea:focus {
  outline: none; border-color: #e63946; background: rgba(255,255,255,0.06);
}
.slorify-chat__compose textarea::placeholder { color: rgba(255,255,255,0.4); }

/* Send-Button: Desktop mit Text + Pfeil, Mobile nur Pfeil-Icon (svg) */
.slorify-chat__compose button[aria-label="Senden"] {
  flex-shrink: 0;
  background: #e63946; color: #fff;
  border: none; border-radius: 10px;
  padding: 0 14px; min-width: 44px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13.5px;
  cursor: pointer;
  height: 38px;
  transition: background .15s ease, transform .15s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.slorify-chat__compose button[aria-label="Senden"]:hover:not(:disabled) { background: #d22f3c; transform: translateY(-1px); }
.slorify-chat__compose button[aria-label="Senden"]:disabled              { opacity: 0.5; cursor: not-allowed; transform: none; }

.slorify-chat__honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ─── Finalize / Success / Error ─── */
.slorify-chat__finalize {
  margin: 10px 0 0; padding: 14px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.4);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 10px;
}
.slorify-chat__finalize-text { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.55; }
.slorify-chat__finalize button {
  background: #fff; color: #0a0a0a;
  border: none; border-radius: 999px;
  padding: 10px 18px; font-weight: 700; font-size: 13.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; align-self: flex-start;
  transition: background .15s ease, color .15s ease;
}
.slorify-chat__finalize button:hover { background: #e63946; color: #fff; }

.slorify-chat__success {
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.4);
  padding: 22px;
  border-radius: 10px; color: #fff; text-align: center;
  margin: auto 8px;
}
.slorify-chat__success h4 { font-family:'Plus Jakarta Sans', sans-serif; font-size: 17px; margin-bottom: 8px; }
.slorify-chat__success p  { color: rgba(255,255,255,0.75); font-size: 13.5px; line-height: 1.55; margin-top: 6px; }

.slorify-chat__error {
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.4);
  padding: 12px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 13px; line-height: 1.55;
  margin: 6px 0;
}
.slorify-chat__error a { color: #e63946; text-decoration: underline; }

/* ─── Mobile: Panel fullscreen, Compose kompakter ─── */
@media (max-width: 600px) {
  .slorify-chat-fab { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .slorify-chat-panel {
    right: 0; bottom: 0; left: 0; top: 0;
    width: 100vw; max-width: 100vw;
    height: 100vh; height: 100dvh;
    border-radius: 0;
    transform: translateY(24px) scale(1);
  }
  .slorify-chat-panel.is-open { transform: translateY(0) scale(1); }
  .slorify-chat {
    padding: 12px 12px 10px;
    padding-top: max(12px, env(safe-area-inset-top, 0));
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0));
  }
  /* Compose noch kompakter — Send-Button als Icon-only */
  .slorify-chat__compose { gap: 5px; grid-template-columns: 36px 36px minmax(0, 1fr) 44px; }
  .slorify-chat__compose button[aria-label="Senden"] {
    padding: 0; min-width: 44px; width: 44px;
    font-size: 0; /* Text aus, Icon übernimmt */
    position: relative;
  }
  .slorify-chat__compose button[aria-label="Senden"]::before {
    content: ""; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>");
    background-position: center; background-repeat: no-repeat; background-size: 18px 18px;
  }
  .slorify-chat__compose textarea { font-size: 16px; /* iOS verhindert Zoom-on-Focus ab 16px */ }
  /* Header etwas kompakter */
  .slorify-chat__head { padding-bottom: 10px; margin-bottom: 8px; gap: 8px; }
  .slorify-chat__counter { display: none; }  /* spart Platz im Header */
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .slorify-chat-fab,
  .slorify-chat-panel,
  .slorify-chat-fab__icon,
  .slorify-chat-fab__notif { transition: none !important; animation: none !important; }
}
