/* ============================================================
   CN NEWSWIRE — Order success styles
   ============================================================ */
.os-wrap { background: var(--paper); padding: clamp(48px, 8vw, 90px) 0; min-height: 62vh; }
.os-container { max-width: 640px; }
.os-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: clamp(28px, 5vw, 48px);
  text-align: center;
  box-shadow: var(--shadow-1);
}
.os-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-size: 30px; font-weight: 800;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.os-card h1 { margin-bottom: 8px; }
.os-sub { color: var(--muted); margin-bottom: 24px; }

.os-demo {
  background: oklch(0.95 0.02 78 / .4);
  border: 1px solid oklch(0.78 0.04 78 / .5);
  color: oklch(0.42 0.06 60);
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; line-height: 1.6; margin-bottom: 22px; text-align: left;
}
.os-demo code { background: oklch(1 0 0 / .5); padding: 1px 6px; border-radius: 4px; font-size: 12px; }

.os-rows {
  text-align: left;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 6px 0; margin-bottom: 26px;
}
.os-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 2px; font-size: 14.5px;
  border-bottom: 1px dashed var(--line);
}
.os-row:last-child { border-bottom: 0; }
.os-row span:first-child { color: var(--muted); }
.os-row span:last-child { font-weight: 700; color: var(--ink); text-align: right; }

.os-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 480px) {
  .os-actions .btn { flex: 1; min-width: 150px; }
}
