/*
 * Hon Car Service — Booking page scoped styles.
 * ALL rules are scoped under #hcs_booking to avoid collisions with the theme.
 * CSS custom properties are declared inside #hcs_booking so they don't pollute
 * the global scope but cascade to all children naturally.
 *
 * Design system mirrors the VRM Select Works mockups (booking.html /
 * payment.html / confirmation.html) — Inter font, blue-900 ink, etc.
 */

/* ------------------------------------------------------------------ */
/* Google Font (Inter) — safe to re-request; browser will cache        */
/* ------------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ------------------------------------------------------------------ */
/* Design tokens (scoped so they only affect #hcs_booking descendants) */
/* ------------------------------------------------------------------ */
#hcs_booking {
  --hcs-blue-900: #0A2540;
  --hcs-blue-800: #0F3A6B;
  --hcs-blue-700: #1E5AA8;
  --hcs-blue-600: #2563C9;
  --hcs-blue-500: #3B7BE0;
  --hcs-blue-100: #DCE8F5;
  --hcs-blue-50:  #EEF4FB;

  --hcs-ink:   #0A2540;
  --hcs-ink-2: #475569;
  --hcs-ink-3: #748094;
  --hcs-line:  #E3E8EF;
  --hcs-bg:    #FFFFFF;
  --hcs-bg-2:  #F7F9FC;
  --hcs-bg-3:  #F0F4F9;

  --hcs-green:    #0F8B4F;
  --hcs-green-50: #E6F4EE;
  --hcs-amber:    #B45309;
  --hcs-red:      #C53030;

  --hcs-shadow-sm: 0 1px 2px rgba(10,37,64,.06);
  --hcs-shadow-md: 0 4px 14px rgba(10,37,64,.08);
  --hcs-shadow-lg: 0 18px 40px rgba(10,37,64,.14);
  --hcs-shadow-xl: 0 30px 60px -15px rgba(10,37,64,.25);

  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--hcs-ink);
  background: var(--hcs-bg-2);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 100px;
}

#hcs_booking *,
#hcs_booking *::before,
#hcs_booking *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------------------------ */
/* Vehicle pill + progress bar wrapper                                  */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-topbar {
  background: #fff;
  border-bottom: 1px solid var(--hcs-line);
  padding: 16px 0;
}

#hcs_booking .hcs-bk-topbar-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Vehicle pill — "veh-strip" design, matching /select-work/ .cm-veh-pill. */
#hcs_booking .hcs-bk-veh-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--hcs-blue-50) 0%, #fff 70%);
  border: 1px solid var(--hcs-blue-100);
  border-radius: 13px;
  padding: 14px 18px;
  box-shadow: 0 1px 3px rgba(10,37,64,.04);
}

#hcs_booking .hcs-bk-veh-ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  background: #fff;
  color: var(--hcs-blue-700);
  display: grid;
  place-items: center;
  border: 1px solid var(--hcs-blue-100);
}

#hcs_booking .hcs-bk-veh-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

#hcs_booking .hcs-bk-veh-info strong {
  font-weight: 700;
  font-size: 16px;
  color: var(--hcs-blue-900);
  letter-spacing: -.01em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#hcs_booking .hcs-bk-veh-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 12.5px;
  color: var(--hcs-ink-3);
  line-height: 1.3;
}

#hcs_booking .hcs-bk-veh-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--hcs-line);
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 600;
  color: var(--hcs-blue-900);
  font-size: 11.5px;
  white-space: nowrap;
}

#hcs_booking .hcs-bk-veh-meta .chip.plate {
  letter-spacing: .05em;
  background: #FFD700;
  color: #0A2540;
  border-color: #E5C100;
}

#hcs_booking .hcs-bk-veh-meta .chip svg {
  flex-shrink: 0;
  color: var(--hcs-ink-3);
}

/* Step progress */
#hcs_booking .hcs-bk-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
}

#hcs_booking .hcs-bk-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hcs-ink-3);
}

#hcs_booking .hcs-bk-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--hcs-bg-3);
  color: var(--hcs-ink-3);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

#hcs_booking .hcs-bk-step.done .hcs-bk-step-num {
  background: var(--hcs-green);
  color: #fff;
}

#hcs_booking .hcs-bk-step.done {
  color: var(--hcs-green);
}

#hcs_booking .hcs-bk-step.active .hcs-bk-step-num {
  background: var(--hcs-blue-700);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(30,90,168,.18);
}

#hcs_booking .hcs-bk-step.active {
  color: var(--hcs-blue-900);
}

/* confirmed state: all steps green */
#hcs_booking .hcs-bk-step.confirmed-active .hcs-bk-step-num {
  background: var(--hcs-green);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(15,139,79,.18);
}

#hcs_booking .hcs-bk-step.confirmed-active {
  color: var(--hcs-green);
}

#hcs_booking .hcs-bk-step-bar {
  width: 32px;
  height: 2px;
  background: var(--hcs-line);
  border-radius: 999px;
  flex-shrink: 0;
}

#hcs_booking .hcs-bk-step-bar.done {
  background: var(--hcs-green);
}

@media (max-width: 520px) {
  #hcs_booking .hcs-bk-step:not(.active):not(.done):not(.confirmed-active) .hcs-bk-step-label {
    display: none;
  }
}

/* ------------------------------------------------------------------ */
/* Back-to-repairs link (sits above the page-head H1)                   */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--hcs-ink-2, #5a6677);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px 6px 6px;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: background .15s, color .15s;
}
#hcs_booking .hcs-bk-back-link:hover,
#hcs_booking .hcs-bk-back-link:focus {
  background: var(--hcs-blue-50, #eff6ff);
  color: var(--hcs-blue-900, #1e3a8a);
  text-decoration: none;
}
#hcs_booking .hcs-bk-back-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
#hcs_booking .hcs-bk-back-row .hcs-bk-back-link {
  margin-bottom: 0;
}
#hcs_booking .hcs-bk-back-link-alt {
  color: var(--hcs-ink-3, #748094);
}

/* Clickable step pill (Repair link in the topbar). Inherits the existing
   .hcs-bk-step.done visual; we just stretch the <a> over the pill body. */
#hcs_booking .hcs-bk-step.is-clickable .hcs-bk-step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
#hcs_booking .hcs-bk-step.is-clickable:hover .hcs-bk-step-label,
#hcs_booking .hcs-bk-step.is-clickable:focus-within .hcs-bk-step-label {
  text-decoration: underline;
}

/* ------------------------------------------------------------------ */
/* Page head                                                            */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-page-head {
  margin-bottom: 24px;
}

#hcs_booking .hcs-bk-page-head h1 {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 32px);
  color: var(--hcs-blue-900);
  letter-spacing: -.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}

#hcs_booking .hcs-bk-page-head p {
  color: var(--hcs-ink-2);
  font-size: 15px;
}

/* ------------------------------------------------------------------ */
/* Main container + layout                                              */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 32px 20px 0;
}

#hcs_booking .hcs-bk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}
#hcs_booking .hcs-bk-layout > * {
  min-width: 0;
}

@media (max-width: 1000px) {
  #hcs_booking .hcs-bk-layout {
    grid-template-columns: 1fr;
  }
  #hcs_booking {
    padding-bottom: 120px;
  }
}

/* ------------------------------------------------------------------ */
/* Cards                                                                */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-card {
  background: #fff;
  border: 1px solid var(--hcs-line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--hcs-shadow-sm);
}

#hcs_booking .hcs-bk-card + .hcs-bk-card {
  margin-top: 20px;
}

#hcs_booking .hcs-bk-card-head {
  margin-bottom: 18px;
}

#hcs_booking .hcs-bk-card-head h2 {
  font-weight: 700;
  font-size: 18px;
  color: var(--hcs-blue-900);
  letter-spacing: -.01em;
  margin-bottom: 4px;
}

#hcs_booking .hcs-bk-card-head p {
  font-size: 13.5px;
  color: var(--hcs-ink-3);
}

/* ------------------------------------------------------------------ */
/* Form fields                                                          */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-field {
  margin-bottom: 14px;
}

#hcs_booking .hcs-bk-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hcs-ink);
  margin-bottom: 7px;
}

#hcs_booking .hcs-bk-field-label .hcs-bk-req {
  color: var(--hcs-red);
  margin-left: 2px;
}

