/* Cookie consent banner — sits above the fold-out, dismissable, accessible */
.lb-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: oklch(0.18 0.02 260);
  color: #fdfaf4;
  border: 1px solid oklch(0.32 0.025 260);
  border-radius: 8px;
  padding: 18px 22px;
  display: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  font-family: var(--body), system-ui, sans-serif;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lb-consent[data-shown="1"] { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.lb-consent .lbc-text {
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.5;
  color: oklch(0.92 0.02 80);
}
.lb-consent .lbc-text strong {
  color: #fdfaf4;
  font-weight: 700;
  margin-right: 4px;
}
.lb-consent .lbc-text a {
  color: oklch(0.85 0.13 60);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lb-consent .lbc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lb-consent button {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #fdfaf4;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lb-consent .lbc-reject {
  background: transparent;
  color: oklch(0.85 0.04 80);
  border-color: oklch(0.32 0.025 260);
}
.lb-consent .lbc-reject:hover {
  border-color: oklch(0.55 0.025 260);
  color: #fdfaf4;
}
.lb-consent .lbc-accept {
  background: oklch(0.85 0.13 60);
  color: oklch(0.18 0.02 260);
  border-color: oklch(0.85 0.13 60);
}
.lb-consent .lbc-accept:hover {
  background: oklch(0.92 0.04 80);
  border-color: oklch(0.92 0.04 80);
}
@media (max-width: 540px) {
  .lb-consent { padding: 14px 16px; }
  .lb-consent .lbc-actions { width: 100%; }
  .lb-consent button { flex: 1 1 auto; }
}
