:root{
  --rpb2-primary:#2563EB;
  --rpb2-primary-dark:#1D4ED8;
  --rpb2-primary-soft:rgba(37,99,235,.10);
  --rpb2-bg:#F8FAFC;
  --rpb2-surface:#FFFFFF;
  --rpb2-surface-soft:#F9FAFB;
  --rpb2-border:#E5E7EB;
  --rpb2-border-strong:#CBD5E1;
  --rpb2-text:#111827;
  --rpb2-text-soft:#374151;
  --rpb2-muted:#6B7280;
  --rpb2-success:#16A34A;
  --rpb2-warning:#D97706;
  --rpb2-danger:#DC2626;
  --rpb2-info:#2563EB;
  --rpb2-radius:8px;
  --rpb2-public-max-width:980px;
  --rpb2-shadow:0 8px 24px rgba(15,23,42,.06);
  --rpb2-shadow-soft:0 4px 14px rgba(15,23,42,.05);
}

.rpb2-public,
.rpb2-booking,
.rpb2-public-box{
  box-sizing:border-box;
  max-width:var(--rpb2-public-max-width);
  margin:18px auto;
  padding:0 14px;
  color:var(--rpb2-text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:16px;
  line-height:1.5;
}
.rpb2-public *,
.rpb2-booking *,
.rpb2-public-box *{box-sizing:border-box}
.rpb2-public a{color:var(--rpb2-primary);text-decoration:none}
.rpb2-public a:hover{text-decoration:underline}

.rpb2-flow-steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
  margin:0 0 12px;
}
.rpb2-flow-steps span{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:9px 10px;
  border:1px solid var(--rpb2-border);
  border-radius:8px;
  background:var(--rpb2-surface);
  color:var(--rpb2-muted);
  font-size:13px;
  font-weight:700;
  box-shadow:var(--rpb2-shadow-soft);
}
.rpb2-flow-steps b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 24px;
  width:24px;
  height:24px;
  border-radius:6px;
  background:var(--rpb2-surface-soft);
  color:var(--rpb2-muted);
  font-size:12px;
  font-weight:800;
}
.rpb2-flow-steps .rpb2-step-active{
  border-color:rgba(37,99,235,.35);
  background:linear-gradient(180deg,#fff,var(--rpb2-primary-soft));
  color:var(--rpb2-text);
}
.rpb2-flow-steps .rpb2-step-active b,
.rpb2-flow-steps .rpb2-step-done b{
  background:var(--rpb2-primary);
  color:#fff;
}
.rpb2-flow-steps .rpb2-step-done:not(.rpb2-step-active){color:var(--rpb2-text-soft)}

.rpb2-booking-form,
.rpb2-booking-main{width:100%;min-width:0}
.rpb2-form-section,
.rpb2-submit-bar,
.rpb2-public-box,
.rpb2-status-hero{
  margin:0 0 12px;
  padding:18px;
  border:1px solid var(--rpb2-border);
  border-radius:var(--rpb2-radius);
  background:var(--rpb2-surface);
  box-shadow:var(--rpb2-shadow-soft);
}
.rpb2-section-heading{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:0 0 14px;
}
.rpb2-section-number{
  flex:0 0 30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:7px;
  background:var(--rpb2-primary);
  color:#fff;
  font-size:14px;
  font-weight:800;
}
.rpb2-form-section h3,
.rpb2-submit-bar h3,
.rpb2-public-section h3{
  margin:0 0 3px;
  font-size:19px;
  line-height:1.25;
  font-weight:750;
  letter-spacing:-.015em;
}
.rpb2-muted{
  margin:0;
  color:var(--rpb2-muted);
  font-size:14px;
}
.rpb2-public-message p{margin:.2em 0 .8em}

.rpb2-services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:10px;
}
.rpb2-service-card{
  position:relative;
  display:block;
  min-height:118px;
  padding:14px 44px 14px 14px;
  border:1px solid var(--rpb2-border);
  border-radius:8px;
  background:var(--rpb2-surface);
  cursor:pointer;
  transition:border-color .16s ease,box-shadow .16s ease,background .16s ease,transform .16s ease;
}
.rpb2-service-card:hover{border-color:rgba(37,99,235,.45);box-shadow:var(--rpb2-shadow)}
.rpb2-service-card:has(input:checked),
.rpb2-service-card.rpb2-service-card-selected{border-color:var(--rpb2-primary);background:linear-gradient(180deg,#fff,var(--rpb2-primary-soft));box-shadow:0 0 0 2px rgba(37,99,235,.08)}
.rpb2-service-card input{position:absolute;opacity:0;pointer-events:none}
.rpb2-service-check{
  position:absolute;
  right:12px;
  top:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  border:1px solid var(--rpb2-border-strong);
  border-radius:6px;
  color:transparent;
  background:#fff;
  font-size:13px;
  font-weight:900;
}
.rpb2-service-card:has(input:checked) .rpb2-service-check,
.rpb2-service-card.rpb2-service-card-selected .rpb2-service-check{background:var(--rpb2-primary);border-color:var(--rpb2-primary);color:#fff}
.rpb2-service-name{display:block;margin:0 0 6px;font-size:16px;font-weight:800;color:var(--rpb2-text)}
.rpb2-service-meta{display:block;color:var(--rpb2-primary-dark);font-size:13px;font-weight:750;margin-bottom:7px}
.rpb2-service-desc{display:block;color:var(--rpb2-muted);font-size:13px;line-height:1.45}

.rpb2-calendar-shell{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(280px,.95fr);
  gap:14px;
  align-items:start;
}
.rpb2-calendar[hidden]{display:none!important}
.rpb2-calendar,
.rpb2-day-slots,
.rpb2-selected-summary{
  border:1px solid var(--rpb2-border);
  border-radius:8px;
  background:#fff;
}
.rpb2-calendar{padding:12px}
.rpb2-calendar-head{
  display:grid;
  grid-template-columns:38px minmax(0,1fr) 38px;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}
.rpb2-calendar-head-copy{text-align:center;min-width:0}
.rpb2-calendar-head strong{display:block;font-size:16px;line-height:1.2;color:var(--rpb2-text)}
.rpb2-calendar-head small{display:block;min-height:18px;color:var(--rpb2-muted);font-size:12px;white-space:normal}
.rpb2-calendar-nav{
  width:38px;
  height:38px;
  border:1px solid var(--rpb2-border);
  border-radius:8px;
  background:#fff;
  color:var(--rpb2-text);
  cursor:pointer;
  font-size:24px;
  line-height:1;
}
.rpb2-calendar-nav:hover,
.rpb2-calendar-nav:focus-visible{border-color:var(--rpb2-primary);outline:none;box-shadow:0 0 0 3px rgba(37,99,235,.12)}
.rpb2-calendar-weekdays,
.rpb2-calendar-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:5px}
.rpb2-calendar-weekdays{margin-bottom:6px}
.rpb2-calendar-weekdays span{text-align:center;color:var(--rpb2-muted);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.rpb2-calendar-empty,
.rpb2-calendar-day{
  min-height:52px;
  border-radius:7px;
}
.rpb2-calendar-empty{display:block;background:transparent}
.rpb2-calendar-day{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:3px;
  width:100%;
  padding:6px 3px;
  border:1px solid var(--rpb2-border);
  background:#fff;
  color:var(--rpb2-text);
  cursor:pointer;
  font-weight:800;
  transition:border-color .12s ease,background .12s ease,box-shadow .12s ease,transform .12s ease;
}
.rpb2-calendar-day:not(.rpb2-calendar-day-disabled):hover,
.rpb2-calendar-day:not(.rpb2-calendar-day-disabled):focus-visible{
  border-color:var(--rpb2-primary);
  outline:none;
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}
.rpb2-calendar-day-number{font-size:16px;line-height:1}
.rpb2-calendar-day-meta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:var(--rpb2-primary-soft);
  color:var(--rpb2-primary-dark);
  font-size:10px;
  font-weight:800;
}
.rpb2-calendar-day-disabled{background:#F8FAFC;color:#A1A1AA;cursor:not-allowed;opacity:.7}
.rpb2-calendar-day-disabled .rpb2-calendar-day-meta{display:none}
.rpb2-calendar-day-today:not(.rpb2-calendar-day-selected){border-color:rgba(37,99,235,.45)}
.rpb2-calendar-day-first:not(.rpb2-calendar-day-selected)::after{
  content:"";
  position:absolute;
  top:5px;
  right:5px;
  width:6px;
  height:6px;
  border-radius:999px;
  background:var(--rpb2-success);
}
.rpb2-calendar-day-selected,
.rpb2-calendar-day[aria-selected="true"],
.rpb2-calendar-day[aria-pressed="true"]{
  background:var(--rpb2-primary);
  border-color:var(--rpb2-primary);
  color:#fff;
}
.rpb2-calendar-day-selected .rpb2-calendar-day-meta{background:rgba(255,255,255,.22);color:#fff}

.rpb2-day-slots{padding:12px;min-height:160px}
.rpb2-day-slots-head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  margin-bottom:10px;
}
.rpb2-day-slots-head strong{display:block;font-size:16px;color:var(--rpb2-text)}
.rpb2-day-slots-head p{margin:2px 0 0;color:var(--rpb2-muted);font-size:13px}
.rpb2-day-slots-head span{color:var(--rpb2-primary);font-weight:800;font-size:13px;white-space:nowrap}
.rpb2-time-grid,
.rpb2-slot-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(118px,1fr));gap:8px}
.rpb2-time-period{margin:12px 0 0}
.rpb2-time-period:first-child{margin-top:0}
.rpb2-time-period-title{display:block;margin:0 0 7px;color:var(--rpb2-muted);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.rpb2-time-card,
.rpb2-slot-card{
  position:relative;
  display:flex;
  min-height:44px;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:9px 10px;
  border:1px solid var(--rpb2-border);
  border-radius:7px;
  background:#fff;
  color:var(--rpb2-text);
  cursor:pointer;
  font-size:14px;
  font-weight:800;
  text-align:center;
}
.rpb2-time-card input,
.rpb2-slot-card input{position:absolute;opacity:0;pointer-events:none}
.rpb2-time-card:hover,
.rpb2-slot-card:hover{border-color:var(--rpb2-primary);box-shadow:0 0 0 3px rgba(37,99,235,.10)}
.rpb2-time-card-active,
.rpb2-slot-card-active,
.rpb2-time-card:has(input:checked),
.rpb2-slot-card:has(input:checked){background:var(--rpb2-primary);border-color:var(--rpb2-primary);color:#fff}
.rpb2-time-card-low{border-color:rgba(217,119,6,.35)}

.rpb2-selection-counter{
  position:absolute;
  right:12px;
  top:-46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:70px;
  min-height:30px;
  padding:5px 9px;
  border-radius:7px;
  background:var(--rpb2-text);
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.rpb2-selected-summary{grid-column:1 / -1;padding:10px 12px;background:var(--rpb2-surface-soft)}
.rpb2-selected-summary[hidden]{display:none!important}
.rpb2-selected-summary-head{display:flex;justify-content:space-between;gap:10px;align-items:center;margin-bottom:8px}
.rpb2-selected-summary-head strong{font-size:14px}
.rpb2-selected-empty{color:var(--rpb2-muted);font-size:13px}
.rpb2-selected-list{display:grid;gap:7px;margin:0;padding:0;list-style:none}
.rpb2-selected-item{display:flex;justify-content:space-between;gap:10px;align-items:center;padding:9px;border:1px solid var(--rpb2-border);border-radius:7px;background:#fff}
.rpb2-selected-item-copy{display:grid;gap:1px;font-size:13px;color:var(--rpb2-text-soft)}
.rpb2-selected-remove{border:0;background:transparent;color:var(--rpb2-danger);font-weight:800;cursor:pointer}
.rpb2-selected-note{margin-top:7px;color:var(--rpb2-muted);font-size:13px}
.rpb2-selected-note-ready{color:var(--rpb2-success);font-weight:750}

.rpb2-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.rpb2-fields label,
.rpb2-consent{display:block;color:var(--rpb2-text-soft);font-size:14px;font-weight:700}
.rpb2-fields input{
  display:block;
  width:100%;
  min-height:46px;
  margin-top:5px;
  padding:10px 12px;
  border:1px solid var(--rpb2-border);
  border-radius:7px;
  background:#fff;
  color:var(--rpb2-text);
  font-size:15px;
}
.rpb2-fields input:focus{border-color:var(--rpb2-primary);outline:none;box-shadow:0 0 0 3px rgba(37,99,235,.12)}
.rpb2-consent{margin-top:12px;display:flex;gap:9px;align-items:flex-start;font-weight:500;color:var(--rpb2-muted)}
.rpb2-consent input{margin-top:3px;flex:0 0 auto}
.rpb2-conditions-block{margin-top:12px;padding:12px;border:1px solid var(--rpb2-border);border-radius:7px;background:var(--rpb2-surface-soft)}
.rpb2-conditions-block strong{display:block;margin-bottom:4px}

.rpb2-submit-bar{display:block}
.rpb2-paypal-box{min-height:54px;margin-top:12px}
.rpb2-paypal-placeholder,
.rpb2-loading{
  padding:13px;
  border:1px dashed var(--rpb2-border-strong);
  border-radius:7px;
  background:var(--rpb2-surface-soft);
  color:var(--rpb2-muted);
  text-align:center;
  font-size:14px;
}
.rpb2-paypal-title{margin:0 0 8px;font-weight:800;color:var(--rpb2-text)}
.rpb2-paypal-help{margin:8px 0 0;color:var(--rpb2-muted);font-size:13px}
.rpb2-paypal-sdk-target{max-width:420px}

.rpb2-result{margin-top:10px;min-height:1px;font-weight:700}
.rpb2-result:empty{display:none}
.rpb2-result-info,.rpb2-result-success,.rpb2-result-warning,.rpb2-result-error{
  padding:10px 12px;border-radius:7px;border:1px solid;background:#fff;font-size:14px;
}
.rpb2-result-info{border-color:rgba(37,99,235,.25);color:var(--rpb2-info);background:rgba(37,99,235,.06)}
.rpb2-result-success{border-color:rgba(22,163,74,.28);color:var(--rpb2-success);background:rgba(22,163,74,.07)}
.rpb2-result-warning{border-color:rgba(217,119,6,.30);color:var(--rpb2-warning);background:rgba(217,119,6,.08)}
.rpb2-result-error{border-color:rgba(220,38,38,.30);color:var(--rpb2-danger);background:rgba(220,38,38,.08)}
.rpb2-alert{padding:12px;border-radius:7px;border:1px solid var(--rpb2-border);background:#fff;color:var(--rpb2-text-soft)}
.rpb2-alert-warning{border-color:rgba(217,119,6,.35);background:rgba(217,119,6,.08);color:#92400E}
.rpb2-button,
.rpb2-public-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:9px 13px;
  border:1px solid var(--rpb2-border-strong);
  border-radius:7px;
  background:#fff;
  color:var(--rpb2-text);
  font-weight:800;
  cursor:pointer;
  text-decoration:none!important;
}
.rpb2-button:hover,
.rpb2-public-action:hover{border-color:var(--rpb2-primary);color:var(--rpb2-primary)}
.rpb2-public-action-primary{background:var(--rpb2-primary);border-color:var(--rpb2-primary);color:#fff!important}
.rpb2-button-small{min-height:36px;padding:7px 10px;font-size:13px}

.rpb2-empty-state{padding:16px;border:1px dashed var(--rpb2-border-strong);border-radius:7px;background:var(--rpb2-surface-soft);text-align:center;color:var(--rpb2-muted)}
.rpb2-empty-state strong{display:block;color:var(--rpb2-text);margin-bottom:4px}
.rpb2-empty-state p{margin:0 0 10px}
.rpb2-calendar-skeleton{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;min-height:52px;border-radius:7px;background:linear-gradient(90deg,#F3F4F6,#FFFFFF,#F3F4F6);background-size:200% 100%;animation:rpb2Pulse 1.2s ease-in-out infinite}
.rpb2-calendar-skeleton i,.rpb2-calendar-skeleton b,.rpb2-time-grid-skeleton span{display:block;border-radius:999px;background:#E5E7EB}
.rpb2-calendar-skeleton i{width:20px;height:10px}.rpb2-calendar-skeleton b{width:26px;height:16px}
.rpb2-time-grid-skeleton span{height:42px;border-radius:7px}
@keyframes rpb2Pulse{0%{background-position:0 0}100%{background-position:-200% 0}}

.rpb2-public-box{max-width:860px}
.rpb2-status-hero{text-align:center;padding:24px 18px}
.rpb2-status-icon{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:8px;background:var(--rpb2-primary-soft);color:var(--rpb2-primary);font-size:22px;font-weight:900;margin-bottom:10px}
.rpb2-status-badge{display:inline-flex;align-items:center;justify-content:center;min-height:28px;padding:4px 10px;border-radius:999px;background:var(--rpb2-primary-soft);color:var(--rpb2-primary-dark);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.rpb2-status-hero h2{margin:10px 0 6px;font-size:26px;line-height:1.2}
.rpb2-status-hero p{margin:0;color:var(--rpb2-muted)}
.rpb2-public-section{margin:12px 0;padding:16px;border:1px solid var(--rpb2-border);border-radius:8px;background:#fff;box-shadow:var(--rpb2-shadow-soft)}
.rpb2-detail-grid,.rpb2-status-reference-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:10px}
.rpb2-detail-card{padding:12px;border:1px solid var(--rpb2-border);border-radius:7px;background:var(--rpb2-surface-soft)}
.rpb2-detail-card span{display:block;color:var(--rpb2-muted);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}.rpb2-detail-card strong{display:block;margin-top:3px;color:var(--rpb2-text);word-break:break-word}
.rpb2-session-list,.rpb2-next-list{display:grid;gap:8px;margin:0;padding:0;list-style:none}.rpb2-session-list li,.rpb2-next-list li{padding:10px;border:1px solid var(--rpb2-border);border-radius:7px;background:var(--rpb2-surface-soft)}
.rpb2-status-actions{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.rpb2-status-actions-secondary{display:flex;flex-wrap:wrap;gap:8px}.rpb2-status-actions-notice{width:100%;color:var(--rpb2-muted);font-size:13px}
.rpb2-status-refresh-result{margin-top:8px}.rpb2-support-block{color:var(--rpb2-muted)}
.rpb2-status-timeline{display:grid;gap:8px;margin:0;padding:0;list-style:none}.rpb2-status-timeline li{display:flex;gap:9px;align-items:flex-start;padding:10px;border:1px solid var(--rpb2-border);border-radius:7px;background:#fff}.rpb2-status-timeline b{display:inline-flex;width:22px;height:22px;border-radius:6px;align-items:center;justify-content:center;background:var(--rpb2-primary-soft);color:var(--rpb2-primary);font-size:12px}
.rpb2-public-empty{padding:14px;border:1px dashed var(--rpb2-border-strong);border-radius:7px;background:var(--rpb2-surface-soft);color:var(--rpb2-muted)}
.rpb2-copy-done,.rpb2-copied{color:var(--rpb2-success);font-weight:800}
.rpb2-booking-locked{opacity:.92}.rpb2-booking-locked input,.rpb2-booking-locked button{cursor:progress}

@media (max-width: 860px){
  .rpb2-public,.rpb2-booking,.rpb2-public-box{margin:12px auto;padding:0 10px;font-size:15px}
  .rpb2-flow-steps{grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;margin-bottom:10px}
  .rpb2-flow-steps span{min-height:40px;padding:7px 5px;gap:5px;font-size:11px;justify-content:center;text-align:center}
  .rpb2-flow-steps b{width:22px;height:22px;flex-basis:22px;border-radius:5px;font-size:11px}
  .rpb2-form-section,.rpb2-submit-bar,.rpb2-public-section,.rpb2-status-hero{padding:14px;margin-bottom:10px}
  .rpb2-section-heading{gap:8px;margin-bottom:12px}.rpb2-section-number{width:28px;height:28px;flex-basis:28px;border-radius:6px}.rpb2-form-section h3,.rpb2-submit-bar h3{font-size:17px}
  .rpb2-services{grid-template-columns:1fr}.rpb2-service-card{min-height:0;padding:13px 42px 13px 13px}
  .rpb2-calendar-shell{display:block}.rpb2-calendar,.rpb2-day-slots,.rpb2-selected-summary{margin-bottom:10px}
  .rpb2-selection-counter{position:static;margin:-2px 0 10px auto;width:max-content;background:var(--rpb2-primary)}
  .rpb2-calendar{padding:10px}.rpb2-calendar-head{grid-template-columns:36px minmax(0,1fr) 36px}.rpb2-calendar-nav{width:36px;height:36px;border-radius:7px}.rpb2-calendar-head strong{font-size:15px}.rpb2-calendar-head small{font-size:11px}
  .rpb2-calendar-weekdays,.rpb2-calendar-grid{gap:4px}.rpb2-calendar-weekdays span{font-size:9px}.rpb2-calendar-empty,.rpb2-calendar-day{min-height:46px;border-radius:6px}.rpb2-calendar-day-number{font-size:15px}.rpb2-calendar-day-meta{min-width:17px;height:17px;font-size:9px}
  .rpb2-day-slots{padding:10px}.rpb2-day-slots-head{display:block}.rpb2-day-slots-head span{display:block;margin-top:4px}.rpb2-time-grid,.rpb2-slot-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}.rpb2-time-card,.rpb2-slot-card{min-height:44px;padding:8px 6px;font-size:13px}
  .rpb2-fields{grid-template-columns:1fr;gap:9px}.rpb2-fields input{min-height:45px}
  .rpb2-paypal-sdk-target{max-width:100%}.rpb2-status-hero h2{font-size:22px}.rpb2-status-actions{display:grid;grid-template-columns:1fr}.rpb2-status-actions-secondary{display:grid;grid-template-columns:1fr;width:100%}.rpb2-public-action{width:100%}
}
@media (max-width: 380px){
  .rpb2-public,.rpb2-booking,.rpb2-public-box{padding:0 8px}.rpb2-flow-steps span{font-size:10px}.rpb2-flow-steps b{width:20px;height:20px;flex-basis:20px}.rpb2-calendar-empty,.rpb2-calendar-day{min-height:42px}.rpb2-calendar-grid,.rpb2-calendar-weekdays{gap:3px}.rpb2-time-grid,.rpb2-slot-grid{grid-template-columns:1fr 1fr}.rpb2-time-card,.rpb2-slot-card{font-size:12px}
}
.rpb2-availability-cta,
.rpb2-inline-link,
.rpb2-today-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:0;
  background:transparent;
  color:var(--rpb2-primary);
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  padding:2px 4px;
}
.rpb2-availability-cta small{color:var(--rpb2-muted);font-weight:700}.rpb2-next-empty{color:var(--rpb2-muted);font-size:12px}.rpb2-time-period-title{display:flex;align-items:center;justify-content:space-between;gap:8px}.rpb2-time-period-title small{font-size:11px;color:var(--rpb2-muted);font-weight:700;text-transform:none;letter-spacing:0}.rpb2-time-card small,.rpb2-slot-card small{display:none}

/* 2.4.16 — Conversion polish: guided steps, mobile stability and premium trust pages. */
.rpb2-flow-steps{
  position:relative;
}
.rpb2-flow-steps span{
  overflow:hidden;
  min-width:0;
  border-radius:8px;
  background:#fff;
  box-shadow:0 5px 14px rgba(15,23,42,.05);
}
.rpb2-flow-steps em{
  display:block;
  min-width:0;
  overflow:hidden;
  color:inherit;
  font-style:normal;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.rpb2-flow-steps .rpb2-step-done{
  border-color:rgba(22,163,74,.38);
  background:linear-gradient(180deg,#fff,#F0FDF4);
  color:#166534;
}
.rpb2-flow-steps .rpb2-step-done b{
  background:var(--rpb2-success);
  color:#fff;
}
.rpb2-flow-steps .rpb2-step-active{
  border-color:rgba(37,99,235,.42);
  background:linear-gradient(180deg,#fff,#EFF6FF);
  color:var(--rpb2-primary-dark);
}
.rpb2-flow-steps .rpb2-step-active b{
  background:var(--rpb2-primary);
  color:#fff;
}
.rpb2-step-card{
  position:relative;
  overflow:hidden;
}
.rpb2-step-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:transparent;
}
.rpb2-step-card-active::before{background:var(--rpb2-primary)}
.rpb2-step-card-complete::before{background:var(--rpb2-success)}
.rpb2-step-card-complete .rpb2-section-number{
  background:var(--rpb2-success);
}
.rpb2-step-card-complete .rpb2-section-number::before{
  content:"✓";
  font-size:14px;
}
.rpb2-step-card-complete .rpb2-section-number{
  color:transparent;
  position:relative;
}
.rpb2-step-card-complete .rpb2-section-number::before{
  color:#fff;
  position:absolute;
}

.rpb2-fields input,
.rpb2-fields input[type="text"],
.rpb2-fields input[type="email"],
.rpb2-fields input[type="tel"],
.rpb2-fields input[type="number"]{
  appearance:none;
  -webkit-appearance:none;
  box-shadow:none;
  outline:none;
  width:100%;
  min-height:46px;
  margin-top:5px;
  padding:10px 12px;
  border:1px solid var(--rpb2-border)!important;
  border-radius:7px!important;
  background:#fff!important;
  color:var(--rpb2-text)!important;
  font:inherit;
  font-size:15px!important;
  line-height:1.35;
}
.rpb2-fields input[type="email"]:focus,
.rpb2-fields input:focus{
  border-color:var(--rpb2-primary)!important;
  box-shadow:0 0 0 3px rgba(37,99,235,.12)!important;
}

.rpb2-calendar-head small .rpb2-availability-cta,
.rpb2-calendar-head small .rpb2-today-link{display:none!important}
.rpb2-next-empty{
  display:block;
  color:var(--rpb2-muted);
  font-size:12px;
  line-height:1.25;
}
.rpb2-calendar{
  border-color:#DDE7F5;
  background:linear-gradient(180deg,#fff,#FBFDFF);
}
.rpb2-calendar-day{
  min-height:54px;
  border-color:#E2E8F0;
  background:#fff;
}
.rpb2-calendar-day:not(.rpb2-calendar-day-disabled){
  box-shadow:0 2px 8px rgba(15,23,42,.04);
}
.rpb2-calendar-day:not(.rpb2-calendar-day-disabled):hover,
.rpb2-calendar-day:not(.rpb2-calendar-day-disabled):focus-visible{
  transform:translateY(-1px);
}
.rpb2-calendar-day-selected,
.rpb2-calendar-day[aria-selected="true"],
.rpb2-calendar-day[aria-pressed="true"]{
  background:linear-gradient(180deg,var(--rpb2-primary),var(--rpb2-primary-dark));
}
.rpb2-calendar-day-has-selection:not(.rpb2-calendar-day-selected){
  border-color:rgba(22,163,74,.42);
  background:#F0FDF4;
}
.rpb2-time-card,
.rpb2-slot-card{
  min-height:48px;
  border-color:#DDE7F5;
  background:#fff;
}
.rpb2-time-card-active,
.rpb2-slot-card-active,
.rpb2-time-card:has(input:checked),
.rpb2-slot-card:has(input:checked){
  background:linear-gradient(180deg,var(--rpb2-primary),var(--rpb2-primary-dark));
}

.rpb2-payment-section{
  background:linear-gradient(180deg,#FFFFFF,#F8FBFF);
  border-color:#D8E5F7;
}
.rpb2-payment-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,420px);
  gap:16px;
  align-items:start;
}
.rpb2-payment-copy .rpb2-section-heading{margin-bottom:10px}
.rpb2-payment-trust{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:7px;
  margin:10px 0 0;
  padding:0;
  list-style:none;
}
.rpb2-payment-trust li{
  min-width:0;
  padding:8px 9px;
  border:1px solid rgba(22,163,74,.18);
  border-radius:7px;
  background:#F0FDF4;
  color:#166534;
  font-size:12px;
  font-weight:800;
  line-height:1.25;
}
.rpb2-paypal-box-inline{
  min-width:0;
  margin-top:0;
}
.rpb2-paypal-placeholder,
.rpb2-paypal-sdk-target,
.rpb2-paypal-box iframe{
  max-width:100%!important;
}
.rpb2-paypal-placeholder{
  border-style:solid;
  border-color:#D8E5F7;
  background:#fff;
  color:var(--rpb2-muted);
}

.rpb2-status-page{
  --rpb2-status-accent:var(--rpb2-primary);
}
.rpb2-status-success{--rpb2-status-accent:var(--rpb2-success)}
.rpb2-status-warning{--rpb2-status-accent:var(--rpb2-warning)}
.rpb2-status-neutral{--rpb2-status-accent:var(--rpb2-primary)}
.rpb2-status-hero{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:14px;
  align-items:start;
  text-align:left;
  border-color:rgba(37,99,235,.16);
  background:linear-gradient(180deg,#FFFFFF,#F8FBFF);
}
.rpb2-status-success .rpb2-status-hero{border-color:rgba(22,163,74,.25);background:linear-gradient(180deg,#fff,#F0FDF4)}
.rpb2-status-warning .rpb2-status-hero{border-color:rgba(217,119,6,.25);background:linear-gradient(180deg,#fff,#FFFBEB)}
.rpb2-status-icon{
  width:46px;
  height:46px;
  border-radius:9px;
  background:var(--rpb2-status-accent);
  color:#fff;
  margin:0;
  box-shadow:0 8px 18px rgba(15,23,42,.10);
}
.rpb2-status-badge{
  border-radius:7px;
  background:#fff;
  color:var(--rpb2-status-accent);
  border:1px solid rgba(15,23,42,.08);
}
.rpb2-status-hero h2{
  margin:8px 0 6px;
  font-size:27px;
  letter-spacing:-.02em;
}
.rpb2-detail-card,
.rpb2-public-section{
  border-color:#DDE7F5;
  background:#fff;
}
.rpb2-detail-card{
  position:relative;
  overflow:hidden;
}
.rpb2-detail-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:3px;
  background:var(--rpb2-status-accent,var(--rpb2-primary));
}
.rpb2-copy-reference{
  margin-top:8px;
  min-height:34px;
  padding:6px 10px;
  border:1px solid #D8E5F7;
  border-radius:7px;
  background:#fff;
  color:var(--rpb2-primary);
  font-weight:800;
  cursor:pointer;
}
.rpb2-next-list li,
.rpb2-session-list li{
  background:#F8FBFF;
  border-color:#DDE7F5;
}
.rpb2-status-actions{
  padding:12px;
  border:1px solid #DDE7F5;
  border-radius:8px;
  background:#fff;
}
.rpb2-public-details{
  margin:12px 0;
  padding:12px;
  border:1px solid var(--rpb2-border);
  border-radius:8px;
  background:#fff;
}

@media (max-width: 860px){
  .rpb2-flow-steps{
    position:sticky;
    top:8px;
    z-index:20;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:4px;
    padding:6px;
    margin:0 0 10px;
    border:1px solid rgba(226,232,240,.95);
    border-radius:10px;
    background:rgba(255,255,255,.96);
    box-shadow:0 8px 22px rgba(15,23,42,.08);
    backdrop-filter:saturate(1.2) blur(8px);
  }
  .rpb2-flow-steps span{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:3px;
    min-height:46px;
    padding:5px 3px;
    border-radius:7px;
    font-size:10.5px;
    line-height:1.05;
    box-shadow:none;
  }
  .rpb2-flow-steps b{
    width:22px;
    height:22px;
    flex:0 0 22px;
    border-radius:6px;
  }
  .rpb2-flow-steps em{
    max-width:100%;
    line-height:1.05;
  }
  .rpb2-payment-layout{
    grid-template-columns:1fr;
    gap:10px;
  }
  .rpb2-payment-trust{
    grid-template-columns:1fr;
    gap:6px;
  }
  .rpb2-payment-trust li{
    padding:7px 8px;
  }
  .rpb2-paypal-box,
  .rpb2-paypal-box *{
    max-width:100%;
    overflow-wrap:anywhere;
  }
  .rpb2-calendar-day{
    min-height:48px;
  }
  .rpb2-status-hero{
    grid-template-columns:1fr;
    text-align:left;
  }
  .rpb2-status-icon{
    width:42px;
    height:42px;
  }
  .rpb2-status-hero h2{
    font-size:22px;
  }
}
@media (max-width: 380px){
  .rpb2-flow-steps{
    padding:5px;
  }
  .rpb2-flow-steps span{
    min-height:44px;
    font-size:9.5px;
  }
  .rpb2-flow-steps b{
    width:20px;
    height:20px;
    flex-basis:20px;
    font-size:10px;
  }
  .rpb2-payment-section .rpb2-muted,
  .rpb2-paypal-placeholder{
    font-size:13px;
  }
}

/* 2.4.17 — Focused conversion corrections: required customer data, lighter PayPal block and elegant status pages. */
.rpb2-payment-section{
  background:#fff;
  border-color:#DDE7F5;
}
.rpb2-payment-heading{
  margin-bottom:12px;
}
.rpb2-payment-heading h3{
  font-weight:720;
}
.rpb2-paypal-panel{
  display:grid;
  gap:10px;
  max-width:560px;
  margin:0 auto;
}
.rpb2-payment-badges{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  justify-content:center;
  align-items:center;
  margin:0 0 2px;
}
.rpb2-payment-badges span{
  display:inline-flex;
  align-items:center;
  gap:5px;
  min-height:28px;
  padding:5px 9px;
  border:1px solid rgba(37,99,235,.16);
  border-radius:8px;
  background:#F8FBFF;
  color:#334155;
  font-size:12px;
  font-weight:650;
  line-height:1.15;
  white-space:nowrap;
}
.rpb2-payment-badges i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:15px;
  height:15px;
  border-radius:50%;
  background:#ECFDF5;
  color:#15803D;
  font-size:10px;
  font-style:normal;
  font-weight:800;
}
.rpb2-paypal-box-inline{
  width:100%;
  min-width:0;
  margin:0;
  padding:10px;
  border:1px solid #DDE7F5;
  border-radius:9px;
  background:#FFFFFF;
  box-shadow:0 6px 16px rgba(15,23,42,.045);
  overflow:hidden;
}
.rpb2-paypal-placeholder{
  border:1px dashed #CBD5E1;
  background:#F8FAFC;
  color:#64748B;
  font-size:13px;
  line-height:1.35;
}
.rpb2-paypal-note{
  margin:0;
  color:#64748B;
  font-size:12.5px;
  line-height:1.45;
  text-align:center;
}
.rpb2-paypal-sdk-target,
.rpb2-paypal-box iframe,
.rpb2-paypal-box > div{
  max-width:100%!important;
}

.rpb2-status-page{
  max-width:900px;
  font-weight:400;
}
.rpb2-status-head{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:14px;
  align-items:flex-start;
  padding:18px;
  text-align:left;
  border:1px solid #DDE7F5;
  border-radius:10px;
  background:linear-gradient(180deg,#fff,#F8FBFF);
  box-shadow:0 8px 20px rgba(15,23,42,.05);
}
.rpb2-status-success .rpb2-status-head{
  border-color:rgba(22,163,74,.22);
  background:linear-gradient(180deg,#fff,#F4FBF6);
}
.rpb2-status-warning .rpb2-status-head{
  border-color:rgba(217,119,6,.22);
  background:linear-gradient(180deg,#fff,#FFFBF0);
}
.rpb2-status-head .rpb2-status-icon{
  width:42px;
  height:42px;
  border-radius:9px;
  margin:0;
  font-size:20px;
  font-weight:750;
}
.rpb2-status-content{
  min-width:0;
}
.rpb2-status-badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
  margin-bottom:8px;
}
.rpb2-status-badge,
.rpb2-status-mini-badge{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:4px 9px;
  border-radius:7px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:#334155;
  font-size:11.5px;
  font-weight:650;
  letter-spacing:0;
  text-transform:none;
  line-height:1.15;
}
.rpb2-status-badge{
  color:var(--rpb2-status-accent,var(--rpb2-primary));
}
.rpb2-status-mini-badge{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace;
  color:#475569;
  background:#F8FAFC;
}
.rpb2-status-head h2{
  margin:0 0 7px;
  font-size:25px;
  line-height:1.2;
  font-weight:720;
  letter-spacing:-.015em;
  color:#0F172A;
}
.rpb2-public-message,
.rpb2-public-message p{
  color:#475569;
  font-size:14.5px;
  line-height:1.55;
}
.rpb2-public-message p:last-child{margin-bottom:0}
.rpb2-public-section{
  border-color:#DDE7F5;
  border-radius:10px;
  box-shadow:0 5px 14px rgba(15,23,42,.035);
}
.rpb2-public-section h3{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  color:#0F172A;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.01em;
}
.rpb2-public-section h3::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--rpb2-status-accent,var(--rpb2-primary));
  box-shadow:0 0 0 4px rgba(37,99,235,.08);
}
.rpb2-detail-grid{
  gap:9px;
}
.rpb2-detail-card{
  padding:12px 12px 12px 14px;
  border-color:#DDE7F5;
  border-radius:9px;
  background:#fff;
  box-shadow:none;
}
.rpb2-detail-card::before{
  width:2px;
  opacity:.75;
}
.rpb2-detail-card span{
  color:#64748B;
  font-size:11.5px;
  font-weight:650;
  letter-spacing:0;
  text-transform:none;
}
.rpb2-detail-card strong{
  margin-top:4px;
  color:#0F172A;
  font-weight:650;
  line-height:1.35;
}
.rpb2-detail-card code{
  font-size:13px;
  font-weight:600;
  color:#0F172A;
}
.rpb2-guided-steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
}
.rpb2-guided-steps li{
  position:relative;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:8px;
  align-items:center;
  min-height:58px;
  padding:10px;
  border:1px solid #DDE7F5;
  border-radius:9px;
  background:#fff;
}
.rpb2-guided-steps .rpb2-step-marker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:8px;
  background:#F1F5F9;
  color:#64748B;
  font-size:12px;
  font-weight:750;
}
.rpb2-guided-steps .rpb2-step-copy{
  display:grid;
  gap:2px;
  min-width:0;
}
.rpb2-guided-steps em{
  color:#94A3B8;
  font-size:11px;
  font-style:normal;
  font-weight:500;
}
.rpb2-guided-steps strong{
  color:#1E293B;
  font-size:13px;
  font-weight:650;
  line-height:1.2;
}
.rpb2-guided-steps .rpb2-timeline-done .rpb2-step-marker{
  background:#ECFDF5;
  color:#15803D;
}
.rpb2-guided-steps .rpb2-timeline-active{
  border-color:rgba(37,99,235,.26);
  background:#F8FBFF;
}
.rpb2-guided-steps .rpb2-timeline-active .rpb2-step-marker{
  background:#EFF6FF;
  color:#1D4ED8;
}
.rpb2-session-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:8px;
  margin:0;
  padding:0;
}
.rpb2-session-item{
  display:grid;
  gap:4px;
  padding:11px 12px;
  border:1px solid #DDE7F5;
  border-radius:9px;
  background:#F8FBFF;
}
.rpb2-session-index{
  color:#64748B;
  font-size:12px;
  font-weight:600;
}
.rpb2-session-date{
  color:#0F172A;
  font-size:14px;
  font-weight:600;
  line-height:1.35;
}
.rpb2-next-list{
  display:grid;
  gap:8px;
  margin:0;
  padding:0;
}
.rpb2-next-item{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:9px;
  align-items:flex-start;
  padding:10px 11px;
  border:1px solid #DDE7F5;
  border-radius:9px;
  background:#fff;
}
.rpb2-next-item > span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:23px;
  height:23px;
  border-radius:7px;
  background:#EFF6FF;
  color:#1D4ED8;
  font-size:12px;
  font-weight:700;
}
.rpb2-next-item p{
  margin:1px 0 0;
  color:#475569;
  font-size:14px;
  line-height:1.45;
}
.rpb2-status-actions{
  border-radius:10px;
  border-color:#DDE7F5;
  background:#fff;
  box-shadow:0 5px 14px rgba(15,23,42,.035);
}

@media (max-width: 860px){
  .rpb2-paypal-panel{max-width:100%}
  .rpb2-payment-badges{
    justify-content:flex-start;
    gap:5px;
  }
  .rpb2-payment-badges span{
    min-height:26px;
    padding:4px 7px;
    font-size:11.5px;
  }
  .rpb2-paypal-box-inline{
    padding:8px;
    border-radius:8px;
  }
  .rpb2-paypal-note{
    text-align:left;
    font-size:12px;
  }
  .rpb2-status-head{
    grid-template-columns:1fr;
    gap:10px;
    padding:16px;
  }
  .rpb2-status-head .rpb2-status-icon{
    width:40px;
    height:40px;
  }
  .rpb2-status-head h2{
    font-size:22px;
  }
  .rpb2-guided-steps{
    grid-template-columns:1fr;
    gap:7px;
  }
  .rpb2-guided-steps li{
    min-height:0;
    padding:9px;
  }
  .rpb2-session-list{
    grid-template-columns:1fr;
  }
  .rpb2-detail-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 380px){
  .rpb2-payment-badges span{
    white-space:normal;
  }
  .rpb2-status-badge-row{
    align-items:flex-start;
  }
  .rpb2-status-badge,
  .rpb2-status-mini-badge{
    max-width:100%;
    overflow-wrap:anywhere;
  }
}

/* 2.4.18 — Trust rail refinement for PayPal section */
.rpb2-trust-rail{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:0 0 12px;
}
.rpb2-trust-card{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:11px 12px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:10px;
  background:linear-gradient(180deg,#FFFFFF 0%, #FAFCFF 100%);
  box-shadow:0 6px 16px rgba(15,23,42,.035);
}
.rpb2-trust-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:10px;
  background:#EEF6FF;
  color:#1D4ED8;
}
.rpb2-trust-icon svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
}
.rpb2-trust-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.rpb2-trust-copy strong{
  font-size:13px;
  line-height:1.25;
  font-weight:680;
  color:#0F172A;
}
.rpb2-trust-copy small{
  margin-top:2px;
  font-size:11.5px;
  line-height:1.35;
  color:#64748B;
}
@media (max-width: 767px){
  .rpb2-trust-rail{
    grid-template-columns:1fr;
    gap:8px;
    margin-bottom:10px;
  }
  .rpb2-trust-card{
    padding:10px;
  }
}


/* 2.4.19 — Harmonised commercial status pages */
.rpb2-status-page{
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
}
.rpb2-status-head-v2{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  padding:20px;
}
.rpb2-status-head-v2::after{
  content:"";
  position:absolute;
  right:-70px;
  top:-80px;
  width:190px;
  height:190px;
  border-radius:50%;
  background:rgba(37,99,235,.055);
  pointer-events:none;
}
.rpb2-status-head-v2 .rpb2-status-content{
  position:relative;
  z-index:1;
}
.rpb2-status-head-v2 h2{
  margin:0 0 8px;
  font-size:clamp(22px,3.2vw,31px);
  line-height:1.15;
  font-weight:720;
  letter-spacing:-.02em;
}
.rpb2-status-head-v2 .rpb2-public-message{
  color:#475569;
  font-size:15px;
  line-height:1.65;
}
.rpb2-status-head-v2 .rpb2-status-icon{
  box-shadow:0 8px 20px rgba(15,23,42,.08);
}
.rpb2-status-trust-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:14px 0;
}
.rpb2-status-trust-card{
  display:flex;
  gap:10px;
  align-items:flex-start;
  min-width:0;
  padding:12px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:10px;
  background:#fff;
  box-shadow:0 6px 16px rgba(15,23,42,.035);
}
.rpb2-status-trust-icon,
.rpb2-status-section-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:34px;
  height:34px;
  border-radius:10px;
  background:#EEF6FF;
  color:#1D4ED8;
}
.rpb2-status-success .rpb2-status-trust-icon,
.rpb2-status-success .rpb2-status-section-icon{
  background:#ECFDF5;
  color:#15803D;
}
.rpb2-status-warning .rpb2-status-trust-icon,
.rpb2-status-warning .rpb2-status-section-icon{
  background:#FFF7ED;
  color:#C2410C;
}
.rpb2-status-trust-icon svg,
.rpb2-status-section-icon svg{
  display:block;
  width:18px;
  height:18px;
  fill:currentColor;
}
.rpb2-status-trust-card span:last-child{
  min-width:0;
  display:flex;
  flex-direction:column;
}
.rpb2-status-trust-card strong{
  color:#0F172A;
  font-size:13px;
  line-height:1.25;
  font-weight:680;
}
.rpb2-status-trust-card small{
  margin-top:3px;
  color:#64748B;
  font-size:12px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.rpb2-status-card-section{
  border:1px solid rgba(15,23,42,.08);
  border-radius:12px;
  background:#fff;
  box-shadow:0 6px 18px rgba(15,23,42,.04);
  padding:16px;
  margin:12px 0;
}
.rpb2-status-section-title{
  display:flex;
  gap:11px;
  align-items:flex-start;
  margin:0 0 14px;
}
.rpb2-status-section-title h3{
  margin:0;
  font-size:17px;
  line-height:1.25;
  font-weight:700;
  color:#0F172A;
}
.rpb2-status-section-title p{
  margin:4px 0 0;
  color:#64748B;
  font-size:13px;
  line-height:1.45;
}
.rpb2-guided-steps{
  position:relative;
  display:grid;
  gap:0;
  margin:4px 0 0;
  padding:0;
  list-style:none;
}
.rpb2-guided-steps li{
  position:relative;
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  gap:12px;
  padding:0 0 16px;
}
.rpb2-guided-steps li::before{
  content:"";
  position:absolute;
  left:16px;
  top:35px;
  bottom:2px;
  width:1px;
  background:#E2E8F0;
}
.rpb2-guided-steps li:last-child{
  padding-bottom:0;
}
.rpb2-guided-steps li:last-child::before{
  display:none;
}
.rpb2-guided-steps .rpb2-step-marker{
  width:34px;
  height:34px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:760;
  background:#F8FAFC;
  color:#64748B;
  border:1px solid #E2E8F0;
}
.rpb2-guided-steps .rpb2-step-copy{
  min-width:0;
  padding-top:1px;
}
.rpb2-guided-steps em{
  display:inline-flex;
  margin-bottom:4px;
  font-style:normal;
  color:#94A3B8;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight:650;
}
.rpb2-guided-steps strong{
  display:block;
  font-size:14px;
  line-height:1.35;
  font-weight:650;
  color:#0F172A;
}
.rpb2-guided-steps .rpb2-timeline-done .rpb2-step-marker{
  background:#ECFDF5;
  border-color:#BBF7D0;
  color:#15803D;
}
.rpb2-guided-steps .rpb2-timeline-active .rpb2-step-marker{
  background:#EEF6FF;
  border-color:#BFDBFE;
  color:#1D4ED8;
  box-shadow:0 0 0 4px rgba(37,99,235,.07);
}
.rpb2-session-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:10px;
}
.rpb2-session-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border:1px solid #E2E8F0;
  border-radius:10px;
  background:#F8FAFC;
}
.rpb2-session-index{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:3px 8px;
  border-radius:8px;
  background:#fff;
  border:1px solid #E2E8F0;
  color:#475569;
  font-size:12px;
  font-weight:650;
}
.rpb2-session-date{
  min-width:0;
  color:#0F172A;
  font-size:13.5px;
  line-height:1.45;
  font-weight:560;
}
.rpb2-next-list{
  display:grid;
  gap:9px;
}
.rpb2-next-item{
  display:grid;
  grid-template-columns:28px minmax(0,1fr);
  gap:10px;
  align-items:start;
  padding:11px 12px;
  border-radius:10px;
  background:#F8FAFC;
  border:1px solid #E2E8F0;
}
.rpb2-next-item span{
  width:28px;
  height:28px;
  border-radius:9px;
  background:#fff;
  border:1px solid #E2E8F0;
  color:#1D4ED8;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:720;
}
.rpb2-next-item p{
  margin:0;
  color:#475569;
  line-height:1.55;
  font-size:13.5px;
  font-weight:400;
}
.rpb2-reference-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px;
  border-radius:10px;
  border:1px dashed #CBD5E1;
  background:#F8FAFC;
}
.rpb2-reference-card code{
  font-size:13px;
  color:#0F172A;
  white-space:normal;
  overflow-wrap:anywhere;
}
.rpb2-reference-card .rpb2-copy-reference{
  flex:0 0 auto;
  min-height:34px;
  border-radius:9px;
  border:1px solid #CBD5E1;
  background:#fff;
  color:#0F172A;
  padding:7px 10px;
  font-weight:650;
  cursor:pointer;
}
.rpb2-support-copy{
  color:#475569;
  line-height:1.6;
  font-size:14px;
}
.rpb2-status-page .rpb2-status-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 0;
  justify-content:center;
}
.rpb2-status-page .rpb2-public-action{
  min-height:42px;
  border-radius:10px;
  padding:10px 14px;
  font-weight:650;
}
.rpb2-status-page .rpb2-public-details{
  padding:14px 16px;
}
.rpb2-status-page .rpb2-public-details summary{
  font-weight:650;
  color:#0F172A;
  cursor:pointer;
}
@media (max-width: 782px){
  .rpb2-status-head-v2{
    grid-template-columns:1fr;
    padding:16px;
  }
  .rpb2-status-head-v2 .rpb2-status-icon{
    width:42px;
    height:42px;
  }
  .rpb2-status-trust-grid{
    grid-template-columns:1fr;
    gap:8px;
    margin:10px 0;
  }
  .rpb2-status-card-section{
    padding:13px;
    border-radius:10px;
  }
  .rpb2-status-section-title{
    gap:9px;
    margin-bottom:12px;
  }
  .rpb2-status-section-icon,
  .rpb2-status-trust-icon{
    width:32px;
    height:32px;
    border-radius:9px;
  }
  .rpb2-session-list{
    grid-template-columns:1fr;
  }
  .rpb2-reference-card{
    align-items:stretch;
    flex-direction:column;
  }
  .rpb2-reference-card .rpb2-copy-reference,
  .rpb2-status-page .rpb2-public-action{
    width:100%;
  }
}


/* 2.4.20 — Final public UI polish: brand icons, stable status steps, PayPal trust badges */
.rpb2-public{
  --rpb2-brand-pink:#ec5db7;
  --rpb2-brand-pink-soft:#fdf2f8;
  --rpb2-brand-pink-border:#fbcfe8;
}

/* Harmonise all public trust/status icons with the requested brand color. */
.rpb2-trust-icon,
.rpb2-status-trust-icon,
.rpb2-status-section-icon{
  background:var(--rpb2-brand-pink-soft)!important;
  color:var(--rpb2-brand-pink)!important;
  border:1px solid var(--rpb2-brand-pink-border)!important;
}
.rpb2-trust-icon svg,
.rpb2-status-trust-icon svg,
.rpb2-status-section-icon svg{
  fill:currentColor!important;
}

/* Keep the PayPal trust cards directly above the official button, clean and compact. */
.rpb2-paypal-panel{
  max-width:620px!important;
  width:100%;
  margin:0 auto!important;
  display:grid!important;
  gap:12px!important;
}
.rpb2-payment-section .rpb2-trust-rail{
  order:1;
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:9px!important;
  margin:0 0 2px!important;
}
.rpb2-payment-section .rpb2-paypal-box-inline{
  order:2;
  width:100%!important;
  max-width:100%!important;
  box-sizing:border-box!important;
  overflow:hidden!important;
  padding:12px!important;
}
.rpb2-payment-section .rpb2-paypal-note{
  order:3;
  max-width:520px;
  margin:0 auto!important;
}
.rpb2-payment-section .rpb2-trust-card{
  min-width:0!important;
  align-items:flex-start!important;
  padding:10px 11px!important;
  border-radius:10px!important;
}
.rpb2-payment-section .rpb2-trust-copy,
.rpb2-payment-section .rpb2-trust-copy strong,
.rpb2-payment-section .rpb2-trust-copy small{
  min-width:0!important;
  overflow-wrap:anywhere!important;
}
.rpb2-payment-section .rpb2-trust-copy strong{
  font-weight:680!important;
}
.rpb2-payment-section .rpb2-trust-copy small{
  font-weight:400!important;
}

/* PayPal iframe/container: prevent overflow on small screens. */
.rpb2-paypal-box,
.rpb2-paypal-box-inline,
.rpb2-paypal-sdk-target,
.rpb2-paypal-sdk-target > div,
.rpb2-paypal-box iframe,
.rpb2-paypal-box > div{
  max-width:100%!important;
  min-width:0!important;
  box-sizing:border-box!important;
}
.rpb2-paypal-title{
  display:none!important;
}
.rpb2-paypal-help{
  display:none!important;
}

/* Status pages: make guided steps stable, vertical, and impossible to overlap. */
.rpb2-status-page .rpb2-guided-steps{
  display:flex!important;
  flex-direction:column!important;
  gap:0!important;
  width:100%!important;
  max-width:100%!important;
  margin:6px 0 0!important;
  padding:0!important;
  list-style:none!important;
  overflow:visible!important;
}
.rpb2-status-page .rpb2-guided-steps li{
  position:relative!important;
  display:grid!important;
  grid-template-columns:36px minmax(0,1fr)!important;
  column-gap:12px!important;
  align-items:start!important;
  width:100%!important;
  min-width:0!important;
  padding:0 0 18px!important;
  margin:0!important;
  overflow:visible!important;
}
.rpb2-status-page .rpb2-guided-steps li:last-child{
  padding-bottom:0!important;
}
.rpb2-status-page .rpb2-guided-steps li::before{
  content:""!important;
  position:absolute!important;
  left:17px!important;
  top:38px!important;
  bottom:4px!important;
  width:1px!important;
  height:auto!important;
  background:#e2e8f0!important;
  transform:none!important;
}
.rpb2-status-page .rpb2-guided-steps li:last-child::before{
  display:none!important;
}
.rpb2-status-page .rpb2-guided-steps .rpb2-step-marker{
  position:relative!important;
  z-index:1!important;
  grid-column:1!important;
  width:36px!important;
  height:36px!important;
  min-width:36px!important;
  min-height:36px!important;
  border-radius:10px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  line-height:1!important;
  font-size:13px!important;
  font-weight:760!important;
  box-sizing:border-box!important;
}
.rpb2-status-page .rpb2-guided-steps .rpb2-step-copy{
  grid-column:2!important;
  display:block!important;
  min-width:0!important;
  max-width:100%!important;
  padding-top:1px!important;
  overflow:visible!important;
}
.rpb2-status-page .rpb2-guided-steps .rpb2-step-copy em{
  display:block!important;
  margin:0 0 4px!important;
  white-space:normal!important;
  word-break:normal!important;
  overflow-wrap:anywhere!important;
}
.rpb2-status-page .rpb2-guided-steps .rpb2-step-copy strong{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  white-space:normal!important;
  overflow-wrap:anywhere!important;
  word-break:normal!important;
  line-height:1.38!important;
  font-weight:650!important;
}
.rpb2-status-page .rpb2-guided-steps .rpb2-timeline-done .rpb2-step-marker{
  background:var(--rpb2-brand-pink-soft)!important;
  border-color:var(--rpb2-brand-pink-border)!important;
  color:var(--rpb2-brand-pink)!important;
}
.rpb2-status-page .rpb2-guided-steps .rpb2-timeline-active .rpb2-step-marker{
  background:#fff!important;
  border-color:var(--rpb2-brand-pink)!important;
  color:var(--rpb2-brand-pink)!important;
  box-shadow:0 0 0 4px rgba(236,93,183,.10)!important;
}

/* Remove common theme interference/deformations on public status cards. */
.rpb2-status-page *,
.rpb2-payment-section *{
  box-sizing:border-box;
}
.rpb2-status-card-section,
.rpb2-status-trust-card,
.rpb2-reference-card,
.rpb2-session-item,
.rpb2-next-item{
  max-width:100%!important;
}
.rpb2-status-section-title{
  min-width:0!important;
}
.rpb2-status-section-title > div{
  min-width:0!important;
}
.rpb2-status-section-title h3,
.rpb2-status-section-title p,
.rpb2-status-trust-card strong,
.rpb2-status-trust-card small,
.rpb2-session-date,
.rpb2-next-item p,
.rpb2-reference-card code{
  overflow-wrap:anywhere!important;
  word-break:normal!important;
}

/* Keep status typography elegant, not overly bold. */
.rpb2-status-page h2{
  font-weight:720!important;
}
.rpb2-status-page h3{
  font-weight:680!important;
}
.rpb2-status-page p,
.rpb2-status-page small,
.rpb2-status-page .rpb2-public-message{
  font-weight:400!important;
}

/* Mobile final polish. */
@media (max-width: 782px){
  .rpb2-payment-section .rpb2-trust-rail{
    grid-template-columns:1fr!important;
    gap:8px!important;
  }
  .rpb2-payment-section .rpb2-trust-card{
    padding:10px!important;
  }
  .rpb2-payment-section .rpb2-paypal-box-inline{
    padding:10px!important;
  }
  .rpb2-status-page .rpb2-guided-steps li{
    grid-template-columns:34px minmax(0,1fr)!important;
    column-gap:10px!important;
    padding-bottom:16px!important;
  }
  .rpb2-status-page .rpb2-guided-steps li::before{
    left:16px!important;
    top:36px!important;
  }
  .rpb2-status-page .rpb2-guided-steps .rpb2-step-marker{
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
    min-height:34px!important;
  }
  .rpb2-status-page .rpb2-guided-steps .rpb2-step-copy strong{
    font-size:13.5px!important;
  }
  .rpb2-status-head-v2,
  .rpb2-status-card-section{
    overflow:hidden!important;
  }
}