#hcs_booking .hcs-bk-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 560px) {
  #hcs_booking .hcs-bk-field-row {
    grid-template-columns: 1fr;
  }
}

#hcs_booking .hcs-bk-input,
#hcs_booking .hcs-bk-select,
#hcs_booking .hcs-bk-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--hcs-line);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--hcs-ink);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
}

#hcs_booking .hcs-bk-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23748094' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

#hcs_booking .hcs-bk-input:focus,
#hcs_booking .hcs-bk-select:focus,
#hcs_booking .hcs-bk-textarea:focus {
  outline: 0;
  border-color: var(--hcs-blue-700);
  box-shadow: 0 0 0 3px rgba(30,90,168,.15);
}

#hcs_booking .hcs-bk-input::placeholder,
#hcs_booking .hcs-bk-textarea::placeholder {
  color: var(--hcs-ink-3);
}

#hcs_booking .hcs-bk-textarea {
  min-height: 90px;
  resize: vertical;
}

/* Field error */
#hcs_booking .hcs-bk-field-error {
  display: none;
  font-size: 12.5px;
  color: var(--hcs-red);
  margin-top: 5px;
  align-items: center;
  gap: 4px;
}

#hcs_booking .hcs-bk-field-error.show {
  display: flex;
}

#hcs_booking .hcs-bk-field.has-error .hcs-bk-input,
#hcs_booking .hcs-bk-field.has-error .hcs-bk-select,
#hcs_booking .hcs-bk-field.has-error .hcs-bk-textarea {
  border-color: var(--hcs-red);
  box-shadow: 0 0 0 3px rgba(197,48,48,.1);
}

/* ------------------------------------------------------------------ */
/* Fulfilment option cards                                              */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-option-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

@media (max-width: 680px) {
  #hcs_booking .hcs-bk-option-group {
    grid-template-columns: 1fr;
  }
}

#hcs_booking .hcs-bk-option-card {
  padding: 16px;
  border: 1.5px solid var(--hcs-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  position: relative;
  text-align: left;
  font-family: inherit;
  color: inherit;
  width: 100%;
}

#hcs_booking .hcs-bk-option-card:hover {
  border-color: var(--hcs-blue-500);
  background: var(--hcs-blue-50);
}

#hcs_booking .hcs-bk-option-card.selected {
  border-color: var(--hcs-blue-700);
  background: var(--hcs-blue-50);
  box-shadow: 0 0 0 3px rgba(30,90,168,.1);
}

#hcs_booking .hcs-bk-option-card .hcs-bk-opt-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

#hcs_booking .hcs-bk-option-card .hcs-bk-opt-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--hcs-blue-50);
  color: var(--hcs-blue-700);
  display: grid;
  place-items: center;
}

#hcs_booking .hcs-bk-option-card.selected .hcs-bk-opt-ic {
  background: var(--hcs-blue-700);
  color: #fff;
}

#hcs_booking .hcs-bk-option-card strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--hcs-ink);
}

#hcs_booking .hcs-bk-option-card p {
  font-size: 12.5px;
  color: var(--hcs-ink-3);
  line-height: 1.4;
}

#hcs_booking .hcs-bk-opt-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--hcs-line);
  display: grid;
  place-items: center;
  transition: background .15s, border-color .15s;
}

#hcs_booking .hcs-bk-option-card.selected .hcs-bk-opt-check {
  background: var(--hcs-blue-700);
  border-color: var(--hcs-blue-700);
}

#hcs_booking .hcs-bk-opt-check svg {
  opacity: 0;
  color: #fff;
}

#hcs_booking .hcs-bk-option-card.selected .hcs-bk-opt-check svg {
  opacity: 1;
}

/* ------------------------------------------------------------------ */
/* Date strip                                                           */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-date-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

#hcs_booking .hcs-bk-date-strip::-webkit-scrollbar {
  height: 4px;
}

#hcs_booking .hcs-bk-date-strip::-webkit-scrollbar-thumb {
  background: var(--hcs-line);
  border-radius: 2px;
}

#hcs_booking .hcs-bk-date-cell {
  flex-shrink: 0;
  width: 72px;
  padding: 10px 6px;
  border: 1.5px solid var(--hcs-line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  scroll-snap-align: start;
  position: relative;
  font-family: inherit;
  color: var(--hcs-ink);
}

#hcs_booking .hcs-bk-date-cell:hover {
  border-color: var(--hcs-blue-500);
  background: var(--hcs-blue-50);
}

#hcs_booking .hcs-bk-date-cell.selected {
  border-color: var(--hcs-blue-700);
  background: var(--hcs-blue-700);
  color: #fff;
}

#hcs_booking .hcs-bk-date-cell .hcs-bk-dc-day {
  font-size: 11px;
  font-weight: 600;
  color: var(--hcs-ink-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

#hcs_booking .hcs-bk-date-cell .hcs-bk-dc-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--hcs-blue-900);
  line-height: 1.1;
  margin: 2px 0;
}

#hcs_booking .hcs-bk-date-cell .hcs-bk-dc-month {
  font-size: 11px;
  color: var(--hcs-ink-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

#hcs_booking .hcs-bk-date-cell.selected .hcs-bk-dc-day,
#hcs_booking .hcs-bk-date-cell.selected .hcs-bk-dc-num,
#hcs_booking .hcs-bk-date-cell.selected .hcs-bk-dc-month {
  color: #fff;
}

#hcs_booking .hcs-bk-badge-priority {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--hcs-amber);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 2px solid #fff;
}

/* ── "Pick later date" CTA at the end of the strip ── */
#hcs_booking .hcs-bk-date-more {
  flex-shrink: 0; width: auto; min-width: 96px; padding: 10px 14px;
  border: 1.5px dashed var(--hcs-blue-500); border-radius: 10px;
  background: var(--hcs-blue-50); cursor: pointer; font-family: inherit;
  color: var(--hcs-blue-700); scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
}
#hcs_booking .hcs-bk-date-more:hover {
  background: var(--hcs-blue-700); color: #fff; border-style: solid;
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(30,90,168,.18);
}
#hcs_booking .hcs-bk-date-more strong { font-size: 11.5px; font-weight: 700; line-height: 1.1; text-align: center; white-space: nowrap; }
#hcs_booking .hcs-bk-date-more small  { font-size: 10.5px; opacity: .85; line-height: 1; }

/* ── Far-date cell (picked via the calendar, prepended to the strip) ── */
#hcs_booking .hcs-bk-date-cell.is-far {
  width: auto; min-width: 96px; padding: 12px 14px 10px;
  border-color: var(--hcs-blue-700); background: #fff;
}
#hcs_booking .hcs-bk-date-cell.is-far .hcs-bk-dc-day   { font-size: 10.5px; }
#hcs_booking .hcs-bk-date-cell.is-far .hcs-bk-dc-num   { font-size: 18px; margin: 1px 0; }
#hcs_booking .hcs-bk-date-cell.is-far .hcs-bk-dc-month { font-size: 10.5px; }
#hcs_booking .hcs-bk-badge-far {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  background: var(--hcs-blue-700); color: #fff;
  font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 5px;
  text-transform: uppercase; letter-spacing: .05em; white-space: nowrap;
}
#hcs_booking .hcs-bk-date-cell.is-far.selected .hcs-bk-badge-far { background: #fff; color: var(--hcs-blue-700); }
#hcs_booking .hcs-bk-remove-far {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  border: 1.5px solid var(--hcs-line); color: var(--hcs-ink-3);
  display: none; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1; cursor: pointer; font-weight: 600;
  transition: border-color .15s, color .15s, background .15s;
}
#hcs_booking .hcs-bk-date-cell.is-far:hover .hcs-bk-remove-far { display: flex; }
#hcs_booking .hcs-bk-remove-far:hover { border-color: var(--hcs-red, #C53030); color: var(--hcs-red, #C53030); background: #FEE; }

