/* Cookie Banner — minimal, DSGVO-konform */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  font-family: var(--font-sans, "Manrope", Arial, Helvetica, sans-serif);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
  display: none;
}
#cookie-banner.show {
  display: block;
}
#cookie-banner .cb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
#cookie-banner .cb-text {
  flex: 1 1 320px;
}
#cookie-banner .cb-text a {
  color: #6cb2ff;
  text-decoration: underline;
}
#cookie-banner .cb-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#cookie-banner button {
  border: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 3px;
  font-weight: bold;
}
#cookie-banner .cb-accept {
  background: #4a9b3a;
  color: #fff;
}
#cookie-banner .cb-accept:hover {
  background: #5cb449;
}
#cookie-banner .cb-decline {
  background: #555;
  color: #fff;
}
#cookie-banner .cb-decline:hover {
  background: #666;
}
@media (max-width: 600px) {
  #cookie-banner {
    padding: 16px;
    font-size: 13px;
  }
  #cookie-banner .cb-buttons {
    width: 100%;
  }
  #cookie-banner button {
    flex: 1;
  }
}
