/* checkout.css — additive styles for checkout.php, scoped the same way
   as order.css (.fof-order and descendants). Loaded alongside the
   frozen order.css, never replacing it. */

.fof-checkout__main { max-width: 560px; margin: 0 auto; padding: 12px 16px 60px; }
.fof-checkout__section { background: #fff; border: 1px solid var(--fof-border); border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.fof-checkout__section h2 { font-size: 1.1rem; margin-bottom: 10px; }
.fof-checkout__section label { display: block; margin-top: 12px; font-weight: 600; font-size: 0.9rem; }
.fof-checkout__section input[type=text],
.fof-checkout__section input[type=tel],
.fof-checkout__section input[type=email],
.fof-checkout__section input[type=date],
.fof-checkout__section select,
.fof-checkout__section textarea {
  width: 100%; box-sizing: border-box; padding: 10px; margin-top: 4px;
  border: 1px solid var(--fof-border); border-radius: 6px; font: inherit;
}
.fof-checkout__terms { display: flex; align-items: flex-start; gap: 8px; margin-top: 16px; }
.fof-checkout__terms label { margin-top: 0; font-weight: 400; font-size: 0.9rem; }
.fof-checkout__pay-btn { width: 100%; margin-top: 16px; }
.fof-checkout__pay-btn:disabled { background: #ccc; cursor: not-allowed; }
.fof-checkout__processing { text-align: center; margin-top: 10px; color: #888; }
.fof-checkout__error { color: var(--fof-danger); margin-top: 8px; }
.fof-checkout__notice { background: #fff4e5; border: 1px solid #f0c36d; padding: 10px 14px; border-radius: 6px; max-width: 560px; margin: 12px auto; }
.fof-checkout__empty { max-width: 480px; margin: 3rem auto; padding: 1.5rem; text-align: center; background: #fff; border: 1px solid var(--fof-border); border-radius: 8px; }
.fof-checkout__summary { margin-top: 10px; border-top: 1px solid var(--fof-border); padding-top: 10px; }
.fof-checkout__line { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--fof-border); font-size: 0.95rem; }