/* ── Calendar popover ── */
#hcs_booking .hcs-bk-cal-overlay {
  position: fixed; inset: 0; background: rgba(10,37,64,.5);
  z-index: 200; display: none; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(4px);
}
#hcs_booking .hcs-bk-cal-overlay.show { display: flex; animation: hcsBkCalFade .2s ease; }
@keyframes hcsBkCalFade { from { opacity: 0; } to { opacity: 1; } }
#hcs_booking .hcs-bk-cal-popover {
  background: #fff; border-radius: 14px; width: 100%; max-width: 380px; max-height: 90vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 18px 40px rgba(10,37,64,.18); animation: hcsBkCalRise .25s ease;
}
@keyframes hcsBkCalRise { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
#hcs_booking .hcs-bk-cal-head { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--hcs-line); }
#hcs_booking .hcs-bk-cal-title { flex: 1; font-weight: 700; font-size: 15px; color: var(--hcs-blue-900); text-align: center; letter-spacing: -.01em; }
#hcs_booking .hcs-bk-cal-nav {
  width: 32px; height: 32px; border-radius: 8px; background: none; border: 0; cursor: pointer;
  color: var(--hcs-ink-2, #475569); display: grid; place-items: center; transition: background .15s, color .15s;
}
#hcs_booking .hcs-bk-cal-nav:hover:not(:disabled) { background: var(--hcs-bg-2, #F7F9FC); color: var(--hcs-blue-700); }
#hcs_booking .hcs-bk-cal-nav:disabled { opacity: .3; cursor: not-allowed; }
#hcs_booking .hcs-bk-cal-grid { padding: 12px 16px 8px; display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
#hcs_booking .hcs-bk-cal-weekday { text-align: center; font-size: 10px; font-weight: 700; color: var(--hcs-ink-3); text-transform: uppercase; letter-spacing: .06em; padding: 6px 0; }
#hcs_booking .hcs-bk-cal-day {
  aspect-ratio: 1; display: grid; place-items: center;
  font-size: 13.5px; font-weight: 600; color: var(--hcs-ink); font-family: inherit;
  border-radius: 8px; cursor: pointer; background: none; border: 1.5px solid transparent;
  transition: background .12s, color .12s, border-color .12s; position: relative;
}
#hcs_booking .hcs-bk-cal-day:hover:not(.empty):not(.disabled) { background: var(--hcs-blue-50); color: var(--hcs-blue-700); }
#hcs_booking .hcs-bk-cal-day.today { border-color: var(--hcs-blue-500); }
#hcs_booking .hcs-bk-cal-day.selected { background: var(--hcs-blue-700); color: #fff; box-shadow: 0 4px 12px rgba(30,90,168,.25); }
#hcs_booking .hcs-bk-cal-day.disabled { color: var(--hcs-ink-3); opacity: .4; cursor: not-allowed; }
#hcs_booking .hcs-bk-cal-day.empty { cursor: default; visibility: hidden; }
#hcs_booking .hcs-bk-cal-day.priority::after { content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--hcs-amber); }
#hcs_booking .hcs-bk-cal-day.selected.priority::after { background: #fff; }
#hcs_booking .hcs-bk-cal-foot {
  padding: 12px 16px; border-top: 1px solid var(--hcs-line); background: var(--hcs-bg-2, #F7F9FC);
  display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 11.5px; color: var(--hcs-ink-3);
}
#hcs_booking .hcs-bk-cal-legend { display: inline-flex; align-items: center; gap: 5px; }
#hcs_booking .hcs-bk-cal-legend .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--hcs-amber); }
#hcs_booking .hcs-bk-cal-done {
  padding: 8px 16px; border-radius: 8px; border: 0; cursor: pointer; font-family: inherit;
  background: var(--hcs-blue-700); color: #fff; font-weight: 700; font-size: 12.5px; transition: background .15s;
}
#hcs_booking .hcs-bk-cal-done:hover { background: var(--hcs-blue-900); }

#hcs_booking .hcs-bk-date-cell.selected .hcs-bk-badge-priority {
  background: #fff;
  color: var(--hcs-amber);
  border-color: var(--hcs-blue-700);
}

/* ------------------------------------------------------------------ */
/* Time slots                                                           */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 560px) {
  #hcs_booking .hcs-bk-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

#hcs_booking .hcs-bk-slot {
  padding: 10px 8px;
  border: 1.5px solid var(--hcs-line);
  border-radius: 8px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--hcs-ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  text-align: center;
  font-family: inherit;
}

#hcs_booking .hcs-bk-slot:hover {
  border-color: var(--hcs-blue-500);
  background: var(--hcs-blue-50);
  color: var(--hcs-blue-700);
}

#hcs_booking .hcs-bk-slot.selected {
  border-color: var(--hcs-blue-700);
  background: var(--hcs-blue-700);
  color: #fff;
}

#hcs_booking .hcs-bk-slot-meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--hcs-ink-3);
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--hcs-bg-2);
  border-radius: 8px;
}

#hcs_booking .hcs-bk-slot-meta svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* All copy in one block so the date never gets squeezed onto its own
   truncated flex line. */
#hcs_booking .hcs-bk-slot-meta-text {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}

#hcs_booking .hcs-bk-slot-meta-text strong {
  white-space: nowrap;
  font-weight: 700;
}

/* Surcharge note drops to its own line, clearly separated from the date. */
#hcs_booking .hcs-bk-slot-meta-note {
  display: block;
  margin-top: 2px;
  font-weight: 600;
}

#hcs_booking .hcs-bk-slot-meta.priority {
  color: var(--hcs-amber);
  background: #FEF3E0;
  border: 1px solid #FCD9A8;
}

#hcs_booking .hcs-bk-slots-empty {
  padding: 32px 16px;
  text-align: center;
  color: var(--hcs-ink-3);
  font-size: 14px;
  background: var(--hcs-bg-2);
  border-radius: 8px;
}

/* ------------------------------------------------------------------ */
/* Add-on rows (check-row style)                                        */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid var(--hcs-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
}

#hcs_booking .hcs-bk-check-row:hover {
  border-color: var(--hcs-blue-500);
  background: var(--hcs-blue-50);
}

#hcs_booking .hcs-bk-check-row.selected {
  border-color: var(--hcs-blue-700);
  background: var(--hcs-blue-50);
}

#hcs_booking .hcs-bk-cb {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--hcs-line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background .15s, border-color .15s;
}

#hcs_booking .hcs-bk-check-row.selected .hcs-bk-cb {
  background: var(--hcs-blue-700);
  border-color: var(--hcs-blue-700);
}

#hcs_booking .hcs-bk-cb svg {
  opacity: 0;
  color: #fff;
}

#hcs_booking .hcs-bk-check-row.selected .hcs-bk-cb svg {
  opacity: 1;
}

#hcs_booking .hcs-bk-check-row .hcs-bk-cr-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--hcs-blue-50);
  color: var(--hcs-blue-700);
  display: grid;
  place-items: center;
}

#hcs_booking .hcs-bk-check-row.selected .hcs-bk-cr-ic {
  background: var(--hcs-blue-700);
  color: #fff;
}

#hcs_booking .hcs-bk-check-row .hcs-bk-cr-text {
  flex: 1;
}

#hcs_booking .hcs-bk-check-row .hcs-bk-cr-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hcs-ink);
  margin-bottom: 2px;
}

#hcs_booking .hcs-bk-check-row .hcs-bk-cr-text small {
  font-size: 12.5px;
  color: var(--hcs-ink-3);
}

/* ------------------------------------------------------------------ */
/* Payment method cards (pm-card style)                                 */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 560px) {
  #hcs_booking .hcs-bk-pm-grid {
    grid-template-columns: 1fr;
  }
}

#hcs_booking .hcs-bk-pm-card {
  padding: 18px;
  border: 1.5px solid var(--hcs-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  position: relative;
  text-align: left;
  font-family: inherit;
  color: inherit;
  width: 100%;
}

#hcs_booking .hcs-bk-pm-card:hover {
  border-color: var(--hcs-blue-500);
  background: var(--hcs-blue-50);
}

#hcs_booking .hcs-bk-pm-card.selected {
  border-color: var(--hcs-blue-700);
  background: var(--hcs-blue-50);
  box-shadow: 0 0 0 3px rgba(30,90,168,.1);
}

#hcs_booking .hcs-bk-pm-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--hcs-line);
  display: grid;
  place-items: center;
  transition: background .15s, border-color .15s;
}

#hcs_booking .hcs-bk-pm-card.selected .hcs-bk-pm-check {
  background: var(--hcs-blue-700);
  border-color: var(--hcs-blue-700);
}

#hcs_booking .hcs-bk-pm-check svg {
  opacity: 0;
  color: #fff;
}

