.privacy-consent[hidden] {
  display: none !important;
}

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

.privacy-consent__body {
  width: min(760px, 100%);
  padding: 18px 20px;
  color: #f7f3ec;
  background: rgba(29, 26, 21, .98);
  border: 1px solid rgba(210, 169, 94, .45);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  pointer-events: auto;
}

.privacy-consent__body strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.privacy-consent__body p {
  margin: 0;
  color: rgba(247, 243, 236, .82);
  font-size: .88rem;
  line-height: 1.55;
}

.privacy-consent__body a {
  color: #f0c976;
  text-decoration: underline;
}

.privacy-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 14px;
}

.privacy-consent__actions button {
  min-height: 42px;
  padding: 9px 16px;
  color: #f7f3ec;
  background: transparent;
  border: 1px solid rgba(247, 243, 236, .45);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.privacy-consent__actions button.primary {
  color: #1d1a15;
  background: #e0b75f;
  border-color: #e0b75f;
}

@media (max-width: 540px) {
  .privacy-consent {
    inset: auto 10px 10px;
  }
  .privacy-consent__body {
    padding: 16px;
  }
  .privacy-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
