/* Bookvatio — Appointment Booking Form
   All styles scoped to .booknest (internal class kept for upgrade safety) to avoid conflicts with the theme.
   CSS custom properties are injected inline from PHP settings.
   ─────────────────────────────────────────────────────────────── */

/* ── Reset ─────────────────────────────────────────────────────── */
.booknest *, .booknest *::before, .booknest *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root variables (fallbacks — overridden by inline style) ─────── */
.booknest {
  --pri: #B07D62;
  --pri-l: #B07D6220;
  --text: #2C2418;
  --text2: #6B5D4F;
  --text3: #9A8E80;
  --bg: #FDFAF6;
  --bg2: #F5F0E8;
  --bg3: #EDE7DB;
  --surface: #FFFFFF;
  --border: #E5DDD0;
  --ok: #7C9A6E;
  --ok-l: #EEF4EB;
  --warn: #C4A04E;
  --warn-l: #FBF6E8;
  --bad: #C47E7E;
  --bad-l: #FBEEEE;
  --r: 12px;
  --rs: 8px;
  --rx: 6px;
  --fb: 'DM Sans', -apple-system, sans-serif;
  --fd: 'Fraunces', Georgia, serif;
  --fs-title: 18px;
  --fs-sub: 13px;
  --fs-body: 13px;
  --fs-price: 17px;
  --fs-meta: 10px;
  --fs-duration: 11px;
  --sh: 0 1px 3px rgba(44,36,24,0.06), 0 4px 12px rgba(44,36,24,0.04);
  --sh2: 0 4px 12px rgba(44,36,24,0.08), 0 12px 32px rgba(44,36,24,0.06);
  --tr: 0.2s cubic-bezier(0.4,0,0.2,1);
  --cal-ok-bg: #00942a;
  --cal-ok-text: #ffffff;
  --cal-lim-bg: #d6c400;
  --cal-lim-text: #ffffff;
  --cal-full-bg: #f70015;
  --cal-full-text: #ffffff;
  --cal-closed-bg: #0f0c0c;
  --cal-closed-text: #ffffff;
  --step-title: var(--text);
  --card-title: var(--text);
  --card-bg: var(--surface);
  --badge-text: var(--text2);
  --badge-bg: #F5F0E8;
  --summary-bg: #F5F0E8;
  --input-bg: var(--surface);
  --btn-pri-bg: var(--pri);
  --btn-pri-text: #ffffff;
  --btn-sec-bg: #F5F0E8;
  --btn-sec-text: var(--text);
  --price-color: var(--pri);
  --cal-bg: var(--surface);

  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  padding: 24px 16px;
  border-radius: var(--r);
}

/* ── Animations ────────────────────────────────────────────────── */
@keyframes bn-fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bn-pop {
  0%   { transform: scale(0); }
  100% { transform: scale(1); }
}
.booknest .bn-fu { animation: bn-fadeUp 0.3s ease forwards; }

/* ── Step indicator ─────────────────────────────────────────────── */
.booknest .bn-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 20px;
  gap: 0;
}
.booknest .bn-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  border: var(--bw) solid var(--border);
  color: var(--text3);
  background: var(--surface);
  transition: var(--tr);
  flex-shrink: 0;
}
.booknest .bn-dot.active {
  border-color: var(--pri);
  color: var(--pri);
  background: var(--pri-l);
}
.booknest .bn-dot.done {
  border-color: var(--ok);
  background: var(--ok);
  color: #fff;
  cursor: pointer;
}
.booknest .bn-dot.done:hover { opacity: 0.85; }
.booknest .bn-line {
  width: 24px; height: 2px;
  background: var(--border);
  transition: var(--tr);
  flex-shrink: 0;
}
.booknest .bn-line.done { background: var(--ok); }

/* ── Step header ─────────────────────────────────────────────────── */
.booknest .bn-step-head { margin-bottom: 16px; }
.booknest .bn-step-title {
  font-family: var(--fd);
  font-size: var(--fs-title);
  font-weight: 600;
  color: var(--step-title);
  letter-spacing: -0.3px;
  margin-bottom: 15px;
}
.booknest .bn-step-sub {
  font-size: var(--fs-sub);
  color: var(--text3);
}

