/* Consent banner for marketing analytics */
.tb-consent {
  position: fixed;
  z-index: 9999;
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-width: 560px;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 12px;
  background: #0f172a;
  color: #f8fafc;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
  font: 14px/1.45 system-ui, sans-serif;
}
.tb-consent[hidden] { display: none !important; }
.tb-consent__text { margin: 0 0 12px; }
.tb-consent__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.tb-consent__btn {
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.tb-consent__btn--accept { background: #38bdf8; color: #0f172a; }
.tb-consent__btn--reject { background: transparent; color: #e2e8f0; border: 1px solid #334155; }
