.elv-consent {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 99999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.elv-consent__card {
  width: min(920px, 100%);
  pointer-events: auto;
  color: #f5f0e8;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 168, 76, .2), transparent 28%),
    linear-gradient(135deg, rgba(13, 27, 42, .98), rgba(27, 58, 92, .96));
  border: 1px solid rgba(245, 240, 232, .16);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  padding: 1.25rem;
}

.elv-consent__eyebrow {
  margin: 0 0 .35rem;
  color: #c9a84c;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.elv-consent h2 {
  margin: 0 0 .55rem;
  color: #f5f0e8;
  font-family: Antonio, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.elv-consent p {
  max-width: 68ch;
  margin: 0 0 1rem;
  color: rgba(245, 240, 232, .82);
  font-size: .95rem;
  line-height: 1.55;
}

.elv-consent__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 1rem 0;
}

.elv-consent__options[hidden] {
  display: none;
}

.elv-consent__options label {
  display: flex;
  gap: .7rem;
  min-height: 100%;
  padding: .9rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(245, 240, 232, .14);
  border-radius: 16px;
}

.elv-consent__options input {
  width: 1.08rem;
  height: 1.08rem;
  margin-top: .15rem;
  accent-color: #c9a84c;
}

.elv-consent__options b {
  display: block;
  margin-bottom: .15rem;
  color: #fff;
}

.elv-consent__options small {
  display: block;
  color: rgba(245, 240, 232, .72);
  font-size: .76rem;
  line-height: 1.35;
}

.elv-consent__links,
.elv-consent__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.elv-consent__links {
  margin: .6rem 0 1rem;
}

.elv-consent__links a {
  color: rgba(245, 240, 232, .78);
  font-size: .82rem;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.elv-consent__actions {
  justify-content: flex-end;
}

.elv-consent__btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, .28);
  padding: .75rem 1.05rem;
  font: 700 .82rem/1 Work Sans, system-ui, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.elv-consent__btn--ghost {
  color: #f5f0e8;
  background: rgba(255, 255, 255, .05);
}

.elv-consent__btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.elv-consent__btn--gold {
  color: #0d1b2a;
  background: #c9a84c;
  border-color: #c9a84c;
}

.elv-consent__btn--gold:hover {
  background: #d7b95e;
}

@media (max-width: 760px) {
  .elv-consent {
    inset: auto .75rem .75rem .75rem;
  }

  .elv-consent__card {
    padding: 1rem;
    border-radius: 20px;
  }

  .elv-consent__options {
    grid-template-columns: 1fr;
  }

  .elv-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
