/* ================================================================
   Route B — Skip Itemisation Flow  (route-b.css)
   ================================================================ */

#rb-progress-bar-wrap {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  z-index: 1100; height: 3px; background: rgba(245,201,122,0.15); pointer-events: none;
}
#rb-progress-bar-wrap.rb-vis { display: block; }
#rb-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9922a, #f5c97a);
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Fork panel ───────────────────────────────────────────────── */
#rb-fork-panel {
  border-left: 3px solid #c9922a; background: #faf7f0;
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  margin: 1.25rem 24px 1.25rem; /* compensate for itemsContainer -24px margin */
}
#rb-fork-panel h4 {
  font-family: "Fraunces","Georgia",serif; font-size: 1.2rem;
  font-weight: 500; color: #1a120a; margin: 0 0 0.4rem;
}
.rb-fork-sub { font-size: 0.875rem; color: #7a6a58; margin: 0 0 1rem; line-height: 1.55; }
.rb-fork-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #c9922a; color: #fff; border: none; border-radius: 6px;
  padding: 0.6rem 1.25rem; font-family: "DM Sans",sans-serif; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; transition: background 0.18s; min-height: 44px;
}
.rb-fork-btn:hover { background: #b07820; }
.rb-fork-link {
  display: block; margin-top: 0.75rem; font-size: 0.8rem; color: #9a8060;
  cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
  background: none; border: none; padding: 0; font-family: "DM Sans",sans-serif;
}
.rb-fork-link:hover { color: #c9922a; }

/* ── Route B overlay ──────────────────────────────────────────── */
#rb-overlay {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: #faf6ee; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
#rb-overlay.rb-vis { display: block; }
.rb-screen { display: none; min-height: 100vh; padding-bottom: 90px; }
.rb-screen.rb-active { display: block; }

/* ── Screen header ────────────────────────────────────────────── */
.rb-header { text-align: center; padding: 3.5rem 1.5rem 1.5rem; max-width: 580px; margin: 0 auto; }
.rb-header h2 {
  font-family: "Fraunces","Georgia",serif; font-size: clamp(1.35rem,4vw,1.85rem);
  font-weight: 500; color: #1a120a; margin: 0 0 0.5rem;
}
.rb-header p { font-size: 0.9rem; color: #9a8060; margin: 0; line-height: 1.55; }

/* ── Card grid ────────────────────────────────────────────────── */
.rb-card-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem; max-width: 1060px; margin: 1.5rem auto 0; padding: 0 1.25rem;
}
@media (max-width: 880px) { .rb-card-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .rb-card-grid { grid-template-columns: 1fr; } }

/* ── Card ─────────────────────────────────────────────────────── */
.rb-card {
  background: #fff; border-radius: 10px; border: 1.5px solid #e8e0d4;
  overflow: hidden; cursor: pointer; position: relative;
  transition: border-color 0.18s, box-shadow 0.18s;
  user-select: none; -webkit-tap-highlight-color: transparent;
}
.rb-card:hover { border-color: #c9922a; box-shadow: 0 4px 18px rgba(201,146,42,0.1); }
.rb-card.rb-selected {
  border-color: #c9922a;
  box-shadow: 0 0 0 2px rgba(201,146,42,0.22), 0 4px 18px rgba(201,146,42,0.12);
}
.rb-card-img { position: relative; width: 100%; padding-top: 62%; overflow: hidden; background: #1a120a; }
.rb-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rb-card.rb-selected .rb-card-img::after {
  content: ''; position: absolute; inset: 0; background: rgba(201,146,42,0.16);
}
.rb-check-badge {
  display: none; position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; background: #c9922a; border-radius: 50%;
  align-items: center; justify-content: center; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.28);
}
.rb-check-badge svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.8; fill: none; }
.rb-card.rb-selected .rb-check-badge { display: flex; }
.rb-card-body { padding: 0.85rem 1rem 0.9rem; }
.rb-card-body h4 {
  font-family: "Fraunces","Georgia",serif; font-size: 0.975rem;
  font-weight: 500; color: #1a120a; margin: 0 0 0.3rem;
}
.rb-card-body p { font-size: 0.78rem; color: #9a8060; margin: 0; line-height: 1.45; }
.rb-check-prices-link {
  display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.55rem;
  font-size: 0.74rem; color: #c9922a; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
  background: none; border: none; padding: 0; font-family: "DM Sans",sans-serif;
}
.rb-check-prices-link:hover { color: #b07820; }

/* ── Bottom bar ───────────────────────────────────────────────── */
.rb-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1060;
  background: #faf6ee; border-top: 1px solid #e8e0d4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.25rem; gap: 0.75rem;
}
.rb-bottom-bar .rb-hint { font-size: 0.74rem; color: #b09a7a; text-align: center; flex: 1; line-height: 1.4; }
.rb-btn {
  display: inline-flex; align-items: center; gap: 0.35rem; border-radius: 6px;
  padding: 0.6rem 1.15rem; font-family: "DM Sans",sans-serif; font-size: 0.875rem;
  font-weight: 600; cursor: pointer; transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap; min-height: 44px; border: 1.5px solid transparent;
}
.rb-btn-primary { background: #c9922a; color: #fff; border-color: #c9922a; }
.rb-btn-primary:hover { background: #b07820; border-color: #b07820; }
.rb-btn-primary:disabled { background: #d4b98a; border-color: #d4b98a; cursor: default; }
.rb-btn-ghost { background: transparent; color: #7a6a58; border-color: #d4c8b0; }
.rb-btn-ghost:hover { border-color: #c9922a; color: #c9922a; }
.rb-btn-outline { background: #fff; color: #1a120a; border-color: #c8bfb0; }
.rb-btn-outline:hover { border-color: #c9922a; color: #c9922a; }

/* ── Skip / Continue bar (categories screen) ──────────────────── */
.rb-skip-bar {
  display: flex; align-items: center; gap: 0.75rem; flex: 1; justify-content: flex-end;
}
.rb-skip-bar-msg {
  font-size: 0.82rem; color: #7a6a58;
  display: flex; align-items: center; gap: 0.35rem; line-height: 1.3;
}
.rb-cont-bar {
  display: none; align-items: center; gap: 0.75rem; flex: 1; justify-content: flex-end;
}
.rb-cont-bar .rb-hint { font-size: 0.74rem; color: #b09a7a; }

/* ── Notes screen ─────────────────────────────────────────────── */
.rb-notes-wrap { max-width: 640px; margin: 1.5rem auto 0; padding: 0 1.25rem; }
.rb-textarea {
  width: 100%; min-height: 130px; border: 1.5px solid #e8e0d4; border-radius: 8px;
  padding: 0.9rem 1rem; font-family: "DM Sans",sans-serif; font-size: 0.9rem;
  color: #1a120a; background: #fff; resize: vertical; line-height: 1.55;
  transition: border-color 0.18s; box-sizing: border-box;
}
.rb-textarea:focus { outline: none; border-color: #c9922a; }
.rb-photo-section { margin-top: 1.5rem; }
.rb-photo-section h5 {
  font-family: "Fraunces","Georgia",serif; font-size: 0.95rem;
  font-weight: 500; color: #1a120a; margin: 0 0 0.25rem;
}
.rb-photo-hint { font-size: 0.79rem; color: #9a8060; margin: 0 0 0.85rem; }
.rb-upload-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #faf7f0; border: 1.5px solid #d4c8b0; border-radius: 6px;
  padding: 0.5rem 1rem; font-family: "DM Sans",sans-serif;
  font-size: 0.85rem; color: #7a6a58; cursor: pointer; transition: border-color 0.18s; min-height: 44px;
}
.rb-upload-btn:hover { border-color: #c9922a; color: #c9922a; }
.rb-photo-thumbs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.85rem; }
.rb-thumb {
  position: relative; width: 72px; height: 72px;
  border-radius: 6px; overflow: hidden; border: 1.5px solid #e8e0d4;
}
.rb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rb-thumb-remove {
  position: absolute; top: 2px; right: 2px; width: 18px; height: 18px;
  background: rgba(0,0,0,0.55); border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 10px; color: #fff;
}
.rb-callout {
  display: flex; gap: 0.75rem; background: #faf7f0; border: 1px solid #e8d8b8;
  border-radius: 8px; padding: 0.85rem 1rem; margin-top: 1.25rem;
  font-size: 0.81rem; color: #7a6a58; line-height: 1.5;
}
.rb-callout svg { flex-shrink: 0; margin-top: 1px; }

/* ── Collection & Delivery ────────────────────────────────────── */
.rb-coll-wrap {
  max-width: 700px; margin: 1.5rem auto 0; padding: 0 1.25rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
@media (max-width: 580px) { .rb-coll-wrap { grid-template-columns: 1fr; } }
.rb-slot-card {
  background: #fff; border: 1.5px solid #e8e0d4; border-radius: 10px; padding: 1.25rem 1.2rem 1rem;
}
.rb-slot-card-label {
  font-size: 0.78rem; font-weight: 600; color: #4a3d2e; margin-bottom: 0.85rem;
}
.rb-slot-row {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem;
}
.rb-slot-icon { color: #4a3d2e; flex-shrink: 0; }
.rb-slot-detail { font-size: 0.92rem; color: #1a120a; font-weight: 600; margin-bottom: 0.15rem; }
.rb-slot-sub { font-size: 0.77rem; color: #9a8060; }
.rb-slot-change {
  display: inline-flex; align-items: center; gap: 0.3rem;
  border: 1.5px solid #d4c8b0; border-radius: 6px; background: transparent; color: #7a6a58;
  padding: 0.38rem 0.8rem; font-size: 0.78rem; cursor: pointer; font-family: "DM Sans",sans-serif;
  transition: border-color 0.18s; min-height: 36px;
}
.rb-slot-change:hover { border-color: #c9922a; color: #c9922a; }
.rb-slot-picker {
  display: none; position: fixed; inset: 0; z-index: 1200; align-items: flex-end; justify-content: center;
}
@media (min-width: 540px) { .rb-slot-picker { align-items: center; } }
.rb-slot-picker.rb-vis { display: flex; }
.rb-slot-scrim { position: absolute; inset: 0; background: rgba(20,12,2,0.45); }
.rb-slot-inner {
  position: relative; background: #faf6ee; border-radius: 16px 16px 0 0;
  padding: 1.75rem 1.5rem 2rem; width: 100%; max-height: 90vh; overflow-y: auto; z-index: 1;
}
@media (min-width: 540px) { .rb-slot-inner { border-radius: 12px; width: min(460px,calc(100vw - 2rem)); } }
.rb-slot-inner h4 {
  font-family: "Fraunces","Georgia",serif; font-size: 1.05rem;
  font-weight: 500; margin: 0 0 1.25rem; color: #1a120a;
}
.rb-slot-field { margin-bottom: 1rem; }
.rb-slot-field label {
  display: block; font-size: 0.76rem; color: #7a6a58; margin-bottom: 0.3rem;
  letter-spacing: 0.05em; text-transform: uppercase; font-family: "DM Sans",sans-serif;
}
.rb-slot-field input, .rb-slot-field select {
  width: 100%; padding: 0.62rem 0.9rem; border: 1.5px solid #e8e0d4; border-radius: 6px;
  font-size: 0.9rem; font-family: "DM Sans",sans-serif; color: #1a120a; background: #fff; box-sizing: border-box;
}
.rb-slot-field input:focus, .rb-slot-field select:focus { outline: none; border-color: #c9922a; }
.rb-slot-picker-btns { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 1.25rem; }

/* ── Contact fields ───────────────────────────────────────────── */
.rb-contact-wrap { max-width: 640px; margin: 1.5rem auto 0; padding: 0 1.25rem; }
.rb-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 480px) { .rb-field-row { grid-template-columns: 1fr; } }
.rb-field { margin-bottom: 1rem; }
.rb-field label {
  display: block; font-size: 0.76rem; color: #7a6a58; margin-bottom: 0.3rem;
  letter-spacing: 0.05em; text-transform: uppercase; font-family: "DM Sans",sans-serif;
}
.rb-input {
  width: 100%; padding: 0.65rem 0.9rem; border: 1.5px solid #e8e0d4; border-radius: 6px;
  font-size: 0.9rem; font-family: "DM Sans",sans-serif; color: #1a120a; background: #fff;
  transition: border-color 0.18s; box-sizing: border-box;
}
.rb-input:focus { outline: none; border-color: #c9922a; }
.rb-field-err { font-size: 0.77rem; color: #c0392b; margin-top: 0.25rem; display: none; }
.rb-field-err.rb-vis { display: block; }

/* ── Review screen ────────────────────────────────────────────── */
.rb-review-wrap { max-width: 620px; margin: 1.5rem auto 0; padding: 0 1.25rem; }
.rb-rev-section {
  position: relative; padding: 1.1rem 0;
  border-bottom: 1px solid #e8e0d4;
}
.rb-rev-section--address { border-bottom: none; padding-bottom: 0.25rem; }
.rb-rev-sec-label {
  font-size: 0.92rem; font-weight: 600; color: #1a120a; margin-bottom: 0.55rem;
}
.rb-rev-svc-line { margin-bottom: 0.5rem; }
.rb-rev-svc-line:last-child { margin-bottom: 0; }
.rb-rev-svc-name { font-size: 0.875rem; color: #4a3d2e; margin-bottom: 0.15rem; }
.rb-review-svc-list { list-style: none; padding: 0; margin: 0; }
.rb-review-svc-list li { font-size: 0.82rem; color: #7a6a58; padding: 0.05rem 0; }
.rb-review-svc-list li::before { content: "• "; color: #c9922a; }
.rb-rev-slot-text { font-size: 0.9rem; color: #1a120a; font-weight: 500; }
.rb-rev-slot-sub { font-size: 0.8rem; color: #9a8060; margin-top: 0.15rem; }
.rb-rev-divider { height: 1px; background: #e8e0d4; margin: 0.25rem 0; }
.rb-rev-expand-btn {
  display: flex; align-items: center; gap: 0.45rem;
  background: none; border: none; cursor: pointer; padding: 0.85rem 0;
  font-size: 0.875rem; color: #1a120a; font-family: "DM Sans",sans-serif;
  text-decoration: underline; text-underline-offset: 2px;
}
.rb-rev-expand-btn:hover { color: #c9922a; }
.rb-edit-btn {
  position: absolute; top: 1rem; right: 0; background: transparent;
  border: 1.5px solid #d4c8b0; border-radius: 20px; padding: 0.22rem 0.85rem;
  font-size: 0.76rem; color: #9a8060; cursor: pointer; font-family: "DM Sans",sans-serif;
  transition: border-color 0.15s, color 0.15s;
}
.rb-edit-btn:hover { border-color: #c9922a; color: #c9922a; }

/* ── Checkout screen ──────────────────────────────────────────── */
.rb-checkout-wrap {
  max-width: 860px; margin: 2rem auto 0; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem;
}
@media (max-width: 680px) {
  .rb-checkout-wrap { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
}
.rb-checkout-left { padding-top: 0.25rem; }
.rb-checkout-desc h3 {
  font-family: "Fraunces","Georgia",serif; font-size: 1.1rem; font-weight: 400;
  color: #1a120a; margin: 0 0 0.5rem;
}
.rb-checkout-desc p { font-size: 0.85rem; color: #7a6a58; line-height: 1.6; margin: 0; }
.rb-checkout-right { display: flex; flex-direction: column; gap: 0; }
.rb-mkt-row {
  display: flex; align-items: flex-start; gap: 0.65rem;
  margin: 0.25rem 0 1.25rem; padding: 0;
}
.rb-mkt-row input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: #c9922a;
}
.rb-mkt-row label { font-size: 0.82rem; color: #7a6a58; line-height: 1.45; cursor: pointer; }
.rb-billing-callout {
  display: flex; gap: 0.6rem; background: #faf7f0; border: 1px solid #e8d8b8;
  border-radius: 8px; padding: 0.85rem 1rem; font-size: 0.82rem; color: #7a6a58;
  line-height: 1.5; margin-bottom: 1.25rem;
}
.rb-billing-callout svg { flex-shrink: 0; margin-top: 1px; color: #c9922a; }
.rb-card-area {
  border: 1.5px solid #e8e0d4; border-radius: 10px; padding: 1.1rem 1.25rem;
}
.rb-card-logos-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.rb-card-brand-img { height: 26px; width: auto; border-radius: 4px; }
.rb-stripe-mount {
  background: #fff; border: 1.5px solid #d8cfc4; border-radius: 8px;
  padding: 0.85rem 0.95rem; margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}
.rb-stripe-mount:focus-within { border-color: #c9922a; }
.rb-card-error {
  font-size: 0.8rem; color: #c0392b; min-height: 1.2em; margin-bottom: 0.4rem;
}
.rb-card-verified {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: #2e7d32; font-weight: 500; margin-bottom: 0.5rem;
}
.rb-card-verified svg { color: #2e7d32; }
.rb-card-note { font-size: 0.75rem; color: #b09a7a; margin-top: 0.6rem; }

/* ── Shared: old contact wrap (keep for safety) ───────────────── */
.rb-contact-wrap { max-width: 640px; margin: 1.5rem auto 0; padding: 0 1.25rem; }

/* ── Billing info panel ───────────────────────────────────────── */
#rb-billing-scrim { display: none; position: fixed; inset: 0; background: rgba(20,12,2,0.42); z-index: 1300; }
#rb-billing-scrim.rb-vis { display: block; }
#rb-billing-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(480px,100vw);
  background: #fff; z-index: 1310; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1); overflow-y: auto;
  padding: 2.5rem 2rem 3rem;
}
#rb-billing-panel.rb-vis { transform: translateX(0); }
#rb-billing-panel h4 {
  font-family: "Fraunces","Georgia",serif; font-size: 1.25rem; font-weight: 400;
  color: #1a120a; margin: 0 0 2rem; padding-right: 2rem;
}
.rb-billing-steps { display: flex; flex-direction: column; gap: 2rem; }
.rb-billing-step { display: flex; gap: 1.1rem; align-items: flex-start; }
.rb-billing-step-icon {
  flex-shrink: 0; width: 52px; height: 52px; color: #4a3d2e;
  border: 1.5px solid #e8e0d4; border-radius: 8px; padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.rb-billing-step-icon svg { width: 100%; height: 100%; }
.rb-billing-step-text strong {
  display: block; font-size: 0.92rem; font-weight: 600; color: #1a120a;
  margin-bottom: 0.35rem; line-height: 1.4;
}
.rb-billing-step-text p {
  font-size: 0.84rem; color: #7a6a58; line-height: 1.6; margin: 0;
}
.rb-billing-link {
  text-decoration: underline; text-underline-offset: 2px; cursor: pointer;
  color: inherit;
}
.rb-billing-link:hover { color: #c9922a; }

/* ── Check Prices panel ───────────────────────────────────────── */
#rb-prices-scrim { display: none; position: fixed; inset: 0; background: rgba(20,12,2,0.42); z-index: 1300; }
#rb-prices-scrim.rb-vis { display: block; }
#rb-prices-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px,100vw);
  background: #faf6ee; z-index: 1310; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1); overflow-y: auto; padding: 2rem 1.5rem 3rem;
}
#rb-prices-panel.rb-vis { transform: translateX(0); }
@media (max-width: 520px) {
  #rb-prices-panel {
    top: auto; right: 0; left: 0; bottom: 0; width: 100%;
    border-radius: 16px 16px 0 0; transform: translateY(100%); max-height: 80vh;
  }
  #rb-prices-panel.rb-vis { transform: translateY(0); }
}
#rb-prices-panel h4 {
  font-family: "Fraunces","Georgia",serif; font-size: 1.05rem; font-weight: 500;
  color: #1a120a; margin: 0 0 1.25rem; padding-right: 2.5rem;
}
.rb-prices-close {
  position: absolute; top: 1.1rem; right: 1.1rem; background: #e8e0d4; border: none;
  border-radius: 50%; width: 30px; height: 30px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 15px; color: #7a6a58;
}
.rb-prices-close:hover { background: #d4c8b0; }
.rb-price-table { width: 100%; border-collapse: collapse; }
.rb-price-table td { padding: 0.55rem 0.2rem; font-size: 0.83rem; color: #4a3d2e; border-bottom: 1px solid #e8e0d4; }
.rb-price-table td:last-child { text-align: right; color: #c9922a; font-weight: 600; white-space: nowrap; }
.rb-price-table tr:last-child td { border-bottom: none; }
.rb-prices-cat-head {
  font-family: "Fraunces","Georgia",serif; font-size: 0.85rem; font-weight: 500;
  color: #9a8060; margin: 1.25rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.07em;
}

/* ── Confirmation screen ──────────────────────────────────────── */
.rb-confirm-wrap { text-align: center; padding: 2rem 1.5rem 3rem; }
.rb-confirm-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #f0e8d4;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 28px;
}
.rb-confirm-ref {
  display: inline-block; background: #1a120a; color: #f5c97a;
  font-family: "Fraunces","Georgia",serif; font-size: 1.1rem;
  letter-spacing: 0.08em; border-radius: 6px; padding: 0.45rem 1rem; margin: 0.75rem auto 1.5rem;
}
.rb-next-steps { max-width: 480px; margin: 0 auto; text-align: left; }
.rb-next-steps p { font-size: 0.85rem; color: #7a6a58; margin-bottom: 0.75rem; line-height: 1.55; }
.rb-next-steps ol { padding-left: 1.3rem; color: #7a6a58; font-size: 0.85rem; line-height: 1.7; margin: 0 0 1.5rem; }
.rb-next-steps li { margin-bottom: 0.3rem; }

/* ── Service sub-screen labels ────────────────────────────────── */
.rb-svc-category-label {
  font-family: "Fraunces","Georgia",serif; font-size: 1rem; font-weight: 500;
  color: #c9922a; margin: 0 0 0.3rem; text-align: center;
}
.rb-svc-step-indicator { font-size: 0.75rem; color: #b09a7a; text-align: center; margin-bottom: 0; }