#hcs_booking .hcs-bk-pm-card.selected .hcs-bk-pm-check svg {
  opacity: 1;
}

#hcs_booking .hcs-bk-pm-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  height: 28px;
}

#hcs_booking .hcs-bk-stripe-mark {
  display: inline-block;
  background: #635BFF;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -.02em;
  padding: 5px 10px;
  border-radius: 5px;
}

#hcs_booking .hcs-bk-klarna-mark {
  display: inline-block;
  background: #FFA8CD;
  color: #0E0E0E;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -.02em;
  padding: 5px 12px;
  border-radius: 999px;
}

#hcs_booking .hcs-bk-pm-card strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--hcs-ink);
  margin-bottom: 2px;
}

#hcs_booking .hcs-bk-pm-card p {
  font-size: 13px;
  color: var(--hcs-ink-3);
  line-height: 1.4;
}

#hcs_booking .hcs-bk-pm-icons {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  flex-wrap: wrap;
}

#hcs_booking .hcs-bk-pm-icons span {
  background: var(--hcs-bg-2);
  border: 1px solid var(--hcs-line);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--hcs-ink-2);
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* ------------------------------------------------------------------ */
/* Checkbox row (terms, same-address)                                   */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 10px 0;
  font-size: 13.5px;
  color: var(--hcs-ink-2);
  background: transparent;
  border: 0;
  text-align: left;
  width: 100%;
  font: inherit;
  line-height: 1.5;
}
#hcs_booking .hcs-bk-checkbox-row:focus { outline: 0; }
#hcs_booking .hcs-bk-checkbox-row:focus-visible { outline: 2px solid var(--hcs-blue-500); outline-offset: 2px; border-radius: 4px; }

#hcs_booking .hcs-bk-checkbox-cb {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid var(--hcs-line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background .15s, border-color .15s;
}

#hcs_booking .hcs-bk-checkbox-row.checked .hcs-bk-checkbox-cb {
  background: var(--hcs-blue-700);
  border-color: var(--hcs-blue-700);
}

#hcs_booking .hcs-bk-checkbox-cb svg {
  opacity: 0;
  color: #fff;
}

#hcs_booking .hcs-bk-checkbox-row.checked .hcs-bk-checkbox-cb svg {
  opacity: 1;
}

#hcs_booking .hcs-bk-checkbox-row a {
  color: var(--hcs-blue-700);
  font-weight: 500;
  text-decoration: underline;
}

/* ------------------------------------------------------------------ */
/* Error / status message                                               */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-msg {
  font-size: 13.5px;
  color: var(--hcs-red);
  min-height: 1.4em;
  font-weight: 500;
}

#hcs_booking .hcs-bk-msg:empty {
  display: none;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                              */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-btn-primary {
  width: 100%;
  background: var(--hcs-blue-700);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s, transform .15s;
  line-height: 1;
}

#hcs_booking .hcs-bk-btn-primary:hover {
  background: var(--hcs-blue-800);
  transform: translateY(-1px);
}

#hcs_booking .hcs-bk-btn-primary:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

#hcs_booking .hcs-bk-btn-primary .hcs-bk-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: hcsBkSpin .8s linear infinite;
  display: none;
}

#hcs_booking .hcs-bk-btn-primary.loading .hcs-bk-spinner {
  display: inline-block;
}

#hcs_booking .hcs-bk-btn-primary.loading .hcs-bk-btn-label {
  display: none;
}

@keyframes hcsBkSpin {
  to { transform: rotate(360deg); }
}

/* ------------------------------------------------------------------ */
/* Summary sidebar                                                      */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-summary {
  position: sticky;
  top: 88px;
}

#hcs_booking .hcs-bk-summary-card {
  background: #fff;
  border: 1px solid var(--hcs-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hcs-shadow-sm);
}

#hcs_booking .hcs-bk-summary-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--hcs-line);
  background: var(--hcs-blue-50);
}

#hcs_booking .hcs-bk-summary-head h2 {
  font-weight: 700;
  font-size: 16px;
  color: var(--hcs-blue-900);
  margin-bottom: 2px;
}

#hcs_booking .hcs-bk-summary-head small {
  font-size: 12.5px;
  color: var(--hcs-ink-3);
}

#hcs_booking .hcs-bk-summary-body {
  padding: 8px 20px;
}

#hcs_booking .hcs-bk-summary-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--hcs-line);
}

#hcs_booking .hcs-bk-summary-item:last-child {
  border-bottom: 0;
}

#hcs_booking .hcs-bk-summary-item-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

#hcs_booking .hcs-bk-summary-item strong {
  font-weight: 600;
  font-size: 14px;
  color: var(--hcs-ink);
  line-height: 1.35;
}

#hcs_booking .hcs-bk-item-price {
  font-weight: 700;
  font-size: 14px;
  color: var(--hcs-blue-900);
  flex-shrink: 0;
}

#hcs_booking .hcs-bk-item-note {
  display: block;
  font-size: 12px;
  color: var(--hcs-ink-2, #5d6b7a);
  font-style: italic;
  line-height: 1.35;
}

#hcs_booking .hcs-bk-summary-meta {
  padding: 14px 20px;
  background: var(--hcs-bg-2);
  font-size: 13px;
}

#hcs_booking .hcs-bk-summary-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--hcs-ink-2);
}

#hcs_booking .hcs-bk-summary-meta-row.surcharge {
  color: var(--hcs-amber);
  font-weight: 600;
}

#hcs_booking .hcs-bk-summary-foot {
  padding: 18px 20px;
  border-top: 1px solid var(--hcs-line);
}

#hcs_booking .hcs-bk-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

#hcs_booking .hcs-bk-totals-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--hcs-ink-2);
}

#hcs_booking .hcs-bk-totals-line.grand {
  font-size: 18px;
  font-weight: 700;
  color: var(--hcs-blue-900);
  padding-top: 8px;
  border-top: 1px solid var(--hcs-line);
  margin-top: 6px;
}

#hcs_booking .hcs-bk-summary-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: var(--hcs-ink-3);
  text-align: center;
  line-height: 1.5;
}

/* Trust bar below summary */
#hcs_booking .hcs-bk-trust-bar {
  margin-top: 14px;
  padding: 12px;
  background: var(--hcs-blue-50);
  border: 1px solid var(--hcs-blue-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--hcs-blue-900);
}

#hcs_booking .hcs-bk-trust-bar svg {
  flex-shrink: 0;
  color: var(--hcs-blue-700);
}

/* ------------------------------------------------------------------ */
/* Auth banner (payment step)                                           */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-auth-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--hcs-blue-50);
  border: 1px solid var(--hcs-blue-100);
  border-radius: 12px;
  margin-bottom: 24px;
}

#hcs_booking .hcs-bk-auth-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: #fff;
  color: var(--hcs-blue-700);
  display: grid;
  place-items: center;
}

#hcs_booking .hcs-bk-auth-banner strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--hcs-blue-900);
  margin-bottom: 2px;
}

#hcs_booking .hcs-bk-auth-banner p {
  font-size: 13.5px;
  color: var(--hcs-ink-2);
  line-height: 1.5;
}

/* ------------------------------------------------------------------ */
/* Payment method read-only indicator (pay step)                        */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-pm-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--hcs-bg-2);
  border: 1px solid var(--hcs-line);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--hcs-ink-2);
  font-weight: 500;
}

#hcs_booking .hcs-bk-pm-indicator strong {
  color: var(--hcs-ink);
}

/* Stripe Payment Element wrapper */
#hcs_booking #hcs_payment_element {
  min-height: 48px;
  margin-bottom: 16px;
}

/* Trust tiles (payment section) */
#hcs_booking .hcs-bk-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

#hcs_booking .hcs-bk-trust-tile {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--hcs-line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#hcs_booking .hcs-bk-trust-tile svg {
  color: var(--hcs-blue-700);
}

#hcs_booking .hcs-bk-trust-tile strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--hcs-blue-900);
  display: block;
}

#hcs_booking .hcs-bk-trust-tile small {
  font-size: 11.5px;
  color: var(--hcs-ink-3);
  line-height: 1.3;
}

