/* Public cookie consent banner — matches Revivo site, not Tabler. */
.rv-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10050;
  padding: 16px;
  pointer-events: none;
}
.rv-consent[hidden] { display: none !important; }
.rv-consent__panel {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  background: #091B3D;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(9, 27, 61, 0.35);
  padding: 20px 22px 18px;
}
.rv-consent__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  margin: 0 0 8px;
  font-weight: 600;
}
.rv-consent__body {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}
.rv-consent__body a { color: #C4A484; }
.rv-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rv-consent__btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}
.rv-consent__btn--primary {
  background: #C4A484;
  color: #091B3D;
  font-weight: 600;
}
.rv-consent__btn--secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.rv-consent__btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.rv-consent__btn:focus-visible {
  outline: 2px solid #C4A484;
  outline-offset: 2px;
}
.rv-consent__prefs[hidden] { display: none !important; }
.rv-consent__prefs {
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rv-consent__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}
.rv-consent__row strong { display: block; font-size: 0.95rem; }
.rv-consent__row span { display: block; color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-top: 2px; }
.rv-consent__badge {
  font-size: 0.75rem;
  color: #C4A484;
  white-space: nowrap;
  padding-top: 2px;
}
.rv-consent__toggle {
  width: 42px;
  height: 24px;
}
@media (max-width: 640px) {
  .rv-consent { padding: 12px; }
  .rv-consent__actions { flex-direction: column; }
  .rv-consent__btn { width: 100%; }
}
