/* Cosa Cena v2 — delete account screen styles (Screen 6) */

.delete-screen {
  padding: 8px 24px 32px;
  min-height: 100vh;
  min-height: 100dvh;
  background: #F6F1E8;
  box-sizing: border-box;
}

.delete-screen--deleted {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 36px;
  min-height: 100vh;
  min-height: 100dvh;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}

.delete-screen--deleted.is-visible {
  opacity: 1;
}

/* ── Back button ───────────────────────────────────────────────────────────── */

.delete-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #B64D32;
  min-height: 44px;
  margin-bottom: 20px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ── Icon circles ──────────────────────────────────────────────────────────── */

.delete-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.delete-icon-wrap--warning {
  background: rgba(138, 32, 32, 0.08);
}

.delete-icon-wrap--deleted {
  background: #F5E8E8;
}

/* ── Headings and body ─────────────────────────────────────────────────────── */

.delete-heading {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 600;
  color: #2E1F12;
  margin: 0 0 10px;
  line-height: 1.25;
  text-align: center;
}

.delete-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #9A8575;
  line-height: 1.6;
  margin: 0 0 24px;
  text-align: center;
}

/* ── Consequences card ─────────────────────────────────────────────────────── */

.delete-consequences-card {
  background: #FFFDF8;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(46,31,18,0.07), 0 0 0 1px rgba(46,31,18,0.04);
  padding: 4px 0;
  margin-bottom: 24px;
}

.delete-consequence-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.delete-consequence-row--divider {
  border-bottom: 1px solid #EDE4D8;
}

.delete-consequence-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #2E1F12;
}

/* ── Step 1 delete button ──────────────────────────────────────────────────── */

.delete-step1-btn {
  width: 100%;
  min-height: 52px;
  background: rgba(138, 32, 32, 0.1);
  color: #8A2020;
  border: 1.5px solid rgba(138, 32, 32, 0.3);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.12s ease;
}

.delete-step1-btn:active {
  background: rgba(138, 32, 32, 0.18);
}

/* ── Error message ─────────────────────────────────────────────────────────── */

.delete-error {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #8A2020;
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.5;
}

/* ── Step 2 confirmation sheet ─────────────────────────────────────────────── */

.delete-confirm-sheet {
  padding-top: 12px;
}

.delete-confirm-heading {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: #8A2020;
  margin: 0 0 12px;
  line-height: 1.25;
}

.delete-confirm-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #9A8575;
  line-height: 1.6;
  margin: 0 0 24px;
}

.delete-confirm-btn {
  width: 100%;
  min-height: 52px;
  background: #8A2020;
  color: #FFFDF8;
  border: none;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  -webkit-tap-highlight-color: transparent;
}

.delete-confirm-btn:active {
  opacity: 0.85;
}

.delete-cancel-btn {
  width: 100%;
  min-height: 52px;
  background: #FFFDF8;
  color: #2E1F12;
  border: 1.5px solid #D9CEC0;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ── Deleted screen home button ────────────────────────────────────────────── */

.delete-home-btn {
  max-width: 320px;
}