/* ------------------------------------------------------------------ */
/* Payment-step panes (Card vs Klarna)                                  */
/* Ported from /home/marco-maher/Downloads/HonCar Templetes/VRM Select   */
/* Works/payment.html — only Stripe/Card pane is visible by default.    */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-pane{display:none;animation:hcsBkPaneFade .25s ease;}
#hcs_booking .hcs-bk-pane.hcs-bk-pane-show{display:block;}
@keyframes hcsBkPaneFade{from{opacity:0;transform:translateY(4px);}to{opacity:1;transform:translateY(0);}}

/* Klarna option pills */
#hcs_booking .hcs-bk-klarna-options{display:flex;flex-direction:column;gap:10px;}
#hcs_booking .hcs-bk-klarna-option{
  display:flex;align-items:center;gap:14px;
  padding:16px;border:1.5px solid var(--hcs-line,#E3E8EF);border-radius:10px;
  background:#fff;cursor:pointer;transition:all .15s;text-align:left;width:100%;
}
#hcs_booking .hcs-bk-klarna-option:hover{border-color:var(--hcs-blue-500,#3B7BE0);background:var(--hcs-blue-50,#EEF4FB);}
#hcs_booking .hcs-bk-klarna-option.selected{border-color:var(--hcs-blue-700,#1E5AA8);background:var(--hcs-blue-50,#EEF4FB);}
#hcs_booking .hcs-bk-klarna-option .cb{
  position:relative;width:20px;height:20px;border-radius:50%;border:2px solid var(--hcs-line,#E3E8EF);
  flex-shrink:0;transition:all .15s;
}
#hcs_booking .hcs-bk-klarna-option.selected .cb{background:var(--hcs-blue-700,#1E5AA8);border-color:var(--hcs-blue-700,#1E5AA8);}
#hcs_booking .hcs-bk-klarna-option.selected .cb::after{
  content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:8px;height:8px;border-radius:50%;background:#fff;
}
#hcs_booking .hcs-bk-klarna-option .text{flex:1;min-width:0;}
#hcs_booking .hcs-bk-klarna-option strong{display:block;font-weight:700;font-size:15px;color:var(--hcs-ink,#0A2540);margin-bottom:2px;letter-spacing:-.01em;}
#hcs_booking .hcs-bk-klarna-option small{font-size:13px;color:var(--hcs-ink-3,#748094);}
#hcs_booking .hcs-bk-klarna-option .badge{
  font-size:10.5px;font-weight:700;color:var(--hcs-blue-700,#1E5AA8);
  background:var(--hcs-blue-50,#EEF4FB);border:1px solid var(--hcs-blue-100,#DCE8F5);
  padding:2px 8px;border-radius:999px;text-transform:uppercase;letter-spacing:.06em;
  flex-shrink:0;
}

#hcs_booking .hcs-bk-klarna-redirect-note{
  margin-top:14px;padding:12px;
  background:var(--hcs-bg-2,#F7F9FC);border:1px solid var(--hcs-line,#E3E8EF);
  border-radius:8px;font-size:13px;color:var(--hcs-ink-2,#475569);
  display:flex;align-items:center;gap:10px;line-height:1.5;
}
#hcs_booking .hcs-bk-klarna-redirect-note svg{flex-shrink:0;color:var(--hcs-ink-3,#748094);}

/* Processing overlay */
#hcs_booking .hcs-bk-processing {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

#hcs_booking .hcs-bk-processing.show {
  display: flex;
}

#hcs_booking .hcs-bk-processing-box {
  background: #fff;
  border: 1px solid var(--hcs-line);
  border-radius: 14px;
  padding: 32px 40px;
  box-shadow: var(--hcs-shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

#hcs_booking .hcs-bk-spinner-lg {
  width: 42px;
  height: 42px;
  border: 3px solid var(--hcs-line);
  border-top-color: var(--hcs-blue-700);
  border-radius: 50%;
  animation: hcsBkSpin .8s linear infinite;
}

#hcs_booking .hcs-bk-processing-box strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--hcs-blue-900);
}

#hcs_booking .hcs-bk-processing-box small {
  font-size: 13px;
  color: var(--hcs-ink-3);
}

/* ------------------------------------------------------------------ */
/* Confirmation section                                                 */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-done-hero {
  text-align: center;
  margin-bottom: 48px;
}

#hcs_booking .hcs-bk-success-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hcs-green) 0%, #15A35E 100%);
  display: grid;
  place-items: center;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 16px 32px rgba(15,139,79,.3);
  animation: hcsBkPop .5s cubic-bezier(.34,1.56,.64,1) both;
  position: relative;
}

@keyframes hcsBkPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

#hcs_booking .hcs-bk-success-circle svg {
  width: 42px;
  height: 42px;
  animation: hcsBkCheckDraw .6s .25s ease-out both;
}

@keyframes hcsBkCheckDraw {
  from { stroke-dasharray: 0 50; opacity: 0; }
  to   { stroke-dasharray: 50 50; opacity: 1; }
}

#hcs_booking .hcs-bk-success-circle::before,
#hcs_booking .hcs-bk-success-circle::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--hcs-green);
  opacity: 0;
  animation: hcsBkRing 1.5s .3s ease-out;
}

#hcs_booking .hcs-bk-success-circle::after {
  animation-delay: .5s;
  border-color: #15A35E;
}

@keyframes hcsBkRing {
  0%   { transform: scale(.6); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

#hcs_booking .hcs-bk-done-hero h1 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  color: var(--hcs-blue-900);
  margin-bottom: 10px;
  animation: hcsBkFadeUp .5s .15s ease both;
}

#hcs_booking .hcs-bk-done-hero p {
  font-size: 17px;
  color: var(--hcs-ink-2);
  max-width: 520px;
  margin: 0 auto;
  animation: hcsBkFadeUp .5s .25s ease both;
}

@keyframes hcsBkFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

#hcs_booking .hcs-bk-ref-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--hcs-line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--hcs-ink-2);
  box-shadow: var(--hcs-shadow-sm);
  animation: hcsBkFadeUp .5s .35s ease both;
}

#hcs_booking .hcs-bk-ref-pill strong {
  font-family: 'Inter', monospace;
  font-weight: 700;
  color: var(--hcs-blue-900);
  letter-spacing: .04em;
}

#hcs_booking .hcs-bk-copy-btn {
  margin-left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--hcs-ink-3);
  transition: background .15s, color .15s;
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

#hcs_booking .hcs-bk-copy-btn:hover {
  background: var(--hcs-blue-50);
  color: var(--hcs-blue-700);
}

/* Confirmation layout */
#hcs_booking .hcs-bk-done-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
  animation: hcsBkFadeUp .5s .45s ease both;
}

@media (max-width: 1000px) {
  #hcs_booking .hcs-bk-done-layout {
    grid-template-columns: 1fr;
  }
}

/* What happens next — timeline */
#hcs_booking .hcs-bk-timeline {
  display: flex;
  flex-direction: column;
}

#hcs_booking .hcs-bk-tl-step {
  display: flex;
  gap: 14px;
  padding: 16px 0;
}

#hcs_booking .hcs-bk-tl-step + .hcs-bk-tl-step {
  border-top: 1px solid var(--hcs-line);
}

#hcs_booking .hcs-bk-tl-ic-wrap {
  position: relative;
  flex-shrink: 0;
}

#hcs_booking .hcs-bk-tl-ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hcs-bg-2);
  color: var(--hcs-ink-3);
  display: grid;
  place-items: center;
  border: 2px solid var(--hcs-line);
}

#hcs_booking .hcs-bk-tl-step.done .hcs-bk-tl-ic {
  background: var(--hcs-green);
  color: #fff;
  border-color: var(--hcs-green);
}

#hcs_booking .hcs-bk-tl-step.current .hcs-bk-tl-ic {
  background: #fff;
  color: var(--hcs-blue-700);
  border-color: var(--hcs-blue-700);
  box-shadow: 0 0 0 4px rgba(30,90,168,.15);
}

#hcs_booking .hcs-bk-tl-text {
  flex: 1;
  padding-top: 2px;
}

#hcs_booking .hcs-bk-tl-text strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--hcs-ink);
  margin-bottom: 2px;
}

#hcs_booking .hcs-bk-tl-text p {
  font-size: 13.5px;
  color: var(--hcs-ink-3);
  line-height: 1.5;
}

