@charset "UTF-8";

.cookie-dialog {
  position: fixed;
  inset: auto auto 20px 20px;
  width: min(310px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  margin: 0;
  padding: 18px;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid #796b63;
  border-radius: 0;
  background: #1a1819;
  color: #f4efeb;
  box-shadow: 0 16px 65px rgb(0 0 0 / 30%);
  font: 13px/1.5 var(--sans, Arial, Helvetica, sans-serif);
  text-align: left;
}
.cookie-dialog::backdrop { background: rgb(0 0 0 / 18%); }
.cookie-dialog [hidden] { display: none !important; }
.cookie-dialog .cookie-eyebrow {
  margin: 0 0 8px;
  color: #c0b7b3;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.cookie-dialog h2 {
  margin: 0 0 12px;
  font: 400 26px/1.12 var(--serif, Georgia, serif);
  letter-spacing: -.035em;
  color: #f4efeb;
}
.cookie-dialog .cookie-description { margin: 0 0 12px; color: #c0b7b3; }
.cookie-more, .cookie-customize {
  color: #f4efeb;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.cookie-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: 8px; margin-top: 16px; }
.cookie-dialog button { border-radius: 0; font: inherit; cursor: pointer; }
.cookie-choice {
  min-width: 0;
  min-height: 44px;
  padding: 8px;
  border: 1px solid #c0b7b3;
  background: transparent;
  color: #f4efeb;
  white-space: normal;
}
.cookie-choice:hover, .cookie-save:hover { border-color: #dcb69f; background: #2b2423; }
.cookie-customize { grid-column: 1 / -1; min-height: 32px; padding: 4px; border: 0; background: transparent; }
.cookie-customize:hover, .cookie-more:hover { color: #dcb69f; }
.cookie-dialog :is(button, a, input):focus-visible { outline: 2px solid #dcb69f; outline-offset: 4px; }
.cookie-dialog .cookie-retention { margin: 10px 0 0; font-size: 10px; line-height: 1.5; color: #b7aaa4; }
.cookie-details { margin-top: 18px; border-top: 1px solid #514740; }
.cookie-category { padding: 14px 0; border-bottom: 1px solid #514740; }
.cookie-category-heading, .cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cookie-category h3, .cookie-option { margin: 0; color: #f4efeb; font: 400 14px/1.4 var(--sans, Arial, Helvetica, sans-serif); }
.cookie-required { color: #dcb69f; font-size: 11px; white-space: nowrap; }
.cookie-dialog .cookie-category p { margin: 11px 0 0; color: #c0b7b3; font-size: 13px; }
.cookie-option { cursor: pointer; min-height: 28px; }
.cookie-option input { width: 21px; height: 21px; margin: 0; flex: 0 0 21px; accent-color: #dcb69f; cursor: pointer; }
.cookie-dialog .cookie-no-tracking { margin: 16px 0 0; color: #c0b7b3; font-size: 12px; }
.cookie-save { width: 100%; min-height: 44px; margin-top: 14px; padding: 11px 16px; border: 1px solid #dcb69f; background: transparent; color: #f4efeb; }
.cookie-dialog .cookie-storage-error { margin: 16px 0 0; padding-left: 12px; border-left: 2px solid #dcb69f; color: #e7c7b4; font-size: 13px; }
.manage-cookies { padding: 0; border: 0; background: none; color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 5px; }

@media (max-width: 640px) {
  .cookie-dialog {
    inset: auto auto 12px 12px;
    width: min(310px, calc(100vw - 24px));
    max-height: calc(100svh - 24px);
  }
}

.manage-cookies{cursor:pointer}
.cookie-feedback:not([hidden]){position:fixed;bottom:18px;right:18px;z-index:1100;max-width:450px;background:#211b1c;border:1px solid #796b63;padding:18px;font-size:14px}
