/* ══════════════════════════════════════════════════════════════
   Technik Buddy - Einwilligungsbanner
   Farben und Schriften wie auf der Website. Kein Framework.
   ══════════════════════════════════════════════════════════════ */

.tb-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  padding: 0 0.75rem 0.75rem;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  animation: tb-consent-auf 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tb-consent-auf {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tb-consent { animation: none; }
}

.tb-consent-karte {
  width: 100%;
  max-width: 640px;
  background: #0d1b2a;
  color: #e2e8f0;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 1.4rem clamp(1.1rem, 4vw, 1.8rem);
}

.tb-consent-titel {
  font-family: 'Bebas Neue', 'Nunito', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: clamp(1.4rem, 4.5vw, 1.9rem);
  line-height: 1.1;
  margin: 0 0 0.6rem;
  color: #fff;
}

.tb-consent-text {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.tb-consent-liste {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
}

.tb-consent-zeile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
}

.tb-consent-fix { opacity: 0.75; cursor: default; }

.tb-consent-zeile input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: #f59e0b;
}

.tb-consent-zeile strong { display: block; font-size: 0.95rem; color: #fff; }

.tb-consent-klein {
  display: block;
  font-size: 0.83rem;
  line-height: 1.5;
  color: #94a3b8;
  margin-top: 0.15rem;
}

/* Zustimmen und Ablehnen sind bewusst gleich gross und gleich auffaellig -
   alles andere waere eine Bevormundung und rechtlich angreifbar. */
.tb-consent-knoepfe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tb-consent-knopf {
  flex: 1 1 auto;
  min-width: 150px;
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.tb-consent-haupt { background: #f59e0b; color: #06111f; }
.tb-consent-neben { background: transparent; color: #e2e8f0; border-color: rgba(226, 232, 240, 0.45); }

@media (hover: hover) {
  .tb-consent-haupt:hover { background: #fbbf24; transform: translateY(-1px); }
  .tb-consent-neben:hover { border-color: #f59e0b; color: #f59e0b; }
}

.tb-consent-knopf:focus-visible { outline: 3px solid #fbbf24; outline-offset: 3px; }

.tb-consent-fuss {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

@media (max-width: 480px) {
  .tb-consent-knopf { flex-basis: 100%; }
}

@media print { .tb-consent { display: none; } }