/* ── Category grid (Step 1) ─────────────────────────────────────── */
.booknest .bn-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .booknest .bn-cat-grid { grid-template-columns: 1fr; } }
.booknest .bn-cat-card {
  padding: 28px 22px;
  border-radius: var(--r);
  border: var(--bw) solid var(--border);
  cursor: pointer;
  transition: var(--tr);
  background: var(--card-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
}
.booknest .bn-cat-card:hover {
  border-color: var(--text3);
  transform: translateY(-2px);
  box-shadow: var(--sh2);
}
.booknest .bn-cat-card.selected {
  border-color: var(--pri);
  background: var(--card-sel-bg, var(--pri-l));
}
.booknest .bn-cat-icon { font-size: 38px; margin-bottom: 10px; display: block; line-height: 1; }
.booknest .bn-cat-img  { width: 60px; height: 60px; object-fit: contain; border-radius: 10px; margin-bottom: 10px; }
.booknest .bn-cat-name {
  font-size: var(--fs-title);
  font-weight: 600;
  color: var(--card-title);
  margin-bottom: 5px;
}
.booknest .bn-cat-desc {
  font-size: var(--fs-sub);
  color: var(--text3);
  line-height: 1.4;
  margin-bottom: 8px;
}
.booknest .bn-cat-count {
  display: inline-block;
  background: var(--badge-bg);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: var(--fs-meta);
  font-weight: 600;
  color: var(--badge-text);
}

/* ── Service grid (Step 2) ──────────────────────────────────────── */
.booknest .bn-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.booknest .bn-svc-card {
  padding: 20px;
  border-radius: var(--rs);
  border: var(--bw) solid var(--border);
  cursor: pointer;
  transition: var(--tr);
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
}
.booknest .bn-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: transparent;
  transition: var(--tr);
}
.booknest .bn-svc-card:hover { border-color: var(--text3); transform: translateY(-1px); }
.booknest .bn-svc-card.selected { border-color: var(--pri); background: var(--card-sel-bg, var(--pri-l)); }
.booknest .bn-svc-card.selected::before { background: var(--pri); }
.booknest .bn-svc-img { width: 100%; height: 140px; object-fit: contain; border-radius: var(--rx); margin-bottom: 12px; }
.booknest .bn-svc-name {
  font-size: var(--fs-title);
  font-weight: 600;
  color: var(--card-title);
  margin-bottom: 6px;
}
.booknest .bn-svc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.booknest .bn-svc-dur { font-size: var(--fs-duration); color: var(--text3); }
.booknest .bn-svc-price {
  font-family: var(--fd);
  font-size: var(--fs-price);
  font-weight: 700;
  color: var(--price-color);
}
.booknest .bn-svc-staff {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.booknest .bn-pill {
  padding: 7px 18px;
  background: var(--badge-bg);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--badge-text);
  margin-top: 15px;
}

/* ── Staff grid (Step 3) ─────────────────────────────────────────── */
.booknest .bn-staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.booknest .bn-staff-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--rs);
  border: var(--bw) solid var(--border);
  cursor: pointer;
  transition: var(--tr);
  background: var(--card-bg);
  box-shadow: var(--sh);
}
.booknest .bn-staff-card:hover { border-color: var(--text3); }
.booknest .bn-staff-card.selected { border-color: var(--pri); background: var(--card-sel-bg, var(--pri-l)); }
.booknest .bn-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.booknest .bn-avatar img { width: 100%; height: 100%; object-fit: cover; }
.booknest .bn-staff-name { font-size: var(--fs-title); font-weight: 600; color: var(--card-title); }
.booknest .bn-staff-role { font-size: var(--fs-sub); color: var(--text3); margin-top: 2px; }
.booknest .bn-no-staff {
  padding: 20px;
  background: var(--bg2);
  border-radius: var(--rs);
  font-size: var(--fs-body);
  color: var(--text3);
  text-align: center;
}

