/* GRAND HOTEL DUCA D'ESTE — Consent manager */
:root {
  --ghde-consent-bg: #14202d;
  --ghde-consent-fg: #ffffff;
  --ghde-consent-muted: #b9b2a1;
  --ghde-consent-accent: #c39a4e;
  --ghde-consent-paper: #ffffff;
  --ghde-consent-ink: #14202d;
}

.ghde-consent-banner[hidden],
.ghde-consent-modal[hidden] {
  display: none !important;
}

.ghde-consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 58px 22px 22px;
  background: var(--ghde-consent-bg);
  color: var(--ghde-consent-fg);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}

.ghde-consent-banner a,
.ghde-consent-modal a {
  color: var(--ghde-consent-accent);
}

.ghde-consent-banner h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.15rem;
}

.ghde-consent-banner p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  line-height: 1.5;
}

.ghde-consent-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.ghde-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghde-consent-btn {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--ghde-consent-accent);
  background: transparent;
  color: white!important;
  font: inherit;
  cursor: pointer;
	background: #c39a4e!important;
}

.ghde-consent-btn--primary {
  background: var(--ghde-consent-accent);
  color: var(--ghde-consent-ink);
}

.ghde-consent-btn--reject {
  border-color: #fff;
}

.ghde-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.55);
}

.ghde-consent-panel {
  width: min(680px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow-y: auto;
  padding: 24px;
  background: var(--ghde-consent-paper);
  color: var(--ghde-consent-ink);
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
}

.ghde-consent-panel h2 {
  margin-top: 0;
}

.ghde-consent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid #e7e1d6;
}

.ghde-consent-row p {
  margin: 5px 0 0;
  line-height: 1.45;
}

.ghde-consent-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ghde-consent-switch input {
  width: 20px;
  height: 20px;
}

.ghde-cookie-link {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 640px) {
  .ghde-consent-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 18px 52px 18px 16px;
  }

  .ghde-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ghde-consent-btn {
    width: 100%;
  }
}
