.privacy-consent {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 10000;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.privacy-consent.is-visible {
  display: flex;
}

.privacy-consent__panel {
  width: min(100%, 760px);
  background: #ffffff;
  color: #0a1628;
  border: 1px solid rgba(10, 22, 40, 0.14);
  border-top: 4px solid #c9a227;
  box-shadow: 0 24px 70px rgba(10, 22, 40, 0.22);
  padding: 22px;
  pointer-events: auto;
}

.privacy-consent__eyebrow {
  margin: 0 0 8px;
  color: #c9a227;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.privacy-consent__title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 600;
}

.privacy-consent__text {
  margin: 0;
  color: rgba(10, 22, 40, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.privacy-consent__text a {
  color: #0a1628;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.privacy-consent__button {
  appearance: none;
  border-radius: 0;
  border: 1px solid rgba(10, 22, 40, 0.28);
  background: transparent;
  color: #0a1628;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 18px;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.privacy-consent__button:hover {
  border-color: #0a1628;
  background: rgba(10, 22, 40, 0.05);
}

.privacy-consent__button--primary {
  background: #0a1628;
  border-color: #0a1628;
  color: #ffffff;
}

.privacy-consent__button--primary:hover {
  background: #c9a227;
  border-color: #c9a227;
  color: #0a1628;
}

@media (max-width: 640px) {
  .privacy-consent {
    inset: auto 10px 10px 10px;
  }

  .privacy-consent__panel {
    padding: 18px;
  }

  .privacy-consent__actions {
    flex-direction: column;
  }

  .privacy-consent__button {
    width: 100%;
  }
}