/* ── Calendar (Step 4) ──────────────────────────────────────────── */
.booknest .bn-cal-wrap {
  background: var(--cal-bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: var(--sh);
}
.booknest .bn-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.booknest .bn-cal-month {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.booknest .bn-cal-arrow {
  width: 30px; height: 30px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--rx);
  background: var(--surface);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  transition: var(--tr);
}
.booknest .bn-cal-arrow:hover { background: var(--bg2); color: var(--text); }
.booknest .bn-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.booknest .bn-cal-dl {
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.booknest .bn-cal-day {
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  padding: 10px 4px;
  min-height: 38px;
}
.booknest .bn-cal-day.empty { cursor: default; }
.booknest .bn-cal-day.closed {
  background: var(--cal-closed-bg);
  color: var(--cal-closed-text);
  cursor: not-allowed;
  opacity: 0.7;
}
.booknest .bn-cal-day.past {
  opacity: 0.35;
  cursor: not-allowed;
  color: var(--text3);
}
.booknest .bn-cal-day.available { background: #fff; border: 1px solid var(--cal-ok-bg); color: var(--cal-ok-bg); }
.booknest .bn-cal-day.limited   { background: #fff; border: 1px solid var(--cal-lim-bg); color: var(--cal-lim-bg); }
.booknest .bn-cal-day.full      { background: #fff; border: 1px solid var(--cal-full-bg); color: var(--cal-full-bg); cursor: not-allowed; }
.booknest .bn-cal-day.selected  { background: var(--cal-ok-bg) !important; color: #fff !important; border-color: var(--cal-ok-bg) !important; }
.booknest .bn-cal-day.available:hover,
.booknest .bn-cal-day.limited:hover { filter: brightness(0.93); }
.booknest .bn-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  justify-content: center;
  font-size: 17px;
  color: var(--text3);
}
.booknest .bn-legend-item { display: flex; align-items: center; gap: 5px; }
.booknest .bn-legend-dot { width: 10px; height: 10px; border-radius: 3px; border: 1px solid var(--border); }

/* ── Working hours info ──────────────────────────────────────────── */
.booknest .bn-hours-info {
  font-size: 17px;
  color: var(--text3);
  text-align: center;
  margin-bottom: 10px;
  padding: 19px;
  background: var(--bg2);
  border-radius: var(--rx);
}

/* ── Time slots ──────────────────────────────────────────────────── */
.booknest .bn-slots-wrap { margin-bottom: 16px; }
.booknest .bn-slots-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.booknest .bn-slots-info {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 8px;
}
.booknest .bn-slots-count {
  font-size: var(--fs-body);
  color: var(--text2);
  text-align: center;
  margin-bottom: 10px;
}
.booknest .bn-slots-loading {
  font-size: var(--fs-body);
  color: var(--text3);
  text-align: center;
  padding: 20px;
}
.booknest .bn-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.booknest .bn-slot {
  padding: 10px 14px;
  border-radius: var(--rx);
  border: var(--bw) solid var(--border);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  background: var(--surface);
  font-family: var(--fb);
  color: var(--text);
}
.booknest .bn-slot:hover:not(.booked) { border-color: var(--pri); background: var(--pri-l); }
.booknest .bn-slot.selected { background: var(--pri); color: #fff; border-color: var(--pri); }
.booknest .bn-slot.booked { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* ── Form (Step 5) ───────────────────────────────────────────────── */
.booknest .bn-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 500px) { .booknest .bn-form-grid { grid-template-columns: 1fr; } }
.booknest .bn-form-full { grid-column: 1 / -1; }
.booknest .bn-field { display: flex; flex-direction: column; gap: 5px; }
.booknest .bn-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* The `input.bn-input:not(...)` selector chain matches the specificity of
   themes that style global inputs via the same `:not([type="button"])` pattern
   (Elementor's kit, Astra, GeneratePress, etc.) so our colors, padding, and
   borders are not overridden by the active theme. */
.booknest input.bn-input:not([type="button"]):not([type="submit"]),
.booknest .bn-textarea {
  padding: 10px 12px;
  border: var(--bw) solid var(--border);
  border-radius: var(--rs);
  font-family: var(--fb);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--input-bg);
  outline: none;
  transition: var(--tr);
  width: 100%;
}
/* Same specificity bump as the base rule so themes that style inputs via
   :not([type="button"]) chains can't override our focus/placeholder/autofill
   treatment. */
.booknest input.bn-input:not([type="button"]):not([type="submit"]):focus,
.booknest .bn-textarea:focus { border-color: var(--pri); box-shadow: 0 0 0 3px var(--pri-l); }
.booknest input.bn-input:not([type="button"]):not([type="submit"])::placeholder,
.booknest .bn-textarea::placeholder { color: var(--text3); opacity: 0.55; font-weight: 400; }
.booknest input.bn-input:not([type="button"]):not([type="submit"]):-webkit-autofill,
.booknest input.bn-input:not([type="button"]):not([type="submit"]):-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px var(--input-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}
.booknest .bn-textarea { resize: vertical; min-height: 80px; }

/* ── Input with leading icon ─────────────────────────────────────── */
.booknest .bn-input-wrap { position: relative; display: block; width: 100%; }
/* Specificity bumped (input.bn-input + :not chain) to outrank the same-style
   base rule above, which had to be raised to beat themes that style global
   inputs via their own :not([type="button"]) selectors. */
.booknest .bn-input-wrap-icon input.bn-input:not([type="button"]):not([type="submit"]),
.booknest .bn-input-wrap-icon .bn-textarea { padding-left: 42px; }
.booknest .bn-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.booknest .bn-input-wrap-textarea .bn-input-icon {
  top: 14px;
  transform: none;
}
.booknest .bn-input-wrap:focus-within .bn-input-icon { color: var(--pri); }

/* ── Phone with country picker ──────────────────────────────────── */
.booknest .bn-input-wrap-phone { display: flex; gap: 0; align-items: stretch; }
.booknest .bn-input-wrap-phone .bn-cp-wrap { flex: 0 0 auto; position: relative; }
.booknest .bn-input-wrap-phone input.bn-input:not([type="button"]):not([type="submit"]) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  flex: 1 1 auto;
}
.booknest .bn-cp-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px 0 12px;
  height: 100%;
  border: var(--bw) solid var(--border);
  border-right: 0;
  border-top-left-radius: var(--rs);
  border-bottom-left-radius: var(--rs);
  background: var(--input-bg);
  font-family: var(--fb);
  font-size: var(--fs-body);
  color: var(--text);
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  min-height: 42px;
}
.booknest .bn-input-wrap-phone input.bn-input:not([type="button"]):not([type="submit"]) { padding-left: 8px; }
.booknest .bn-cp-btn:hover { background: var(--pri-l); }
.booknest .bn-input-wrap-phone:focus-within .bn-cp-btn,
.booknest .bn-input-wrap-phone:focus-within input.bn-input:not([type="button"]):not([type="submit"]) { border-color: var(--pri); }
.booknest .bn-input-wrap-phone:focus-within { box-shadow: 0 0 0 3px var(--pri-l); border-radius: var(--rs); }
.booknest .bn-input-wrap-phone:focus-within input.bn-input:not([type="button"]):not([type="submit"]) { box-shadow: none; }
.booknest .bn-cp-flag { font-size: 18px; line-height: 1; }
.booknest .bn-cp-dial { font-weight: 600; font-size: 13px; padding-top: 3px; }
.booknest .bn-cp-chev { color: var(--text3); display: inline-flex; align-items: center; }

.booknest .bn-cp-pop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 280px;
  max-height: 320px;
  background: var(--surface);
  border: var(--bw) solid var(--border);
  border-radius: var(--rs);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.booknest .bn-cp-pop.open { display: flex; }
.booknest .bn-cp-search {
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 12px 14px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--text);
  background: var(--input-bg);
  outline: none;
}
.booknest .bn-cp-search:focus { background: var(--pri-l); }
.booknest .bn-cp-list { overflow-y: auto; flex: 1 1 auto; max-height: 260px; }
.booknest .bn-cp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 14px;
  border: 0;
  background: transparent;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.booknest .bn-cp-item:hover { background: var(--pri-l); }
.booknest .bn-cp-item .bn-cp-name { flex: 1 1 auto; }
.booknest .bn-cp-item .bn-cp-d { color: var(--text3); font-weight: 600; font-size: 12px; }

/* ── Booking summary ─────────────────────────────────────────────── */
.booknest .bn-summary {
  background: var(--summary-bg);
  border-radius: var(--rs);
  padding: 18px;
  margin-bottom: 16px;
}
.booknest .bn-summary-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.booknest .bn-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  color: var(--text);
  padding: 5px 0;
}
.booknest .bn-summary-row:last-child { border-top: 1px solid var(--border); padding-top: 10px; margin-top: 6px; }
.booknest .bn-summary-row:last-child .bn-summary-val {
  font-family: var(--fd);
  font-size: var(--fs-price);
  font-weight: 700;
  color: var(--price-color);
}
.booknest .bn-summary-key { font-weight: 500; }
.booknest .bn-summary-val { font-weight: 600; color: var(--text); }
.booknest .bn-pay-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  color: var(--ok);
  font-weight: 700;
  margin-top: 8px;
}

/* ── Consent ─────────────────────────────────────────────────────── */
.booknest .bn-consent {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: var(--bw) solid var(--border);
  border-radius: var(--rs);
  background: var(--bg);
  margin-bottom: 16px;
}
.booknest .bn-consent-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.booknest .bn-checkbox {
  width: 22px; height: 22px;
  border-radius: 5px;
  border: var(--bw) solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
  margin-top: 1px;
}
.booknest .bn-checkbox.checked { background: #fff; border-color: #000; }
.booknest .bn-checkbox svg { display: none; }
.booknest .bn-checkbox.checked svg { display: block; color: #000; }
.booknest .bn-consent-text { font-size: 15px; color: var(--text2); line-height: 1.4; }
.booknest .bn-consent-text a { color: #000; text-decoration: underline; font-weight: 500; }

/* ── Navigation buttons ──────────────────────────────────────────── */
.booknest .bn-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}
.booknest .bn-btn {
  padding: 10px 22px;
  border: none;
  border-radius: var(--rs);
  font-family: var(--fb);
  font-size: var(--fs-body);
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
.booknest .bn-btn-primary { background: var(--btn-pri-bg); color: var(--btn-pri-text); }
.booknest .bn-btn-primary:hover:not(:disabled) { filter: brightness(0.85); transform: translateY(-1px); }
.booknest .bn-btn-secondary { background: var(--btn-sec-bg); color: var(--btn-sec-text); }
.booknest .bn-btn-secondary:hover { filter: brightness(0.85); transform: translateY(-1px); }
.booknest .bn-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ── Confirmation screen ─────────────────────────────────────────── */
.booknest .bn-confirm {
  text-align: center;
  padding: 40px 24px;
  background: var(--ok-l);
  border-radius: var(--r);
  border: 1px solid var(--ok);
}
.booknest .bn-confirm-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--ok);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  animation: bn-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.booknest .bn-confirm-icon svg { width: 44px; height: 44px; stroke-width: 3; }
.booknest .bn-confirm-title {
  font-family: var(--fd);
  font-size: var(--fs-title);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.booknest .bn-confirm-sub { font-size: var(--fs-body); color: var(--text2); margin-bottom: 20px; }
.booknest .bn-confirm-details { text-align: left; margin: 0 auto 20px; max-width: 80%; }
@media (max-width: 640px) { .booknest .bn-confirm-details { max-width: 100%; } }

/* ── Loading ─────────────────────────────────────────────────────── */
.booknest .bn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--text3);
  font-size: var(--fs-body);
  gap: 8px;
}
.booknest .bn-spinner {
  width: 20px; height: 20px;
  border: var(--bw) solid var(--border);
  border-top-color: var(--pri);
  border-radius: 50%;
  animation: bn-spin 0.7s linear infinite;
}
@keyframes bn-spin { to { transform: rotate(360deg); } }

/* ── Error ───────────────────────────────────────────────────────── */
.booknest .bn-error {
  padding: 12px 16px;
  background: var(--bad-l);
  border: 1px solid var(--bad);
  border-radius: var(--rs);
  color: var(--bad);
  font-size: var(--fs-body);
  margin-bottom: 14px;
}

/* ── Subject Details — section headers ───────────────────────────── */
.booknest .bn-form-section {
  padding: 10px 0 4px;
  margin-top: 6px;
  border-bottom: 1px solid var(--border);
}
.booknest .bn-form-section span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── "I'm not sure" toggle ──────────────────────────────────────── */
.booknest .bn-notsure {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: var(--bw) solid var(--border);
  border-radius: var(--rs);
  background: var(--surface);
  cursor: pointer;
  transition: var(--tr);
  margin-bottom: 18px;
}
.booknest .bn-notsure:hover { border-color: var(--pri); }
.booknest .bn-notsure.active {
  border-color: var(--pri);
  background: var(--pri-l);
}
.booknest .bn-notsure-check {
  width: 22px; height: 22px;
  border-radius: 5px;
  border: var(--bw) solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
  color: var(--pri);
}
.booknest .bn-notsure.active .bn-notsure-check {
  border-color: var(--pri);
  background: #fff;
}
.booknest .bn-notsure-text {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--text);
}
.booknest .bn-notsure-msg {
  padding: 16px 18px;
  background: var(--ok-l);
  border: 1px solid var(--ok);
  border-radius: var(--rs);
  font-size: var(--fs-body);
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* ── Quote mode — price confirmed later badge ───────────────────── */
.booknest .bn-summary-row .bn-quote-val {
  font-style: italic;
  color: var(--text3);
  font-weight: 500;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .booknest .bn-cat-grid  { grid-template-columns: 1fr; }
  .booknest .bn-svc-grid  { grid-template-columns: 1fr; }
  .booknest .bn-staff-grid { grid-template-columns: 1fr; }
  .booknest .bn-actions { flex-direction: column-reverse; }
  .booknest .bn-actions .bn-btn { width: 100%; }
}