#hcs_booking .hcs-bk-tl-text small {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hcs-blue-700);
  background: var(--hcs-blue-50);
  padding: 3px 10px;
  border-radius: 999px;
}

#hcs_booking .hcs-bk-tl-step.done .hcs-bk-tl-text small {
  color: var(--hcs-green);
  background: var(--hcs-green-50);
}

/* Info grid (confirmation booking details) */
#hcs_booking .hcs-bk-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

@media (max-width: 560px) {
  #hcs_booking .hcs-bk-info-grid {
    grid-template-columns: 1fr;
  }
}

#hcs_booking .hcs-bk-info-block {
  padding: 14px;
  background: var(--hcs-bg-2);
  border-radius: 10px;
}

#hcs_booking .hcs-bk-info-lbl {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--hcs-ink-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#hcs_booking .hcs-bk-info-block strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--hcs-ink);
  line-height: 1.4;
  margin-bottom: 2px;
}

#hcs_booking .hcs-bk-info-block small {
  font-size: 13px;
  color: var(--hcs-ink-3);
  display: block;
}

/* Jobs list (confirmation) */
#hcs_booking .hcs-bk-jobs-section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--hcs-ink-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

#hcs_booking .hcs-bk-jobs-list {
  display: flex;
  flex-direction: column;
}

#hcs_booking .hcs-bk-job-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

#hcs_booking .hcs-bk-job-row + .hcs-bk-job-row {
  border-top: 1px solid var(--hcs-line);
}

#hcs_booking .hcs-bk-job-ic {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--hcs-blue-50);
  color: var(--hcs-blue-700);
  display: grid;
  place-items: center;
}

#hcs_booking .hcs-bk-job-text {
  flex: 1;
  min-width: 0;
}

#hcs_booking .hcs-bk-job-text strong {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--hcs-ink);
}

#hcs_booking .hcs-bk-job-text small {
  display: block;
  font-size: 12.5px;
  color: var(--hcs-ink-3);
}

#hcs_booking .hcs-bk-job-price {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--hcs-blue-900);
  flex-shrink: 0;
}

/* Calendar row buttons */
#hcs_booking .hcs-bk-cal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

#hcs_booking .hcs-bk-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 13.5px;
  border: 1px solid var(--hcs-line);
  background: #fff;
  color: var(--hcs-ink-2);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  font-family: inherit;
}

#hcs_booking .hcs-bk-cal-btn:hover {
  border-color: var(--hcs-blue-700);
  color: var(--hcs-blue-700);
  background: var(--hcs-blue-50);
}

/* Sidebar — authorisation summary */
#hcs_booking .hcs-bk-side-card {
  background: #fff;
  border: 1px solid var(--hcs-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hcs-shadow-sm);
}

#hcs_booking .hcs-bk-side-card + .hcs-bk-side-card {
  margin-top: 20px;
}

#hcs_booking .hcs-bk-side-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--hcs-line);
  background: var(--hcs-blue-50);
}

#hcs_booking .hcs-bk-side-head h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--hcs-blue-900);
}

#hcs_booking .hcs-bk-side-body {
  padding: 8px 20px;
}

#hcs_booking .hcs-bk-side-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13.5px;
  color: var(--hcs-ink-2);
  border-bottom: 1px solid var(--hcs-line);
}

#hcs_booking .hcs-bk-side-row:last-child {
  border-bottom: 0;
}

#hcs_booking .hcs-bk-side-row.grand {
  font-size: 16px;
  font-weight: 700;
  color: var(--hcs-blue-900);
  padding-top: 14px;
  flex-direction: column;
  gap: 4px;
}

#hcs_booking .hcs-bk-auth-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  background: var(--hcs-green-50);
  color: var(--hcs-green);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Quick action links */
#hcs_booking .hcs-bk-actions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
}

#hcs_booking .hcs-bk-action-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: var(--hcs-bg-2);
  font-weight: 600;
  font-size: 14px;
  color: var(--hcs-ink);
  transition: background .15s, border-color .15s, color .15s;
  cursor: pointer;
  text-align: left;
  width: 100%;
  border: 1px solid transparent;
  font-family: inherit;
}

#hcs_booking .hcs-bk-action-link:hover {
  background: #fff;
  border-color: var(--hcs-blue-700);
  color: var(--hcs-blue-700);
}

#hcs_booking .hcs-bk-action-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: #fff;
  color: var(--hcs-blue-700);
  display: grid;
  place-items: center;
  border: 1px solid var(--hcs-line);
  transition: background .15s, border-color .15s, color .15s;
}

#hcs_booking .hcs-bk-action-link:hover .hcs-bk-action-ic {
  background: var(--hcs-blue-700);
  color: #fff;
  border-color: var(--hcs-blue-700);
}

#hcs_booking .hcs-bk-action-text {
  flex: 1;
}

#hcs_booking .hcs-bk-action-text strong {
  display: block;
  font-size: 14px;
}

#hcs_booking .hcs-bk-action-text small {
  display: block;
  font-size: 12px;
  color: var(--hcs-ink-3);
  font-weight: 400;
  margin-top: 1px;
}

#hcs_booking .hcs-bk-action-link:hover .hcs-bk-action-text small {
  color: var(--hcs-ink-2);
}

#hcs_booking .hcs-bk-action-arrow {
  color: var(--hcs-ink-3);
}

#hcs_booking .hcs-bk-action-link:hover .hcs-bk-action-arrow {
  color: var(--hcs-blue-700);
}

/* Notify note */
#hcs_booking .hcs-bk-notify-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px;
  background: var(--hcs-blue-50);
  border: 1px solid var(--hcs-blue-100);
  border-radius: 10px;
  font-size: 13px;
  color: var(--hcs-blue-900);
  line-height: 1.5;
}

#hcs_booking .hcs-bk-notify-note svg {
  flex-shrink: 0;
  color: var(--hcs-blue-700);
  margin-top: 1px;
}

#hcs_booking .hcs-bk-notify-note strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

/* ------------------------------------------------------------------ */
/* Mobile sticky bar                                                    */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--hcs-line);
  padding: 12px 16px;
  z-index: 40;
  box-shadow: 0 -8px 24px rgba(10,37,64,.08);
  align-items: center;
  gap: 14px;
}

#hcs_booking .hcs-bk-mobile-bar-total {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#hcs_booking .hcs-bk-mobile-bar-total small {
  font-size: 11.5px;
  color: var(--hcs-ink-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

#hcs_booking .hcs-bk-mobile-bar-total strong {
  font-size: 18px;
  color: var(--hcs-blue-900);
  font-weight: 700;
}

#hcs_booking .hcs-bk-mobile-bar .hcs-bk-btn-primary {
  width: auto;
  padding: 12px 22px;
}

@media (max-width: 1000px) {
  #hcs_booking .hcs-bk-mobile-bar {
    display: flex;
  }

  #hcs_booking .hcs-bk-summary {
    display: none;
  }
}

/* ------------------------------------------------------------------ */
/* Toast notification                                                   */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--hcs-blue-900);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--hcs-shadow-lg);
  /* 2026-06-13 — above the pre-payment sign-in/sign-up auth gate
     (.hcs-bkauth-overlay z-index:100000) so login/signup messages show OVER
     the popup, not behind its blur backdrop. */
  z-index: 100001;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

#hcs_booking .hcs-bk-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#hcs_booking .hcs-bk-toast.error {
  background: var(--hcs-red);
}

#hcs_booking .hcs-bk-toast svg {
  color: #67E8B8;
  flex-shrink: 0;
}

#hcs_booking .hcs-bk-toast.error svg {
  color: #fff;
}

@media (max-width: 1000px) {
  #hcs_booking .hcs-bk-toast {
    bottom: 90px;
  }
}

/* ------------------------------------------------------------------ */
/* Fade-in entrance                                                     */
/* ------------------------------------------------------------------ */
#hcs_booking .hcs-bk-fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: hcsBkFadeIn .5s ease forwards;
}

@keyframes hcsBkFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------------ */
/* Reduced motion                                                       */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  #hcs_booking *,
  #hcs_booking *::before,
  #hcs_booking *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   CHOOSE A MECHANIC PICKER (added 2026-05-24)
   Ported from /home/marco-maher/Downloads/HonCar Templetes/VRM Select Works/booking.html
   Lives in the second card on /booking/, above Location. Optional — users can
   stick with "Any available mechanic" (default) and it sends no preferred id.
   ============================================================ */
