:root {
  --privacy-rose: #d65d88;
  --privacy-rose-soft: #f9e8ef;
  --privacy-sage: #6f8068;
  --privacy-cream: #faf6f2;
  --privacy-text: #333034;
  --privacy-border: #efd8df;
  --privacy-shadow: 0 24px 60px rgba(80, 48, 58, 0.12);
}

.privacy-page {
  margin: 0;
  background: var(--privacy-cream);
  color: var(--privacy-text);
  font-family: Poppins, Arial, sans-serif;
}

.privacy-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.privacy-eyebrow {
  color: var(--privacy-rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.privacy-shell h1,
.privacy-shell h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

.privacy-shell h1 {
  color: var(--privacy-rose);
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin: 0 0 18px;
}

.privacy-shell h2 {
  color: var(--privacy-text);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 16px;
}

.privacy-lead {
  max-width: 820px;
  color: #5b5659;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin: 0 0 34px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--privacy-border);
  border-radius: 24px;
  box-shadow: var(--privacy-shadow);
  line-height: 1.75;
  margin: 0 0 22px;
  padding: 28px;
}

.privacy-card a {
  color: var(--privacy-rose);
  font-weight: 700;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.privacy-button,
.privacy-inline-button {
  background: var(--privacy-rose);
  border: 1px solid var(--privacy-rose);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: 800 0.96rem/1 Poppins, Arial, sans-serif;
  padding: 15px 24px;
  text-decoration: none;
}

.privacy-button-secondary {
  background: transparent;
  color: var(--privacy-rose);
}

.privacy-inline-button {
  margin-left: 8px;
  padding: 10px 16px;
}

.cookie-consent {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--privacy-border);
  border-radius: 22px;
  bottom: 18px;
  box-shadow: var(--privacy-shadow);
  color: var(--privacy-text);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  left: 18px;
  max-width: 980px;
  padding: 18px;
  position: fixed;
  right: 18px;
  z-index: 99999;
}

.cookie-consent[hidden],
.cookie-panel[hidden],
.cookie-floating[hidden] {
  display: none !important;
}

.cookie-consent strong,
.cookie-panel strong {
  color: var(--privacy-rose);
}

.cookie-consent p,
.cookie-panel p {
  margin: 6px 0 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-button {
  border: 1px solid var(--privacy-rose);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
}

.cookie-button-primary {
  background: var(--privacy-rose);
  color: #fff;
}

.cookie-button-secondary {
  background: transparent;
  color: var(--privacy-rose);
}

.cookie-panel {
  background: #fff;
  border: 1px solid var(--privacy-border);
  border-radius: 24px;
  box-shadow: var(--privacy-shadow);
  left: 50%;
  max-width: 560px;
  padding: 24px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  z-index: 100001;
}

.cookie-option {
  align-items: flex-start;
  border: 1px solid var(--privacy-border);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  margin: 12px 0;
  padding: 14px;
}

.cookie-option input {
  margin-top: 5px;
}

.cookie-floating {
  background: var(--privacy-rose);
  border: none;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: var(--privacy-shadow);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 16px;
  position: fixed;
  right: 18px;
  z-index: 99998;
}

@media (max-width: 760px) {
  .privacy-grid,
  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}
