/* ==========================================================================
   Redline Auto Detail — 2026 refresh
   Loaded AFTER styles.css. Everything here either introduces new `bk-` /
   `rl-` components or deliberately overrides an older rule. Nothing in
   styles.css was deleted, so removing this one <link> reverts the site.
   ========================================================================== */

:root {
  /* Extra tokens layered on top of the existing brand palette. */
  --bg-card: #121212;
  --bg-raise: #171717;
  --line-soft: #232323;
  --line-hard: #333;
  --ok: #4ade80;
  --ok-dim: #14361f;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-lift: 0 1px 0 rgba(255,255,255,.04) inset, 0 18px 40px -24px rgba(0,0,0,.9);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

*:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ==========================================================================
   BOOKING PAGE
   ========================================================================== */

/* ---------- Page header ---------- */
.bk-head {
  position: relative;
  padding: 64px 6% 40px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(120% 140% at 12% 0%, rgba(255,134,53,.13), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.bk-head-inner { max-width: 1180px; margin: 0 auto; }
.bk-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 7px 13px;
  border: 1px solid rgba(255,134,53,.32);
  border-radius: 999px;
  background: rgba(255,134,53,.07);
  margin-bottom: 20px;
}
.bk-head h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.bk-lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}
.bk-assure {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 26px 0 0;
  padding: 0;
}
.bk-assure li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: #d6d6d6;
}
.bk-assure span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(74,222,128,.13);
  color: var(--ok);
  font-size: 11px;
  font-weight: 700;
}

/* ---------- Layout ---------- */
.bk-wrap { max-width: 1180px; margin: 0 auto; padding: 44px 6% 90px; }

.bk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 40px;
  align-items: start;
}

/* ---------- Promo + success ---------- */
.bk-promo {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,134,53,.34);
  background: linear-gradient(90deg, rgba(255,134,53,.15), rgba(255,134,53,.04));
  font-size: 14.5px;
  color: #ededed;
}
.bk-promo { line-height: 1.55; }
/* script.js replaces this banner's inner HTML with a plain text string, so
   these rules must style loose text nodes, not a fixed child structure. */
.bk-promo b { color: var(--brand); font-weight: 800; }
.bk-promo-tag {
  flex: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  color: #0a0a0a;
  background: var(--brand);
  padding: 7px 11px;
  border-radius: 8px;
}

.success-msg.bk-success {
  text-align: left;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  margin: 0 0 26px;
  border-radius: var(--radius);
  background: var(--ok-dim);
  border-color: rgba(74,222,128,.4);
}
.success-msg.bk-success.show { display: flex; }
.bk-success-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(74,222,128,.16);
  color: var(--ok);
  font-size: 18px;
  font-weight: 700;
}
.bk-success b { display: block; font-size: 17px; color: #b9f6cd; margin-bottom: 5px; }
.bk-success p { margin: 0; color: #86d4a3; font-size: 14.5px; line-height: 1.55; }

/* ---------- Steps ---------- */
.bk-step {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-card), #0e0e0e);
  padding: 26px 26px 28px;
  margin: 0 0 18px;
  box-shadow: var(--shadow-lift);
}
.bk-step-last { margin-bottom: 0; }
.bk-step legend {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
  padding: 0;
  margin-bottom: 22px;
}
.bk-num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  background: rgba(255,134,53,.11);
  border: 1px solid rgba(255,134,53,.28);
}

/* ---------- Fields ---------- */
.bk-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.bk-field { display: flex; flex-direction: column; min-width: 0; }
.bk-field-wide { grid-column: 1 / -1; }

