@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.hcpb{
  --hcpb-page:#0d0d0d;
  --hcpb-panel:#e4e7ec;
  --hcpb-panel-inner:#fff;
  --hcpb-navy:#0a1f44;
  --hcpb-blue:#1d88e5;
  --hcpb-blue-dark:#1565b8;
  --hcpb-green:#22c55e;
  --hcpb-border:#d1d5db;
  --hcpb-text:#111827;
  --hcpb-muted:#6b7280;
  --hcpb-pill:999px;
  --hcpb-radius:28px;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--hcpb-text);
}

/* ── Book page shell (dark bg + circle stepper) ── */
.hcpb-book-page{
  background:var(--hcpb-page);
  min-height:100vh;
  padding:24px 12px 48px;
  max-width:1100px;
  margin:0 auto;
  box-sizing:border-box;
}
@media(min-width:640px){.hcpb-book-page{padding:32px 16px 64px}}
.hcpb-book-shell{width:100%}

.hcpb-stepper{
  display:flex;align-items:flex-start;justify-content:center;
  gap:0;margin:0 auto 32px;width:100%;max-width:620px;
}
.hcpb-stp-item{
  flex:1;display:flex;flex-direction:column;align-items:center;
  justify-content:flex-start;gap:10px;min-width:0;max-width:130px;
}
.hcpb-stp{
  width:44px;height:44px;border-radius:50%;
  border:2px solid #fff;background:#fff;
  display:grid;place-items:center;
  font-weight:800;font-size:16px;color:var(--hcpb-text);
  flex-shrink:0;transition:all .2s;
}
.hcpb-stp-label{
  display:block;width:100%;max-width:120px;
  font-size:12px;font-weight:800;line-height:1.35;
  text-align:center;padding:0 4px;box-sizing:border-box;
  color:#fff;
}
.hcpb-stepper-labels-light .hcpb-stp-label{color:#111827!important;text-shadow:none!important}
@media(max-width:520px){
  .hcpb-stepper{max-width:100%;gap:0 2px}
  .hcpb-stp-item{max-width:88px}
  .hcpb-stp{width:38px;height:38px;font-size:14px}
  .hcpb-stp-line{flex:0 0 24px;width:24px;margin-top:18px}
  .hcpb-stp-label{font-size:10px;max-width:88px;white-space:normal}
}
.hcpb-stp-active{background:var(--hcpb-blue);border-color:var(--hcpb-blue);color:#fff}
.hcpb-stp-done{background:var(--hcpb-blue);border-color:var(--hcpb-blue);color:#fff}
.hcpb-stp-line{
  flex:0 0 44px;width:44px;height:3px;background:#fff;
  margin-top:22px;align-self:flex-start;
  transition:background .2s;
}
.hcpb-stp-line-done{background:var(--hcpb-blue)}

.hcpb-time24{
  display:grid;grid-template-columns:1fr auto 1fr;gap:6px;align-items:center;
}
.hcpb-time24-h,.hcpb-time24-m{min-height:48px;padding:14px 12px;text-align:center}
.hcpb-time24-sep{font-weight:800;font-size:18px;color:#374151;line-height:1}

.hcpb-grid{display:grid;grid-template-columns:1fr;gap:20px}
@media(min-width:960px){
  .hcpb-grid{grid-template-columns:1fr 300px}
  .hcpb-book-page.hcpb-on-step1 .hcpb-grid,
  .hcpb-book-page.hcpb-on-step2 .hcpb-grid{grid-template-columns:1fr}
}
.hcpb-main{min-width:0}
.hcpb-side{display:none}
@media(min-width:960px){
  .hcpb-book-page.hcpb-on-step3 .hcpb-side,
  .hcpb-book-page.hcpb-on-step4 .hcpb-side{display:block}
}

/* ── Step panel (light gray card) ── */
.hcpb-step-panel{
  background:var(--hcpb-panel);
  border-radius:var(--hcpb-radius);
  padding:22px 16px 20px;
}
@media(min-width:640px){.hcpb-step-panel{padding:32px 28px 28px}}
.hcpb-h2{font-size:22px;font-weight:800;margin:0;letter-spacing:-.02em;color:var(--hcpb-text)}
@media(min-width:640px){.hcpb-h2{font-size:28px}}
.hcpb-muted{color:var(--hcpb-muted);margin:8px 0 0;font-size:15px;line-height:1.5}

/* ── Pill inputs ── */
.hcpb-formgrid{display:grid;grid-template-columns:1fr;gap:14px;margin-top:20px}
@media(min-width:560px){.hcpb-formgrid{grid-template-columns:1fr 1fr}}
.hcpb-field{margin-bottom:0}
.hcpb-label{font-size:13px;font-weight:600;color:#374151;margin-bottom:8px;display:block}
.hcpb-input,
.hcpb-select{
  width:100%;box-sizing:border-box;
  border:1px solid #d1d5db;border-radius:var(--hcpb-pill);
  padding:14px 20px;background:#fff;
  font-size:16px;font-family:inherit;color:#111827;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  min-height:48px;
}
.hcpb-select{
  appearance:none;-webkit-appearance:none;
}
/* Native date picker — do NOT reset appearance (breaks iOS Safari calendar) */
.hcpb-input[type="date"],
.hcpb-input[type="time"],
.hcpb-input[type="datetime-local"],
.hcpb-input-date{
  appearance:auto;
  -webkit-appearance:auto;
  color-scheme:light;
  cursor:pointer;
  touch-action:manipulation;
}
.hcpb-date-wrap{
  position:relative;
  display:block;
}
.hcpb-date-wrap .hcpb-input-date-text{
  padding-right:52px;
  width:100%;
}
.hcpb-input-date-text{
  appearance:none;
  -webkit-appearance:none;
  cursor:text;
  position:relative;
  z-index:1;
}
.hcpb-date-icon-hit{
  position:absolute;
  right:6px;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#374151;
  pointer-events:none;
}
.hcpb-date-svg{
  display:block;
  flex-shrink:0;
  pointer-events:none;
}
.hcpb-input-date-native{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  opacity:0;
  cursor:pointer;
  z-index:2;
  font-size:16px;
  color-scheme:light;
  touch-action:manipulation;
  pointer-events:auto;
}
.hcpb-input:focus,.hcpb-select:focus{
  outline:2px solid var(--hcpb-blue);outline-offset:1px;border-color:var(--hcpb-blue);
}
.hcpb-input::placeholder{color:#9ca3af}
.hcpb-select{
  cursor:pointer;
  background-color:#fff;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23374151' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 18px center;padding-right:40px;
}
.hcpb-select option{color:#111827;background:#fff}
.hcpb-airport-value{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;box-sizing:border-box;
  border:1px solid #d1d5db;border-radius:var(--hcpb-pill);
  padding:14px 20px;background:#fff;
  font-size:15px;font-weight:600;color:#111827;
  min-height:48px;
}
.hcpb-airport-text{color:#111827}
.hcpb-airport-chevron{
  width:10px;height:10px;
  border-right:2px solid #6b7280;border-bottom:2px solid #6b7280;
  transform:rotate(45deg);margin-top:-4px;flex-shrink:0;
}
.hcpb-terms-check{
  display:flex;gap:10px;align-items:flex-start;margin-top:16px;
  font-size:14px;line-height:1.5;color:#374151;
}
.hcpb-terms-check input{
  width:18px;height:18px;margin-top:3px;flex-shrink:0;
  accent-color:var(--hcpb-blue);
}
.hcpb-legal-link{
  color:var(--hcpb-blue);font-weight:600;text-decoration:underline;
}
.hcpb-legal-link:hover{color:var(--hcpb-blue-dark,#1565b8)}
.hcpb-duration{font-size:15px;margin:18px 0 8px;color:var(--hcpb-text)}
.hcpb-duration strong{font-weight:800}

/* ── Buttons ── */
.hcpb-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius:var(--hcpb-pill);padding:14px 28px;font-weight:700;font-size:15px;
  border:2px solid transparent;cursor:pointer;font-family:inherit;
  transition:background .15s,transform .05s;white-space:nowrap;
}
.hcpb-btn:active{transform:scale(.98)}
.hcpb-btn-primary{background:var(--hcpb-blue);color:#fff;border-color:var(--hcpb-blue)}
.hcpb-btn-primary:hover{background:var(--hcpb-blue-dark)}
.hcpb-btn-primary:disabled{opacity:.6;cursor:not-allowed}
.hcpb-btn-ghost{background:#e5e7eb;border-color:#e5e7eb;color:#9ca3af}
.hcpb-btn-ghost:not(:disabled){background:#fff;border-color:#d1d5db;color:var(--hcpb-muted)}
.hcpb-btn-ghost:not(:disabled):hover{background:#f9fafb}
.hcpb-nav-row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:28px;flex-wrap:wrap}

/* ── Step 2 service cards ── */
.hcpb-service-stack{display:grid;gap:32px;margin-top:24px}
.hcpb-service-row{
  display:grid;grid-template-columns:minmax(300px,380px) 1fr;gap:28px;align-items:start;
}
@media(max-width:900px){.hcpb-service-row{grid-template-columns:1fr}}
.hcpb-svc-card{
  position:relative;border-radius:22px;padding:24px 22px 20px;color:#fff;
  box-shadow:0 16px 40px rgba(0,0,0,.25);overflow:hidden;
}
.hcpb-svc-ride{background:linear-gradient(165deg,#0a1f44 0%,#122d52 100%)}
.hcpb-svc-greet{background:linear-gradient(165deg,#1d88e5 0%,#1565b8 100%)}
.hcpb-svc-card.inactive{opacity:.55;pointer-events:none}
.hcpb-svc-unavailable{font-size:13px;font-weight:700;color:#9ca3af}
.hcpb-svc-logo{
  position:absolute;top:18px;right:18px;width:52px;height:52px;
  border-radius:50%;background:#fff;padding:5px;object-fit:contain;
  box-sizing:border-box;
}
.hcpb-svc-label{font-size:11px;font-weight:800;letter-spacing:.14em;opacity:.9;margin-bottom:4px}
.hcpb-svc-title{font-size:22px;font-weight:900;line-height:1.05;margin-bottom:10px}
@media(min-width:640px){.hcpb-svc-title{font-size:28px}}
.hcpb-badge-refund{
  display:inline-block;background:var(--hcpb-green);color:#fff;
  font-size:11px;font-weight:800;padding:5px 12px;border-radius:var(--hcpb-pill);margin-bottom:16px;
}
.hcpb-list{list-style:none;padding:0;margin:0;display:grid;gap:9px}
.hcpb-li{display:flex;gap:10px;font-size:14px;line-height:1.45}
.hcpb-check{flex-shrink:0;font-weight:800;opacity:.9}
.hcpb-list-light .hcpb-li{color:rgba(255,255,255,.95)}
.hcpb-svc-foot{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  margin-top:20px;padding-top:18px;border-top:1px solid rgba(255,255,255,.18);
}
.hcpb-svc-price{font-size:34px;font-weight:900;line-height:1}
.hcpb-svc-price-block{display:flex;flex-direction:column;gap:4px;min-width:0}
.hcpb-svc-price-was{font-size:14px;font-weight:600;opacity:.82;line-height:1.2}
.hcpb-svc-price-was s{text-decoration:line-through;text-decoration-thickness:2px}
.hcpb-svc-price-sale{font-size:34px;font-weight:900;line-height:1}
.hcpb-svc-price-tag{
  display:inline-block;font-size:10px;font-weight:800;letter-spacing:.06em;
  text-transform:uppercase;opacity:.75;margin-right:4px;
}
.hcpb-svc-price-promo{
  font-size:12px;font-weight:700;line-height:1.3;
  color:#bbf7d0;background:rgba(0,0,0,.2);border-radius:999px;
  padding:4px 10px;width:fit-content;max-width:100%;
}
.hcpb-step2-promo-note{
  margin:0 0 14px;padding:12px 14px;border-radius:var(--hcpb-radius);
  background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46;font-size:14px;
}
.hcpb-step2-promo-apply{margin:0 0 16px}
.hcpb-price-was-row s{color:var(--hcpb-muted)}
.hcpb-price-sale-row .hcpb-sale-price{color:#059669;font-size:1.05em}
.hcpb-order-summary .hcpb-price-sale-row strong.hcpb-sale-price{font-size:16px}
.hcpb-svc-price-sale{color:#bbf7d0}
.hcpb-btn-book{
  border:none;border-radius:var(--hcpb-pill);padding:12px 22px;
  font-weight:800;font-size:14px;cursor:pointer;font-family:inherit;
}
.hcpb-svc-ride .hcpb-btn-book{background:var(--hcpb-blue);color:#fff}
.hcpb-svc-greet .hcpb-btn-book{background:var(--hcpb-navy);color:#fff}
.hcpb-btn-book:hover{filter:brightness(1.08)}

.hcpb-procedure-side{padding-top:4px}
.hcpb-proc-heading{font-size:16px;font-weight:800;margin:0 0 12px;color:var(--hcpb-text)}
.hcpb-proc-content{font-size:13px;color:var(--hcpb-muted);line-height:1.65}
.hcpb-proc-content p{margin:0 0 12px}
.hcpb-proc-content strong{color:var(--hcpb-text);font-weight:700}
.hcpb-proc-block{margin-bottom:22px}

/* ── Step 3 sections ── */
.hcpb-details-panel{background:var(--hcpb-panel);border-radius:var(--hcpb-radius);padding:18px 14px}
@media(min-width:640px){.hcpb-details-panel{padding:28px}}
.hcpb-section{
  background:var(--hcpb-panel-inner);border-radius:18px;
  padding:16px 14px;margin-bottom:16px;
}
@media(min-width:640px){.hcpb-section{padding:22px 20px}}
.hcpb-section-title{font-size:17px;font-weight:800;margin:0 0 14px;color:var(--hcpb-text)}
.hcpb-terms-section{padding-left:0;padding-right:0}
.hcpb-terms-main-title{color:#1d88e5;margin-bottom:12px}
.hcpb-terms-block{margin-bottom:14px}
.hcpb-terms-recommended{
  display:inline-block;
  margin:0 0 8px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  color:#1d88e5;
}
.hcpb-terms-sub{
  font-size:14px;font-weight:800;color:var(--hcpb-text);margin:0 0 8px;
  display:block;
}
.hcpb-terms-flex-row{
  display:flex;align-items:center;gap:10px;
  margin:0 0 8px;cursor:pointer;
}
.hcpb-terms-flex-row .hcpb-terms-sub{margin:0}
.hcpb-terms-row-check{
  width:18px;height:18px;margin:0;flex-shrink:0;
  accent-color:var(--hcpb-blue);cursor:pointer;
}
.hcpb-terms-list{
  margin:0;padding:0 0 0 18px;
  font-size:13px;color:var(--hcpb-muted);line-height:1.65;
}
.hcpb-terms-list li{margin-bottom:4px}
.hcpb-terms-accept{margin-top:16px;margin-bottom:0}
.hcpb-terms-check-text{
  font-size:14px;line-height:1.5;color:#374151;margin:0;
}
.hcpb-cover-box{
  display:flex;gap:12px;align-items:flex-start;
  border:1px solid var(--hcpb-border);border-radius:16px;
  padding:16px;margin-top:14px;background:#fff;cursor:pointer;
}
.hcpb-cover-box input{width:18px;height:18px;margin-top:3px;flex-shrink:0;accent-color:var(--hcpb-blue)}

/* ── Step 4 summary + payment ── */
.hcpb-summary-box{
  background:var(--hcpb-panel-inner);border-radius:18px;padding:20px;margin:20px 0;
}
.hcpb-summary-table{display:grid;gap:12px;font-size:14px}
.hcpb-summary-row{display:flex;justify-content:space-between;gap:12px;align-items:center}
.hcpb-summary-row span:first-child{color:var(--hcpb-muted)}
.hcpb-summary-row strong{font-weight:700;text-align:right}
.hcpb-summary-total{
  border-top:1px solid var(--hcpb-border);padding-top:14px;margin-top:6px;
  font-size:16px;font-weight:800;
}

.hcpb-pay-tabs{display:grid;grid-template-columns:1fr;gap:10px;margin:18px 0}
@media(min-width:480px){.hcpb-pay-tabs{grid-template-columns:repeat(2,1fr)}}
@media(min-width:768px){.hcpb-pay-tabs{grid-template-columns:repeat(auto-fit,minmax(130px,1fr))}}
.hcpb-pay-tab-ico-g{font-weight:700;font-family:Roboto,Arial,sans-serif}
.hcpb-pay-tab{
  background:#fff;border:1px solid var(--hcpb-border);border-radius:14px;
  padding:14px 10px;font-weight:600;font-size:13px;cursor:pointer;
  display:flex;flex-direction:column;align-items:center;gap:6px;
}
.hcpb-pay-tab.active{background:var(--hcpb-blue);color:#fff;border-color:var(--hcpb-blue)}
.hcpb-pay-tab-ico{font-size:20px;line-height:1}

.hcpb-stripe-host,.hcpb-paypal-host{
  margin-top:14px;padding:16px;background:#fff;
  border-radius:14px;min-height:48px;
}
.hcpb-demo-box{
  border:1px solid #86efac;background:#ecfdf5;border-radius:14px;
  padding:12px 14px;font-size:13px;color:#065f46;margin-top:12px;
}

/* ── Sidebar price summary ── */
.hcpb-side{
  background:var(--hcpb-panel-inner);border-radius:var(--hcpb-radius);
  padding:24px 22px;height:fit-content;position:sticky;top:24px;
}
.hcpb-side-title{font-size:18px;font-weight:800;margin:0 0 16px}
.hcpb-row{display:flex;align-items:center;justify-content:space-between;gap:10px;font-size:14px;margin-bottom:8px}
.hcpb-row strong{font-weight:800}
.hcpb-divider{border-top:1px solid var(--hcpb-border);margin:14px 0;padding-top:14px}
.hcpb-good{color:#047857}

.hcpb-error{color:#dc2626;font-weight:600;margin-top:12px;font-size:14px}
.hcpb-plans-empty{padding:20px 0;text-align:center}
.hcpb-plans-empty .hcpb-btn{margin-top:12px}
.hcpb-promo-hint{font-size:13px;margin-top:8px;font-weight:600}
.hcpb-promo-code-hint{font-size:12px;color:#6b7280;margin:4px 0 8px;line-height:1.4}
.hcpb-promo-code-hint strong{color:#0a1f44;font-weight:800;letter-spacing:.04em}
.hcpb-terms-extra{font-weight:600;color:#6b7280}
.hcpb-field-hint{font-size:18px;color:#6b7280;margin:4px 0 0;width:100%;line-height:1.45}
.hcpb-optional{font-weight:500;color:#9ca3af;font-size:11px}
.hcpb-promo-ok{color:#047857}
.hcpb-promo-bad{color:#dc2626}

/* Booking page promo banner (matches homepage quote widget) */
.hcpb-book-promo{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
  background:#fff;color:#0a1f44;font-weight:700;font-size:14px;
  border:1px solid var(--hcpb-border);border-radius:12px;padding:14px 18px;margin-bottom:16px;
}
.hcpb-book-promo-label{font-weight:700;font-size:14px}
.hcpb-book-promo-code{
  display:flex;align-items:center;gap:8px;
  border:2px dashed #cbd5e1;border-radius:999px;
  padding:7px 14px;font-weight:800;font-size:13px;
}
.hcpb-book-promo-copy{
  border:none;background:none;cursor:pointer;font-size:14px;opacity:.7;padding:0;color:#0a1f44;
}
.hcpb-promo-apply-box{margin-bottom:18px}
.hcpb-promo-apply-row{display:flex;gap:10px;align-items:stretch;margin-top:6px}
.hcpb-promo-apply-row .hcpb-input{flex:1;margin:0}
.hcpb-promo-apply-btn{flex-shrink:0;padding:0 20px;min-height:48px;white-space:nowrap}

/* Editable booking summary (step 2) */
.hcpb-booking-summary{
  background:#fff;border:2px solid var(--hcpb-blue);border-radius:14px;
  padding:18px 16px;margin-bottom:22px;
}
.hcpb-booking-summary-title{margin:0;font-size:18px;font-weight:800;color:var(--hcpb-blue)}
.hcpb-booking-summary-head .hcpb-muted{margin-top:6px;font-size:14px}
.hcpb-booking-summary-grid{margin-top:14px}
.hcpb-booking-summary--compact{
  padding:10px 14px;margin-bottom:14px;border-width:1px;
}
.hcpb-booking-summary--compact .hcpb-booking-summary-title{font-size:15px}
.hcpb-booking-summary-grid--compact{
  margin-top:8px;gap:8px;
  grid-template-columns:repeat(4,1fr);
}
@media(max-width:760px){
  .hcpb-booking-summary-grid--compact{grid-template-columns:repeat(2,1fr)}
}
.hcpb-booking-summary--compact .hcpb-label{font-size:12px;margin-bottom:2px}
.hcpb-booking-summary--compact .hcpb-input{padding:7px 10px;font-size:13px;min-height:38px}
.hcpb-booking-summary--compact .hcpb-select-time{padding:4px 6px;font-size:12px}
.hcpb-booking-summary--compact .hcpb-duration{margin:0;font-size:13px;flex-shrink:0}
.hcpb-booking-summary-foot{
  display:flex;flex-wrap:wrap;align-items:flex-end;gap:10px 16px;
  margin-top:8px;padding-top:8px;border-top:1px solid #e5e7eb;
}
.hcpb-booking-summary-promo{flex:1;min-width:min(100%,220px)}
.hcpb-promo-apply-box--inline{margin:0}
.hcpb-promo-apply-box--inline .hcpb-label{font-size:12px;margin-bottom:2px}
.hcpb-promo-apply-box--inline .hcpb-promo-code-hint{font-size:11px;margin:0 0 4px;line-height:1.3}
.hcpb-promo-apply-box--inline .hcpb-promo-apply-row{margin-top:4px;gap:8px}
.hcpb-promo-apply-box--inline .hcpb-input{padding:7px 10px;font-size:13px;min-height:38px}
.hcpb-promo-apply-box--inline .hcpb-promo-apply-btn{min-height:38px;padding:0 14px;font-size:13px}
.hcpb-promo-apply-box--inline .hcpb-promo-hint{font-size:12px;margin-top:4px}
.hcpb-promo-applied-inline{
  font-size:13px;color:#047857;font-weight:600;margin:0;line-height:1.4;
}
@media(max-width:760px){
  .hcpb-booking-summary-foot{flex-direction:column;align-items:stretch}
  .hcpb-booking-summary-promo{min-width:0}
}

/* Step 4 promo reminder — banner only */
.hcpb-promo-reminder--banner-only{
  background:transparent;border:none;padding:0;margin-bottom:16px;
}
.hcpb-promo-reminder--banner-only .hcpb-book-promo{margin:0}

/* Step 4 — apply coupon reminder (only when no promo applied) */
.hcpb-promo-reminder--step4{
  background:linear-gradient(135deg,#f0f9ff,#eff6ff);
  border:1px solid #bfdbfe;
  border-radius:var(--hcpb-radius);
  padding:18px 20px;
  margin-bottom:20px;
}
.hcpb-promo-reminder-title{display:block;font-size:16px;margin-bottom:6px;color:#0f172a}
.hcpb-promo-reminder-text{margin:0 0 14px;font-size:14px;line-height:1.45}
.hcpb-book-promo--step4{margin:0 0 14px}
.hcpb-promo-apply-box--step4{margin-bottom:0}

/* Order summary sidebar (step 3) */
.hcpb-order-summary-mobile{
  display:block;
  background:var(--hcpb-panel-inner);border-radius:var(--hcpb-radius);
  padding:20px 18px;margin:20px 0 8px;
}
@media(min-width:960px){.hcpb-order-summary-mobile{display:none}}
.hcpb-order-summary .hcpb-summary-row{
  display:flex;justify-content:space-between;gap:10px;
  font-size:14px;padding:8px 0;border-bottom:1px solid var(--hcpb-border);
}
.hcpb-order-summary .hcpb-summary-row strong{text-align:right;font-weight:700;max-width:58%}
.hcpb-order-total{font-size:16px}
.hcpb-terms-subhead{margin:12px 0 6px;font-size:14px;color:#374151}

/* Thank you page */
.hcpb-thank-you{max-width:640px;margin:32px auto;padding:16px}
.hcpb-thank-card{
  background:#fff;border:1px solid var(--hcpb-border);border-radius:16px;
  padding:32px 24px;text-align:center;box-shadow:0 8px 24px rgba(15,23,42,.06);
}
.hcpb-thank-icon{
  width:64px;height:64px;border-radius:50%;background:#dcfce7;color:#166534;
  display:grid;place-items:center;font-size:32px;font-weight:800;margin:0 auto 16px;
}
.hcpb-thank-title{margin:0;font-size:26px;font-weight:800;color:var(--hcpb-text)}
.hcpb-thank-lead{color:var(--hcpb-muted);margin:10px 0 20px;line-height:1.5}
.hcpb-thank-details{text-align:left;background:#f8fafc;border-radius:12px;padding:16px;margin-bottom:16px}
.hcpb-thank-row{display:flex;justify-content:space-between;gap:12px;padding:8px 0;font-size:14px;border-bottom:1px solid #e2e8f0}
.hcpb-thank-row:last-child{border-bottom:none}
.hcpb-thank-mono{font-family:ui-monospace,monospace;font-size:12px;word-break:break-all}
.hcpb-thank-note{font-size:14px;color:var(--hcpb-muted);margin-bottom:20px}
.hcpb-thank-actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}

/* ── My bookings (inherits some tokens) ── */
.hcpb-my{max-width:900px;margin:0 auto;padding:24px 16px}
.hcpb-my-h1{font-size:28px;font-weight:800;margin:0}
.hcpb-my-sub{color:var(--hcpb-muted);margin-top:6px}
