/* Centralized checkout page — order summary card + pay button. */

.gc-ps-checkout {
  max-width: 440px;
  margin: 48px auto;
  padding: 0 16px;
}

.gc-ps-checkout-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gc-navy);
  margin: 0 0 20px;
}

.gc-ps-checkout-summary {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.gc-ps-checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gc-border);
  font-size: 13px;
}

.gc-ps-checkout-row:last-child {
  border-bottom: none;
}

.gc-ps-checkout-row span {
  color: var(--gc-text2);
}

.gc-ps-checkout-row strong {
  color: var(--gc-navy);
  text-align: right;
}

.gc-ps-checkout-total strong {
  font-size: 18px;
  color: var(--gc-coral);
}

.gc-ps-checkout-pay-btn {
  cursor: pointer;
}

/* ── Success state (payment verified, about to redirect home) ── */
.gc-ps-checkout-success {
  text-align: center;
  padding: 36px 12px 8px;
}

.gc-ps-checkout-success-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gc-mint);
  color: #0F6E56;
  font-size: 26px;
  font-weight: 700;
}

.gc-ps-checkout-success-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gc-navy);
  margin: 0 0 6px;
}

.gc-ps-checkout-success-text {
  font-size: 13px;
  color: var(--gc-text2);
  margin: 0;
}