.bk-field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9b9b9b;
  margin-bottom: 8px;
}
.bk-field label em { font-style: normal; color: var(--brand); }
.bk-field label em.bk-opt {
  color: #6d6d6d;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}

.bk-field input,
.bk-select select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #0d0d0d;
  border: 1px solid var(--line-hard);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  appearance: none;
}
.bk-field input::placeholder { color: #5e5e5e; }
.bk-field input:hover,
.bk-select select:hover { border-color: #454545; }
.bk-field input:focus,
.bk-select select:focus {
  outline: none;
  border-color: var(--brand);
  background: #101010;
  box-shadow: 0 0 0 3px rgba(255,134,53,.15);
}
/* Only scold the customer once they have actually typed something wrong. */
.bk-field input:not(:placeholder-shown):invalid {
  border-color: #a33;
  box-shadow: 0 0 0 3px rgba(200,50,50,.12);
}
#date { cursor: pointer; }

.bk-select { position: relative; }
.bk-select select { padding-right: 40px; cursor: pointer; }
.bk-select-caret {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--brand);
  font-size: 12px;
}
.bk-select select option,
.bk-select select optgroup { background: #141414; color: var(--text); }

.bk-hint {
  margin-top: 7px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #7d7d7d;
}
.bk-hint a { color: var(--brand); text-decoration: none; font-weight: 600; }
.bk-hint a:hover { text-decoration: underline; }

.bk-fine {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: #6f6f6f;
  line-height: 1.55;
}
.bk-fine a { color: #9a9a9a; }

/* ---------- Checkboxes / add-ons ---------- */
.checks-group.bk-addons,
.checks-group.bk-optins {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}
.checks-group.bk-addons { margin-top: 24px; }
.addons-group-title {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9b9b9b;
  margin: 0 0 12px;
}

label.bk-addon {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid var(--line-hard);
  border-radius: 12px;
  background: #0d0d0d;
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
label.bk-addon:hover { border-color: #4a4a4a; background: #101010; }
label.bk-addon:has(input:checked) {
  border-color: rgba(255,134,53,.5);
  background: rgba(255,134,53,.06);
}
label.bk-addon:has(input:disabled) { cursor: default; opacity: .9; }
label.bk-addon:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(255,134,53,.18); }

label.bk-addon input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.bk-addon-box {
  flex: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid #4d4d4d;
  border-radius: 6px;
  background: #0a0a0a;
  transition: all .16s var(--ease);
}
.bk-addon-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(.4);
  opacity: 0;
  transition: all .16s var(--ease);
}
label.bk-addon input:checked + .bk-addon-box {
  background: var(--brand);
  border-color: var(--brand);
}
label.bk-addon input:checked + .bk-addon-box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
label.bk-addon input:disabled + .bk-addon-box { background: #2f6b43; border-color: #2f6b43; }
.bk-addon-body { font-size: 14.5px; line-height: 1.5; color: #dcdcdc; }
.bk-addon-body b { font-weight: 700; }

/* ---------- Sticky summary ---------- */
.bk-side {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bk-summary {
  border: 1px solid var(--line-hard);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-raise), #0d0d0d);
  padding: 22px;
  box-shadow: var(--shadow-lift);
}
.bk-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.bk-summary-dot {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8a8a8a;
  background: #1d1d1d;
  border: 1px solid var(--line-hard);
  padding: 5px 10px;
  border-radius: 999px;
}
.bk-summary-dot.is-active { color: var(--brand); border-color: rgba(255,134,53,.35); background: rgba(255,134,53,.08); }
.bk-summary-dot.is-ready { color: var(--ok); border-color: rgba(74,222,128,.35); background: rgba(74,222,128,.1); }

.bk-lines { padding: 6px 0; }
.bk-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed #212121;
}
.bk-line:last-child { border-bottom: 0; }
.bk-line-main { min-width: 0; }
.bk-line-note {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 3px;
}
.bk-line-name { font-size: 14px; color: #d8d8d8; line-height: 1.4; }
.bk-line-name.is-strong { font-weight: 700; color: #fff; font-size: 15px; }
.bk-line-val { flex: none; font-size: 14px; font-weight: 700; color: #fff; }
.bk-line-val.is-muted { color: var(--ok); font-weight: 600; font-size: 13px; }
.bk-line-meta .bk-line-name { color: #a5a5a5; }

.bk-empty { text-align: center; padding: 26px 10px; }
.bk-empty-mark { font-size: 28px; opacity: .35; margin-bottom: 10px; }
.bk-empty p { margin: 0; font-size: 13.5px; color: #6f6f6f; line-height: 1.55; }

.bk-total-block {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.bk-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.bk-discount { color: var(--ok); margin-bottom: 10px; font-weight: 600; }
.bk-total { font-family: 'Orbitron', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.bk-total span:last-child { font-size: 25px; color: var(--brand); text-shadow: var(--glow); }
.bk-total-note { margin: 12px 0 0; font-size: 12px; line-height: 1.5; color: #6f6f6f; }

.submit-btn.bk-submit {
  width: 100%;
  margin: 18px 0 0;
  padding: 16px;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 12px;
}
.submit-btn.bk-submit:disabled { opacity: .6; cursor: wait; }

.bk-side-trust {
  list-style: none;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-side-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #8d8d8d;
}
.bk-side-trust span { font-size: 13px; opacity: .85; }

.bk-help {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--bg-2);
  text-align: center;
}
.bk-help b { display: block; font-size: 14.5px; color: #fff; margin-bottom: 5px; }
.bk-help p { margin: 0 0 14px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.bk-help .ghost-btn { display: inline-block; }

/* ---------- Mobile total bar ---------- */
.bk-mobilebar { display: none; }

/* ---------- flatpickr, brand-matched ---------- */
.flatpickr-calendar {
  background: #121212 !important;
  border: 1px solid var(--line-hard) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.9) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #0a0a0a !important;
  font-weight: 700;
}
.flatpickr-day:hover { background: #252525 !important; }
.flatpickr-day.today { border-color: var(--brand) !important; }
.flatpickr-day.flatpickr-disabled {
  color: #3a3a3a !important;
  text-decoration: line-through;
  opacity: .55;
}
.flatpickr-months .flatpickr-month { color: var(--brand) !important; fill: var(--brand) !important; }

/* ==========================================================================
   FRONT PAGE REFRESH
   ========================================================================== */

/* ---------- Hero ---------- */
.hero { min-height: 84vh; padding: 76px 6% 72px; }
.hero-bg-overlay {
  background:
    linear-gradient(180deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.86) 55%, var(--bg) 100%),
    radial-gradient(90% 80% at 15% 40%, rgba(255,134,53,.13), transparent 60%) !important;
}
.hero-inner { gap: 56px; }
.hero-pill {
  font-size: 11px;
  letter-spacing: .2em;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,134,53,.3);
  background: rgba(255,134,53,.07);
  backdrop-filter: blur(6px);
}
.hero h1 {
  /* Capped so "Make Your Ride / Showroom New." holds two lines and the CTAs
     stay above the fold on a laptop. */
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero .lede {
  font-size: 18px;
  line-height: 1.62;
  max-width: 50ch;
  color: #c9c9c9;
}
.hero-cta { gap: 14px; margin-top: 34px; }
.hero-trust { margin-top: 38px; gap: 12px 28px; }
.hero-trust-item { font-size: 13.5px; color: #b0b0b0; }
.ht-icon { color: var(--brand); }

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-hard);
  background: rgba(18,18,18,.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lift);
}
.hero-card-link { border-radius: 12px; transition: background .18s var(--ease), transform .18s var(--ease); }
.hero-card-link:hover { background: rgba(255,134,53,.09); transform: translateX(3px); }

/* ---------- Buttons ---------- */
.cta-btn {
  border-radius: 11px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
}
.cta-btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 10px 24px -10px rgba(255,134,53,.7); }
.cta-btn:active { transform: translateY(0); }
.cta-btn.big { padding: 16px 30px; font-size: 15.5px; }
.ghost-btn {
  border-radius: 11px;
  border: 1px solid var(--line-hard);
  transition: border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.ghost-btn:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* ---------- Section rhythm ---------- */
.section { padding: 96px 6%; }
.section h2 {
  font-size: clamp(30px, 4.4vw, 45px);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.section > .subtitle {
  color: #8f8f8f;
  font-size: 16.5px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Service cards ---------- */
.cards { gap: 22px; }
.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--bg-card), #0d0d0d);
  padding: 30px 26px 32px;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: #3a3a3a;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,.95);
}
.card.featured {
  border-color: rgba(255,134,53,.45);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,134,53,.11), transparent 60%),
    linear-gradient(180deg, var(--bg-card), #0d0d0d);
}
.card.featured:hover { box-shadow: 0 24px 60px -28px rgba(255,134,53,.45); }
.card-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: rgba(255,134,53,.1);
  border: 1px solid rgba(255,134,53,.2);
  font-size: 22px;
  margin-bottom: 18px;
}
.card h3 { font-size: 23px; letter-spacing: -.01em; margin-bottom: 6px; }
.card > p { color: #9a9a9a; font-size: 14.5px; line-height: 1.55; }
.card-list li { font-size: 14px; line-height: 1.5; color: #c2c2c2; }
.card .price {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -.01em;
}
.badge { border-radius: 999px; letter-spacing: .1em; font-size: 10.5px; }

/* ---------- Reviews / about / FAQ polish ---------- */
.review-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--bg-card), #0d0d0d);
}
.review-avatar {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #0a0a0a;
  font-weight: 800;
}
.review-stars { color: var(--brand); letter-spacing: .1em; }
.faq-item {
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.faq-item:hover { border-color: #3a3a3a; }
.faq-item[open] { border-color: rgba(255,134,53,.35); background: rgba(255,134,53,.04); }
.faq-item summary { font-size: 15.5px; font-weight: 600; }
.about-stat b { font-family: 'Orbitron', sans-serif; text-shadow: var(--glow); }
.contact-link { border-radius: 12px; transition: transform .18s var(--ease), border-color .18s var(--ease); }
.contact-link:hover { transform: translateX(4px); border-color: rgba(255,134,53,.4); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1040px) {
  .bk-grid { grid-template-columns: 1fr; gap: 26px; }
  .bk-side { position: static; }
  /* The summary is reference material on mobile; the real CTA is the bar. */
  .submit-btn.bk-submit { display: none; }
  .bk-side-trust { margin-top: 4px; }

  .bk-mobilebar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(13,13,13,.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-hard);
  }
  .bk-mobilebar[hidden] { display: none; }
  .bk-mobilebar-fig small {
    display: block;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8a8a8a;
  }
  .bk-mobilebar-fig b {
    font-family: 'Orbitron', sans-serif;
    font-size: 21px;
    color: var(--brand);
  }
  .bk-mobilebar .cta-btn { padding: 14px 22px; }
  .bk-wrap { padding-bottom: 120px; }
  /* Keep the floating "Text Us" button clear of the total bar. */
  .floating-contact { bottom: 92px; }
}

@media (max-width: 700px) {
  .bk-head { padding: 40px 6% 30px; }
  .bk-fields { grid-template-columns: 1fr; }
  .bk-step { padding: 22px 18px 24px; border-radius: var(--radius); }
  .bk-assure { gap: 8px 18px; }
  .bk-assure li { font-size: 13px; }
  .section { padding: 68px 6%; }
  /* 16px minimum stops iOS Safari zooming in on focus. */
  .bk-field input,
  .bk-select select { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .cta-btn:hover, .card:hover, .contact-link:hover, .ghost-btn:hover { transform: none; }
}

/* ---------- Reviews: summary bar + stacked review column ---------- */
.review-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 28px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--bg-card), #0d0d0d);
}
.review-summary .rs-score {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.review-summary .rs-stars { color: var(--brand); letter-spacing: .12em; font-size: 15px; }
.review-summary .rs-meta { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
#reviews { text-align: center; }
#reviews .reviews-grid { text-align: left; }

.reviews-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reviews-col .review-card { height: auto; }

/* ---------- Availability badge (admin-toggleable) ---------- */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 4px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(110, 224, 142, .35);
  background: rgba(110, 224, 142, .10);
  color: #8ff0b0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}
.avail-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #6ee08e;
  box-shadow: 0 0 0 0 rgba(110, 224, 142, .6);
  animation: availPulse 2s infinite;
}
@keyframes availPulse {
  70%  { box-shadow: 0 0 0 9px rgba(110, 224, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 224, 142, 0); }
}
@media (prefers-reduced-motion: reduce) { .avail-dot { animation: none; } }
