/* Slorify Cookie-Consent-Banner — DSGVO-konform, Consent-Mode v2 */
.slorify-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 2147483645;
  max-width: 880px; margin: 0 auto;
  background: #0a0a0a; color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.5);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14.5px; line-height: 1.55;
  display: none;
}
.slorify-consent.is-visible { display: block; animation: slorifyConsentIn .25s ease-out; }
@keyframes slorifyConsentIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slorify-consent__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 16.5px;
  letter-spacing: -0.01em; color: #fff;
  margin: 0 0 8px;
}
.slorify-consent__body {
  color: rgba(255,255,255,0.75); margin: 0 0 16px;
}
.slorify-consent__body a {
  color: #e83a2c; text-decoration: underline;
}
.slorify-consent__body a:hover { color: #fff; }
.slorify-consent__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: flex-end;
}
.slorify-consent__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 14px;
  border-radius: 999px; border: none; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.slorify-consent__btn--accept {
  background: #e83a2c; color: #fff;
}
.slorify-consent__btn--accept:hover { background: #d22f3c; }
.slorify-consent__btn--reject {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.slorify-consent__btn--reject:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
@media (max-width: 600px) {
  .slorify-consent { left: 10px; right: 10px; bottom: 10px; padding: 18px 20px; }
  .slorify-consent__actions { flex-direction: column-reverse; gap: 8px; }
  .slorify-consent__btn { width: 100%; padding: 14px 20px; }
}
