/* Brand-aligned, single-purpose checkout landing styles. */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lora:wght@400;600;700&display=swap');

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #FBF7EE;
  color: #2D2D2D;
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.root {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #F6EFE0;
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(45, 45, 45, 0.06);
}

.mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8843A;
  margin-bottom: 24px;
}

.check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #DBEDD8;
  color: #3E6133;
  font-size: 32px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.check.muted {
  background: #E6E0D2;
  color: #8C8275;
}

.h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #2D2D2D;
}

.body {
  color: #5C5A55;
  margin: 0 0 24px;
}

.cta {
  display: inline-block;
  background: #B8843A;
  color: #FFFFFF;
  font-family: 'Lora', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  margin-top: 4px;
}
.cta:active { opacity: 0.85; }

.footnote {
  color: #8C8275;
  font-size: 13px;
  margin: 16px 0 0;
}
