/* vos-encheres.com — page « Suppression de vos données » AUTONOME (servie côté
   serveur, publique, SANS login). Lisible par un crawler qui n'exécute pas le JS
   (exigence Facebook/Meta pour l'URL de suppression). Légère, indépendante du
   SPA : pas d'app.js, juste la police Archivo (app.fonts.css) + ces styles. CSP
   stricte → AUCUN style inline ici (mêmes couleurs que app.base.css / 404.css). */

:root {
  --bg: #FAF5EF;
  --card: #FFFFFF;
  --ink: #221A12;
  --ink-soft: #4A4136;
  --orange: #FD6802;
  --orange-dark: #CC5402;
  --muted: #8A7E70;
  --line: #EBE1D4;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.dd-wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px calc(48px + env(safe-area-inset-bottom));
}

.dd-brand {
  display: inline-flex;
  margin-bottom: 22px;
}
.dd-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.dd-card {
  width: 100%;
  max-width: 560px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px 32px;
  box-shadow: 0 12px 30px rgba(34, 26, 18, 0.06);
}

.dd-title {
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 4px;
}

.dd-lead {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 12px 0 0;
}

.dd-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 16px 0 0;
}

.dd-steps {
  margin: 18px 0 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dd-steps li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.dd-steps strong { font-weight: 700; }

/* Liens INLINE (e-mail de contact dans le texte). Ciblés dans les <p> pour ne
   PAS écraser la couleur des boutons .dd-btn ci-dessous (un `.dd-card a` nu
   l'emporterait, par spécificité, sur `.dd-btn-primary` → texte invisible). */
.dd-card p a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.dd-card p a:hover { color: var(--orange-dark); text-decoration: underline; }

.dd-note {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 16px;
}

.dd-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.dd-btn:hover { text-decoration: none; }

.dd-btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(253, 104, 2, 0.28);
}
.dd-btn-primary:hover { background: var(--orange-dark); color: #fff; }
.dd-btn-primary:active { transform: scale(0.97); }

.dd-btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
  border: 1px solid var(--line);
}
.dd-btn-ghost:hover { color: var(--ink); }

/* Couche desktop LÉGÈRE : la page reste lisible, juste un poil plus aérée. */
@media (min-width: 600px) {
  .dd-wrap { padding-top: 64px; }
  .dd-card { padding: 38px 40px 40px; }
}
