/* Checkout confirmation. Navy canvas + gold accents, all via global.css tokens. */

.cc-body {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}

.cc-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-fill);
  border-radius: 1.125rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 520px; width: 100%;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.cc-check {
  width: 3.5rem; height: 3.5rem; margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gold-fill);
  border: 1px solid var(--gold-strong);
  display: flex; align-items: center; justify-content: center;
}
.cc-check svg path { stroke: var(--gold); }

.cc-eyebrow {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.28em; color: var(--gold-text); margin-bottom: 0.75rem;
}

.cc-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 600; color: var(--cream);
  line-height: 1.15; margin-bottom: 0.75rem;
}

.cc-sub {
  font-size: 0.95rem; color: var(--cream-soft);
  line-height: 1.7; margin-bottom: 2rem;
}

.cc-ref {
  font-size: 0.78rem; color: var(--ink-muted);
  font-variant-numeric: tabular-nums; word-break: break-all;
  background: var(--navy-deep);
  border: 1px solid var(--gold-line);
  border-radius: 0.5rem; padding: 0.75rem 1rem;
  margin-bottom: 2rem;
}
.cc-ref strong { color: var(--cream-strong); font-weight: 600; }

.cc-cta {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9375rem; font-weight: 600;
  background: var(--gold); color: var(--navy-deep);
  border: none; border-radius: 0.5rem;
  padding: 0.875rem 2rem;
  cursor: pointer; text-decoration: none;
  transition: filter 0.2s, box-shadow 0.2s;
}
.cc-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(196, 165, 78, 0.28);
}

.cc-note {
  font-size: 0.75rem; color: var(--cream-faint);
  margin-top: 1.25rem; line-height: 1.5;
}
.cc-note a { color: var(--gold-text); text-decoration: underline; }
.cc-note a:hover { color: var(--gold); }
