/* Cookie-Banner — minimal, DSGVO-konform */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,.3);
}
.cookie-banner a { color: #64b5f6; }
.cookie-banner button {
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-btn-accept { background: #f5a623; color: #1a1a2e; }
.cookie-btn-reject { background: transparent; color: #ccc; border: 1px solid #555 !important; }
