/* Personal PayPal flow: pay first, reserve a time, receive booking confirmation. */
.booking-steps { list-style: none; margin: 0; padding: 0; }
.booking-steps li { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 18px; padding: 0 0 26px; }
.booking-steps li + li { border-top: 1px solid var(--line); padding-top: 26px; }
.booking-step-number { color: var(--bronze); font: 400 27px/1.2 var(--serif); padding-top: 4px; }
.booking-steps h3 { font: 500 31px/1.12 var(--serif); letter-spacing: -.02em; }
.booking-steps p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 10px 0 17px; }
.booking-steps .button { width: 100%; justify-content: space-between; gap: 16px; }
.booking-review { padding: 18px 20px; background: var(--paper); border-left: 2px solid var(--bronze); }
.booking-review h3 { font: 500 25px/1.2 var(--serif); margin-bottom: 8px; }
.booking-review p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }
.payment-reference { font-size: 13px; line-height: 1.7; margin-top: 24px; color: var(--muted); }
.payment-reference a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 620px) {
  .booking-steps li { grid-template-columns: 25px minmax(0, 1fr); gap: 12px; }
  .booking-steps h3 { font-size: 28px; }
  .booking-steps .button { padding-inline: 15px; font-size: 14px; }
  .booking-review { padding: 17px; }
}

.booking-existing { margin: 0 0 28px; padding: 16px 18px; background: var(--paper, #eeeae2); border-left: 1px solid var(--bronze, #92806d); }
.booking-existing a { text-decoration: underline; text-underline-offset: 3px; }
