/* ─── Order Confirmation ─── */

.confirmation-wrap {
  width: 100%;
  min-height: calc(100vh - 72px - 86px);
  display: grid;
  place-items: center;
  padding: 28px 0;
}

.confirmation-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
}

.confirmation-logo {
  width: 92px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.confirmation-kicker {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.confirmation-card h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -.4px;
  line-height: 1.08;
}

.confirmation-text {
  margin: 12px auto 0;
  color: var(--muted);
  max-width: 58ch;
}

.confirmation-meta {
  margin: 20px auto 0;
  max-width: 520px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.meta-row:last-child {
  border-bottom: 0;
}

.meta-row span {
  color: var(--muted);
}

.confirmation-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .confirmation-card {
    padding: 24px 16px;
  }

  .meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}