#hcs_booking .hcs-bk-opt-tag{font-size:11.5px;font-weight:600;color:var(--hcs-ink-3,#748094);margin-left:6px;font-weight:600;text-transform:none;letter-spacing:normal;}

#hcs_booking .hcs-bk-mech-mode{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:14px;}
@media (max-width:560px){#hcs_booking .hcs-bk-mech-mode{grid-template-columns:1fr;}}

#hcs_booking .hcs-bk-mode-pill{
  display:flex;gap:10px;align-items:flex-start;
  padding:12px 14px;border:1.5px solid var(--hcs-line,#E3E8EF);border-radius:10px;
  background:#fff;cursor:pointer;transition:all .15s;
}
#hcs_booking .hcs-bk-mode-pill:hover{border-color:var(--hcs-blue-500,#3B7BE0);background:var(--hcs-bg-2,#F7F9FC);}
#hcs_booking .hcs-bk-mode-pill.selected{border-color:var(--hcs-blue-700,#1E5AA8);background:var(--hcs-blue-50,#EEF4FB);box-shadow:0 0 0 3px rgba(30,90,168,.12);}
#hcs_booking .hcs-bk-mode-pill .radio{
  width:18px;height:18px;border-radius:50%;border:2px solid var(--hcs-line,#E3E8EF);
  display:grid;place-items:center;flex-shrink:0;margin-top:1px;transition:all .15s;
}
#hcs_booking .hcs-bk-mode-pill.selected .radio{border-color:var(--hcs-blue-700,#1E5AA8);background:var(--hcs-blue-700,#1E5AA8);}
#hcs_booking .hcs-bk-mode-pill .radio::after{content:"";width:6px;height:6px;border-radius:50%;background:#fff;opacity:0;transition:opacity .15s;}
#hcs_booking .hcs-bk-mode-pill.selected .radio::after{opacity:1;}
#hcs_booking .hcs-bk-mode-pill .text{flex:1;}
#hcs_booking .hcs-bk-mode-pill .text strong,
#hcs_booking .hcs-bk-mode-pill strong{display:block;font-size:13.5px;font-weight:700;color:var(--hcs-blue-900,#0A2540);line-height:1.2;margin-bottom:0;}
#hcs_booking .hcs-bk-mode-pill .text small,
#hcs_booking .hcs-bk-mode-pill small{display:block;font-size:12px;color:var(--hcs-ink-3,#748094);margin-top:2px;line-height:1.4;}

#hcs_booking .hcs-bk-mech-warning{
  display:flex;gap:10px;align-items:flex-start;
  padding:12px 14px;background:#FEF3E0;border:1px solid #FCD9A8;border-radius:9px;
  font-size:13px;color:#B45309;line-height:1.5;margin-bottom:14px;
}
#hcs_booking .hcs-bk-mech-warning svg{flex-shrink:0;margin-top:2px;}
#hcs_booking .hcs-bk-mech-warning strong{display:block;font-weight:700;color:#8A4006;margin-bottom:2px;}

#hcs_booking .hcs-bk-mech-list{display:flex;flex-direction:column;gap:10px;}
#hcs_booking .hcs-bk-mech-list[hidden]{display:none;}

#hcs_booking .hcs-bk-mech-loading{padding:24px;text-align:center;color:var(--hcs-ink-3,#748094);font-size:13.5px;display:flex;align-items:center;justify-content:center;gap:10px;}
#hcs_booking .hcs-bk-spinner-sm{width:14px;height:14px;border:2px solid var(--hcs-line,#E3E8EF);border-top-color:var(--hcs-blue-700,#1E5AA8);border-radius:50%;animation:hcsBkSpin .8s linear infinite;display:inline-block;}
@keyframes hcsBkSpin{to{transform:rotate(360deg);}}

#hcs_booking .hcs-bk-mech-card{
  display:flex;align-items:center;gap:14px;padding:14px;
  border:1.5px solid var(--hcs-line,#E3E8EF);border-radius:11px;background:#fff;
  cursor:pointer;transition:all .15s;
}
#hcs_booking .hcs-bk-mech-card:hover{border-color:var(--hcs-blue-500,#3B7BE0);background:var(--hcs-bg-2,#F7F9FC);}
#hcs_booking .hcs-bk-mech-card.selected{border-color:var(--hcs-blue-700,#1E5AA8);background:var(--hcs-blue-50,#EEF4FB);box-shadow:0 0 0 3px rgba(30,90,168,.12);}
#hcs_booking .hcs-bk-mech-card.unavailable{opacity:.55;cursor:not-allowed;}
#hcs_booking .hcs-bk-mech-card.unavailable:hover{border-color:var(--hcs-line,#E3E8EF);background:#fff;}

/* Avatar — template's blue-family variants + green/grey status dot */
#hcs_booking .hcs-bk-mech-card .av{
  position:relative;
  width:48px;height:48px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--hcs-blue-700,#1E5AA8),var(--hcs-blue-500,#3B7BE0));
  color:#fff;display:grid;place-items:center;font-weight:700;font-size:15px;letter-spacing:-.01em;
}
#hcs_booking .hcs-bk-mech-card .av.var-2{background:linear-gradient(135deg,#0F3A6B,#2563C9);}
#hcs_booking .hcs-bk-mech-card .av.var-3{background:linear-gradient(135deg,#3B7BE0,#DCE8F5);color:var(--hcs-blue-900,#0A2540);}
#hcs_booking .hcs-bk-mech-card .av.var-4{background:linear-gradient(135deg,#0A2540,#1E5AA8);}
#hcs_booking .hcs-bk-mech-card .av::after{
  content:"";position:absolute;bottom:0;right:0;
  width:13px;height:13px;border-radius:50%;
  background:#0F8B4F;border:2.5px solid #fff;
}
#hcs_booking .hcs-bk-mech-card .av.offline::after{background:var(--hcs-ink-3,#748094);}

#hcs_booking .hcs-bk-mech-card .info{flex:1;min-width:0;}

/* Top: name + stars + verified/repeat tags  (info-top is the template name; top-row kept as alias for older markup) */
#hcs_booking .hcs-bk-mech-card .info-top,
#hcs_booking .hcs-bk-mech-card .info .top-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:4px;}
#hcs_booking .hcs-bk-mech-card .info-top strong,
#hcs_booking .hcs-bk-mech-card .info strong{font-size:14.5px;font-weight:700;color:var(--hcs-blue-900,#0A2540);letter-spacing:-.01em;line-height:1.2;}

#hcs_booking .hcs-bk-mech-card .star-row{display:inline-flex;align-items:center;gap:3px;font-size:12.5px;font-weight:700;color:var(--hcs-ink-2,#475569);}
#hcs_booking .hcs-bk-mech-card .star{color:#F59E0B;font-size:13px;line-height:1;}
#hcs_booking .hcs-bk-mech-card .star-row .count{color:var(--hcs-ink-3,#748094);font-weight:500;font-size:11.5px;}

/* Secondary tag row: experience + speciality (template structure) */
#hcs_booking .hcs-bk-mech-card .tags{display:flex;flex-wrap:wrap;gap:5px;}

#hcs_booking .hcs-bk-mech-card .tag{
  display:inline-flex;align-items:center;gap:3px;
  font-size:10.5px;font-weight:700;
  background:var(--hcs-bg-2,#F7F9FC);color:var(--hcs-ink-2,#475569);
  padding:2px 7px;border-radius:5px;
  text-transform:uppercase;letter-spacing:.04em;
}
#hcs_booking .hcs-bk-mech-card .tag.verified{background:#E6F4EE;color:#0F8B4F;}
#hcs_booking .hcs-bk-mech-card .tag.verified svg{color:#0F8B4F;}
#hcs_booking .hcs-bk-mech-card .tag.repeat{background:var(--hcs-blue-50,#EEF4FB);color:var(--hcs-blue-700,#1E5AA8);}
#hcs_booking .hcs-bk-mech-card .tag.fast{background:#FEF3E0;color:#B45309;}
#hcs_booking .hcs-bk-mech-card .busy-tag{
  font-size:10.5px;font-weight:700;
  background:var(--hcs-bg-2,#F7F9FC);color:var(--hcs-ink-3,#748094);
  padding:2px 7px;border-radius:5px;
  text-transform:uppercase;letter-spacing:.04em;
}

