/* KC Cookie-Banner Styles — bewusst self-contained, keine Tailwind-Klassen */
#kc-cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.18), 0 -2px 6px rgba(0,0,0,0.08);
  border-top: 1px solid rgba(0,0,0,0.08);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0D1B2A;
  animation: kc-cb-slide 250ms ease-out;
}
@keyframes kc-cb-slide {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.kc-cb-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 24px;
}
.kc-cb-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kc-cb-title {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  color: #0D1B2A;
}
.kc-cb-text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5C5C5C;
  max-width: 720px;
}
.kc-cb-link {
  color: inherit;
  text-decoration: underline;
}
.kc-cb-link:hover { text-decoration: none; }
.kc-cb-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.kc-cb-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 20px;
  transition: opacity 150ms ease;
}
.kc-cb-btn:hover { opacity: 0.85; }
.kc-cb-btn-primary {
  color: #ffffff;
}
.kc-cb-btn-outline {
  background: #ffffff;
  color: #0D1B2A;
  border: 1px solid #E0DBD4;
}
.kc-cb-btn-text {
  background: transparent;
  color: #5C5C5C;
  text-decoration: underline;
}
.kc-cb-settings {
  margin-top: 6px;
}
.kc-cb-cat {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #EEEBE6;
}
.kc-cb-cat:first-child {
  border-top: 0;
  padding-top: 0;
}
.kc-cb-cat label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #0D1B2A;
}
.kc-cb-cat label strong { font-weight: 600; }
.kc-cb-cat label input[type=checkbox] {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.kc-cb-cat p {
  margin: 6px 0 0 26px;
  font-size: 12px;
  color: #5C5C5C;
  line-height: 1.5;
}
.kc-cb-tag {
  font-size: 10px;
  font-weight: 400;
  color: #8B9099;
  margin-left: 6px;
}
@media (max-width: 600px) {
  .kc-cb-inner { padding: 20px 16px; }
  .kc-cb-title { font-size: 18px; }
  .kc-cb-actions { gap: 8px; }
  .kc-cb-btn { padding: 10px 14px; font-size: 9px; }
}
