/* Cookie Consent Banner — bembelflyer.de */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #00205b;
  color: #fff;
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.3s ease;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 280px; }
.cb-text strong { display: block; font-size: 16px; margin-bottom: 6px; }
.cb-text p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0; }
.cb-text a { color: #FFB347; text-decoration: underline; }
.cb-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cb-btn {
  border: none;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
  font-family: inherit;
}
.cb-btn:active { transform: scale(0.97); }
.cb-accept { background: #FFB347; color: #00205b; }
.cb-accept:hover { background: #FF9C1A; }
.cb-decline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.cb-decline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

@media (max-width: 600px) {
  .cb-inner { flex-direction: column; text-align: center; }
  .cb-buttons { width: 100%; justify-content: center; }
}