/* Meta row: location pin (outcode) + clock (response window) with svg icons */
#hcs_booking .hcs-bk-mech-card .meta-row{font-size:12px;color:var(--hcs-ink-3,#748094);margin-top:4px;display:flex;flex-wrap:wrap;gap:10px;}
#hcs_booking .hcs-bk-mech-card .meta-row span{display:inline-flex;align-items:center;gap:4px;}
#hcs_booking .hcs-bk-mech-card .meta-row svg{color:var(--hcs-ink-3,#748094);flex-shrink:0;}

#hcs_booking .hcs-bk-mech-card .radio-r{
  width:20px;height:20px;border-radius:50%;border:2px solid var(--hcs-line,#E3E8EF);
  flex-shrink:0;display:grid;place-items:center;transition:all .15s;
}
#hcs_booking .hcs-bk-mech-card.selected .radio-r{border-color:var(--hcs-blue-700,#1E5AA8);background:var(--hcs-blue-700,#1E5AA8);}
#hcs_booking .hcs-bk-mech-card.selected .radio-r::after{content:"";width:7px;height:7px;border-radius:50%;background:#fff;}

/* Reminder note — matches template's bg-2 + dashed-border look */
#hcs_booking .hcs-bk-mech-decline-note{
  display:flex;align-items:flex-start;gap:9px;
  margin-top:14px;padding:12px 14px;
  background:var(--hcs-bg-2,#F7F9FC);border:1px dashed var(--hcs-line,#E3E8EF);border-radius:9px;
  font-size:12.5px;color:var(--hcs-ink-2,#475569);line-height:1.55;
}
#hcs_booking .hcs-bk-mech-decline-note svg{flex-shrink:0;margin-top:2px;color:var(--hcs-ink-3,#748094);}
#hcs_booking .hcs-bk-mech-decline-note strong{color:var(--hcs-blue-900,#0A2540);font-weight:700;}

#hcs_booking .hcs-bk-mech-empty{padding:18px;text-align:center;color:var(--hcs-ink-3,#748094);font-size:13.5px;background:var(--hcs-bg-2,#F7F9FC);border-radius:9px;}

/* ── Pre-payment auth gate modal (guests sign in / create account; no guest) ── */
#hcs_booking .hcs-bkauth-overlay{position:fixed;inset:0;z-index:100000;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(10,37,64,.55);backdrop-filter:blur(2px);}
#hcs_booking .hcs-bkauth-overlay.show{display:flex;}
#hcs_booking .hcs-bkauth-card{width:100%;max-width:420px;max-height:92vh;overflow:auto;background:#fff;border-radius:16px;padding:26px 24px;box-shadow:0 24px 60px rgba(10,37,64,.28);position:relative;}
#hcs_booking .hcs-bkauth-close{position:absolute;top:14px;right:14px;width:32px;height:32px;border:none;background:var(--hcs-blue-50,#eef4fb);color:var(--hcs-ink-2,#475569);border-radius:8px;font-size:18px;line-height:1;cursor:pointer;}
#hcs_booking .hcs-bkauth-close:hover{background:var(--hcs-blue-100,#dce8f5);}
#hcs_booking .hcs-bkauth-card h2{margin:0 0 4px;font-size:20px;font-weight:800;color:var(--hcs-blue-900,#0a2540);}
#hcs_booking .hcs-bkauth-sub{margin:0 0 18px;font-size:13.5px;color:var(--hcs-ink-2,#475569);line-height:1.5;}
#hcs_booking .hcs-bkauth-tabs{display:flex;gap:6px;background:var(--hcs-blue-50,#eef4fb);padding:4px;border-radius:10px;margin-bottom:18px;}
#hcs_booking .hcs-bkauth-tab{flex:1;border:none;background:transparent;padding:9px 10px;border-radius:7px;font-size:13.5px;font-weight:700;color:var(--hcs-ink-2,#475569);cursor:pointer;}
#hcs_booking .hcs-bkauth-tab.active{background:#fff;color:var(--hcs-blue-900,#0a2540);box-shadow:0 1px 3px rgba(10,37,64,.1);}
#hcs_booking .hcs-bkauth-pane{display:none;flex-direction:column;gap:12px;}
#hcs_booking .hcs-bkauth-pane.show{display:flex;}
#hcs_booking .hcs-bkauth-label{display:flex;flex-direction:column;gap:5px;font-size:12.5px;font-weight:600;color:var(--hcs-ink-2,#475569);}
#hcs_booking .hcs-bkauth-label input[type=email],
#hcs_booking .hcs-bkauth-label input[type=password],
#hcs_booking .hcs-bkauth-label input[type=text],
#hcs_booking .hcs-bkauth-label input[type=tel],
#hcs_booking .hcs-bkauth-otp input{width:100%;padding:11px 13px;border:1.5px solid var(--hcs-line,#e3e8ef);border-radius:9px;font-size:15px;color:var(--hcs-blue-900,#0a2540);background:#fff;}
#hcs_booking .hcs-bkauth-label input:focus,
#hcs_booking .hcs-bkauth-otp input:focus{outline:none;border-color:var(--hcs-blue-700,#1e5aa8);box-shadow:0 0 0 3px rgba(30,90,168,.12);}
#hcs_booking .hcs-bkauth-terms{display:flex;align-items:flex-start;gap:8px;font-size:12.5px;color:var(--hcs-ink-2,#475569);line-height:1.45;}
#hcs_booking .hcs-bkauth-terms input{margin-top:2px;flex-shrink:0;}
#hcs_booking .hcs-bkauth-terms a{color:var(--hcs-blue-700,#1e5aa8);font-weight:600;}
#hcs_booking .hcs-bkauth-otp{display:flex;flex-direction:column;gap:8px;background:var(--hcs-blue-50,#eef4fb);border:1px solid var(--hcs-blue-100,#dce8f5);border-radius:10px;padding:12px 14px;font-size:13px;color:var(--hcs-ink-2,#475569);}
#hcs_booking .hcs-bkauth-otp input{letter-spacing:.4em;text-align:center;font-weight:700;}
#hcs_booking .hcs-bkauth-link{align-self:flex-start;border:none;background:none;color:var(--hcs-blue-700,#1e5aa8);font-weight:600;font-size:12.5px;cursor:pointer;padding:0;text-decoration:underline;}
#hcs_booking .hcs-bkauth-err{margin:0;font-size:12.5px;font-weight:600;color:#b91c1c;min-height:0;}
#hcs_booking .hcs-bkauth-err:empty{display:none;}
#hcs_booking .hcs-bkauth-cta{margin-top:4px;width:100%;padding:13px;border:none;border-radius:10px;background:var(--hcs-blue-700,#1e5aa8);color:#fff;font-size:15px;font-weight:700;cursor:pointer;transition:background .15s;}
#hcs_booking .hcs-bkauth-cta:hover{background:var(--hcs-blue-900,#0a2540);}
#hcs_booking .hcs-bkauth-cta[disabled]{opacity:.6;cursor:default;}

/* MOT can't be done mobile — disabled fulfilment card. */
#hcs_booking .hcs-bk-option-card.is-disabled{opacity:.55;cursor:not-allowed;}
#hcs_booking .hcs-bk-option-card.is-disabled .hcs-bk-opt-check{display:none;}

/* Social login buttons in the pre-payment auth popup. */
#hcs_booking .hcs-bkauth-social{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:12px;}
#hcs_booking .hcs-bkauth-soc{display:flex;align-items:center;justify-content:center;gap:6px;padding:10px 8px;border:1.5px solid var(--hcs-line,#e3e8ef);border-radius:9px;background:#fff;font-size:13px;font-weight:600;color:var(--hcs-blue-900,#0a2540);cursor:pointer;}
#hcs_booking .hcs-bkauth-soc:hover{background:var(--hcs-blue-50,#eef4fb);border-color:var(--hcs-blue-100,#dce8f5);}
#hcs_booking .hcs-bkauth-soc svg{flex-shrink:0;}
#hcs_booking .hcs-bkauth-or{text-align:center;font-size:12px;color:var(--hcs-ink-3,#748094);margin-bottom:12px;}
@media(max-width:420px){#hcs_booking .hcs-bkauth-social{grid-template-columns:1fr;}}
