/* ===== LED Code – Cookie Banner ===== */
.lc-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 120%);
  width: min(960px, calc(100% - 24px));
  background: #1e1e1e;
  color: #e8e8e8;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 22px 24px;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 212, 255, 0.08);
  z-index: 9999;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  margin: 0 12px;
}

.lc-cookie-banner.is-visible {
  transform: translate(-50%, 0);
}

.lc-cookie-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.lc-cookie-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  color: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-cookie-text {
  flex: 1 1 320px;
  margin: 0;
  color: #d6d6d6;
}

.lc-cookie-text strong { color: #ffffff; font-weight: 600; }

.lc-cookie-text a {
  color: #00d4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lc-cookie-text a:hover { opacity: 0.85; }

.lc-cookie-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lc-cookie-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.lc-cookie-btn:active { transform: translateY(1px); }

.lc-cookie-btn-primary {
  background: #00d4ff;
  color: #0d0d0d;
  border-color: #00d4ff;
}
.lc-cookie-btn-primary:hover {
  background: #2de0ff;
  border-color: #2de0ff;
}

.lc-cookie-btn-secondary {
  background: transparent;
  color: #e8e8e8;
  border-color: rgba(255, 255, 255, 0.2);
}
.lc-cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Re-Open Trigger – minimaler Link-Stil, kann im Footer eingebaut werden */
.lc-cookie-reopen {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lc-cookie-reopen:hover { color: #00d4ff; }

@media (max-width: 640px) {
  .lc-cookie-banner {
    padding: 18px 18px 20px;
    margin: 0 8px;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
  }
  .lc-cookie-inner { gap: 16px; }
  .lc-cookie-icon { display: none; }
  .lc-cookie-actions { width: 100%; }
  .lc-cookie-btn { flex: 1 1 0; min-width: 0; padding: 11px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .lc-cookie-banner { transition: none; }
}
