/* ═══════════════════════════════════════════════════════════════════════════════
   Stripe Embedded Checkout — Inline style (on-demand)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Inline checkout container ─────────────────────────────────────────────── */

.sec-inline-checkout {
  width: 100%;
  max-width: 700px;
  margin: 1rem auto 0;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  box-sizing: border-box;
}

/* ── Stripe checkout mount ─────────────────────────────────────────────────── */

.sec-inline-checkout .sec-payment-mount {
  min-height: 300px;
}

/* ── Loading indicator ─────────────────────────────────────────────────────── */

.sec-inline-checkout .sec-loading {
  text-align: center;
  padding: 2rem 0;
  color: #888;
  font-size: 0.95rem;
}

/* ── Error message ─────────────────────────────────────────────────────────── */

.sec-inline-checkout .sec-error {
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 1rem;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 540px) {
  .sec-inline-checkout {
    padding: 1rem;
    border-radius: 12px;
  }
}
