/* =========================================================
   Blue Crown Barbers — Premium Booking Page
   ========================================================= */
:root {
  --bk-blue: #0A66C2;
  --bk-blue-dark: #1E3A8A;
  --bk-accent: #3B82F6;
  --bk-bg: #F8FAFC;
  --bk-card: #FFFFFF;
  --bk-navy: #0F172A;
  --bk-muted: #64748B;
  --bk-soft: #E8F2FC;
  --bk-radius: 18px;
  --bk-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --bk-grad: linear-gradient(135deg, #0A66C2 0%, #1E3A8A 100%);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

.bk-page {
  font-family: var(--font-body) !important;
  background: var(--bk-bg) !important;
  min-height: 100vh;
  color: var(--bk-navy);
}

.bk-page h1, .bk-page h2, .bk-page h3, .bk-page h4, .bk-page h5, .bk-page h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--bk-navy);
}

/* Header */
.bk-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.bk-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bk-header .logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.bk-header .home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--bk-blue) !important;
  text-decoration: none !important;
  background: var(--bk-soft);
  padding: 10px 18px;
  border-radius: 50px;
  transition: .3s;
}

.bk-header .home-link:hover {
  background: var(--bk-grad);
  color: #fff !important;
}

/* Page intro */
.bk-intro {
  padding: 36px 0 10px;
  text-align: center;
}

.bk-intro h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.bk-intro p {
  color: var(--bk-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Layout */
.bk-layout {
  padding-bottom: 60px;
  max-width: 1200px;
}

.wizard-topbar { display: none !important; }

.wizard-container {
  max-width: 100% !important;
  margin: 0 !important;
}

.wizard-container > .card.shadow,
.wizard-container > .card {
  border: none !important;
  border-radius: var(--bk-radius) !important;
  box-shadow: var(--bk-shadow) !important;
  overflow: visible;
  background: var(--bk-card);
}

.wizard-container .card-header {
  display: none !important;
}

.wizard-container .card-body {
  padding: 28px 28px 12px !important;
}

.wizard-container .card-footer {
  background: #fff !important;
  border-top: 1px solid rgba(15,23,42,.06) !important;
  padding: 18px 28px !important;
}

/* LEFT SIDEBAR */
.bk-sidebar {
  position: sticky;
  top: 90px;
}

.bk-side-card {
  background: #fff;
  border-radius: var(--bk-radius);
  box-shadow: var(--bk-shadow);
  padding: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(15,23,42,.05);
}

.bk-side-card h3 {
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--bk-navy);
}

/* Vertical stepper (reuses .progress-step IDs) */
.bk-stepper-vert {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bk-stepper-vert .bk-step-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 22px;
}

.bk-stepper-vert .bk-step-row:last-child { padding-bottom: 0; }

.bk-stepper-vert .bk-step-row:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: #E2E8F0;
}

.bk-stepper-vert .bk-step-row.done::before {
  background: var(--bk-grad);
}

.bk-stepper-vert .progress-step {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  position: relative;
  z-index: 1;
  transition: .35s ease;
}

.bk-stepper-vert .progress-step.pending {
  background: #F1F5F9 !important;
  color: #94A3B8 !important;
  border: 2px solid #E2E8F0;
}

.bk-stepper-vert .progress-step.active {
  background: var(--bk-grad) !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 0 0 6px rgba(10,102,194,.18);
  animation: bkPulse 1.8s ease-in-out infinite;
}

.bk-stepper-vert .progress-step.completed {
  background: #16A34A !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 0 0 4px rgba(22,163,74,.15);
}

.bk-stepper-vert .step-title {
  font-size: 14px !important;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--bk-navy);
  margin-top: 6px !important;
  text-align: left !important;
}

.bk-stepper-vert .step-desc {
  font-size: 12px;
  color: var(--bk-muted);
  margin-top: 2px;
}

/* Hide old horizontal lines */
.bk-stepper-vert .progress-line { display: none !important; }

@keyframes bkPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(10,102,194,.15); }
  50% { box-shadow: 0 0 0 10px rgba(10,102,194,.08); }
}

/* Live summary */
.bk-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(15,23,42,.08);
  font-size: 14px;
}

.bk-summary-row:last-child { border-bottom: none; }

.bk-summary-row .lbl { color: var(--bk-muted); }
.bk-summary-row .val {
  font-weight: 600;
  color: var(--bk-navy);
  text-align: right;
  max-width: 60%;
}

.bk-summary-total {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: var(--bk-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
}

.bk-summary-total strong {
  font-size: 1.35rem;
  color: var(--bk-blue);
}

/* Trust badges */
.bk-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--bk-muted);
}

.bk-trust .item i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--bk-soft);
  color: var(--bk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Steps */
.step-content {
  display: none;
  animation: bkFadeIn .35s ease;
}

.step-content.active {
  display: block !important;
}

@keyframes bkFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-content > h5 {
  font-size: 1.35rem !important;
  margin-bottom: 6px !important;
}

.step-content > p.text-muted,
.step-content .text-muted.mb-3,
.step-content .text-muted.mb-4 {
  color: var(--bk-muted) !important;
}

/* Method toggle as premium cards */
.toggle-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 16px !important;
  border: none !important;
  background: transparent !important;
  overflow: visible !important;
  width: 100% !important;
  border-radius: 0 !important;
}

.toggle-tabs .tab-btn {
  flex: none !important;
  border-radius: var(--bk-radius) !important;
  border: 2px solid #E2E8F0 !important;
  background: #fff !important;
  color: var(--bk-navy) !important;
  padding: 28px 20px !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-align: center;
  transition: .3s ease !important;
  position: relative;
  box-shadow: 0 4px 16px rgba(15,23,42,.04);
}

.toggle-tabs .tab-btn::before {
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 28px;
  color: var(--bk-blue);
  margin-bottom: 12px;
}

#byServiceBtn::before { content: "\f0c4"; } /* scissors */
#byStaffBtn::before { content: "\f007"; } /* user */

.toggle-tabs .tab-btn:hover {
  border-color: var(--bk-accent) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10,102,194,.15);
}

.toggle-tabs .tab-btn.active {
  background: linear-gradient(180deg, #F0F7FF 0%, #fff 100%) !important;
  border-color: var(--bk-blue) !important;
  color: var(--bk-blue) !important;
  box-shadow: 0 0 0 4px rgba(10,102,194,.12), 0 12px 28px rgba(10,102,194,.12);
}

.toggle-tabs .tab-btn.active::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bk-grad);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 26px;
}

/* Service / staff cards */
.service-card,
.staff-card {
  border: 2px solid #E2E8F0 !important;
  border-radius: var(--bk-radius) !important;
  background: #fff !important;
  transition: .35s ease !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15,23,42,.04);
}

.service-card:hover,
.staff-card:hover {
  transform: translateY(-6px);
  border-color: var(--bk-accent) !important;
  box-shadow: 0 16px 36px rgba(10,102,194,.14) !important;
}

.service-card.active {
  border: 2px solid var(--bk-blue) !important;
  background: linear-gradient(180deg, #F0F7FF, #fff) !important;
  box-shadow: 0 0 0 4px rgba(10,102,194,.12), 0 14px 32px rgba(10,102,194,.14) !important;
  position: relative;
}

.service-card.active::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bk-grad);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .fw-bold.text-danger,
.service-card .text-danger {
  color: var(--bk-blue) !important;
  font-family: var(--font-head);
}

.staff-card {
  position: relative;
  min-height: 96px;
}

.staff-card.selected {
  background: linear-gradient(180deg, #F0F7FF, #fff) !important;
  color: var(--bk-navy) !important;
  border: 2px solid var(--bk-blue) !important;
  box-shadow: 0 0 0 4px rgba(10,102,194,.12), 0 14px 32px rgba(10,102,194,.14) !important;
}

.staff-card.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bk-grad);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-card.selected .badge {
  background: #DCFCE7 !important;
  color: #15803D !important;
  border-color: #86EFAC !important;
  margin-right: 28px;
}

.staff-card img {
  width: 56px !important;
  height: 56px !important;
  object-fit: cover;
  border: 3px solid var(--bk-soft);
}

/* Category wrappers */
#byServicePanel .card,
#byStaffPanel .card,
#StaffByServiceStep .card,
#ServiceByStaffStep .card {
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#byServicePanel .card > .fw-bold,
#ServiceByStaffStep label.form-label,
#byStaffPanel label.form-label,
#StaffByServiceStep label.form-label,
#ServiceByStaffStep label {
  font-family: var(--font-head);
  color: var(--bk-navy);
}

/* ========== Date & Time — premium booking UI ========== */
.bk-dt-head {
  margin-bottom: 18px;
}

.bk-dt-head h5 {
  font-size: 1.35rem;
}

.bk-dt-context {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.bk-dt-chip {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .04);
  min-width: 0;
}

.bk-dt-chip .chip-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--bk-muted);
  margin-bottom: 4px;
}

.bk-dt-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--bk-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bk-dt-chip-price strong {
  color: var(--bk-blue);
}

.bk-datetime {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.slot-calendar {
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08) !important;
  padding: 24px !important;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.bk-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.bk-cal-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--bk-navy);
  letter-spacing: -.01em;
}

.bk-cal-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--bk-soft);
  color: var(--bk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(10, 102, 194, .1);
}

.bk-cal-nav:hover {
  background: var(--bk-grad);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(10, 102, 194, .28);
}

#calendarTable {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

#calendarTable th {
  font-size: 12px;
  color: var(--bk-muted) !important;
  font-weight: 700 !important;
  padding: 10px 2px 12px !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}

#calendarTable td {
  padding: 5px !important;
  vertical-align: middle;
  border: none !important;
}

.bk-day-btn {
  width: 100%;
  aspect-ratio: 1;
  max-width: 52px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: none;
  border-radius: 16px;
  background: #fff;
  color: var(--bk-navy);
  font-weight: 600;
  font-size: 15px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 0 0 1px #E8EEF5;
}

.bk-day-num {
  line-height: 1;
}

.bk-day-avail-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22C55E;
  display: block;
}

.bk-day-btn:hover:not(:disabled):not(.is-disabled) {
  background: var(--bk-soft);
  color: var(--bk-blue);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 18px rgba(10, 102, 194, .12);
}

.bk-day-btn.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 2px var(--bk-blue);
  color: var(--bk-blue);
}

.bk-day-btn.is-selected {
  background: var(--bk-grad) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(10, 102, 194, .32) !important;
  transform: scale(1.06);
  animation: bkDaySelect .35s ease;
}

.bk-day-btn.is-selected .bk-day-avail-dot {
  background: #fff;
}

.bk-day-btn.is-disabled,
.bk-day-btn:disabled {
  background: #F1F5F9 !important;
  color: #94A3B8 !important;
  cursor: not-allowed;
  opacity: .9;
  box-shadow: none !important;
  transform: none !important;
}

.bk-day-btn.is-disabled .bk-day-avail-dot {
  display: none;
}

.bk-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  color: var(--bk-muted);
  font-weight: 600;
}

.bk-cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.bk-dot-avail { background: #22C55E; }
.bk-dot-today { background: var(--bk-blue); }
.bk-dot-off { background: #CBD5E1; }

@keyframes bkDaySelect {
  from { transform: scale(.92); }
  to { transform: scale(1.06); }
}

.bk-time-panel {
  height: 100%;
  border: none;
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  min-height: 420px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
  display: flex;
  flex-direction: column;
}

.bk-time-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.bk-time-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bk-navy);
}

.bk-time-sub {
  font-size: 13px;
  color: var(--bk-muted);
  margin-top: 2px;
}

.bk-slot-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  color: #047857;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.bk-slot-count-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .18);
}

.bk-slot-scroll {
  flex: 1;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #BFDBFE transparent;
}

.bk-slot-scroll::-webkit-scrollbar {
  width: 6px;
}

.bk-slot-scroll::-webkit-scrollbar-thumb {
  background: #BFDBFE;
  border-radius: 99px;
}

.bk-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bk-slot-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 40px 16px;
  text-align: center;
  border-radius: 16px;
  background: #F8FAFC;
  color: var(--bk-muted);
  font-weight: 600;
}

.bk-slot-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF5FC 100%);
  animation: bkFadeIn .4s ease;
}

.bk-empty-illu {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  color: var(--bk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(10, 102, 194, .12);
}

.bk-slot-empty-state h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--bk-navy);
  margin-bottom: 6px;
}

.bk-slot-empty-state p {
  color: var(--bk-muted);
  margin: 0;
  font-size: 14px;
}

/* Premium slot cards */
.slot-btn.bk-slot-card,
.bk-slot-card {
  width: 100%;
  border-radius: 16px !important;
  border: 1.5px solid #E2E8F0 !important;
  background: #fff !important;
  color: var(--bk-navy) !important;
  padding: 14px 12px !important;
  font-weight: 600 !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-align: left;
  position: relative;
  overflow: hidden;
  animation: bkFadeIn .35s ease both;
}

.bk-slot-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,102,194,.18) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0);
  transition: .45s ease;
  pointer-events: none;
}

.bk-slot-card:active::after {
  opacity: 1;
  transform: scale(2.2);
  transition: 0s;
}

.bk-slot-card-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  background: var(--bk-soft);
  color: var(--bk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: .28s ease;
}

.bk-slot-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.bk-slot-card-time {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.bk-slot-card-duration {
  font-size: 12px;
  color: var(--bk-muted);
  font-weight: 500;
}

.bk-slot-card-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.bk-slot-card:hover {
  border-color: var(--bk-blue) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(10, 102, 194, .14);
}

.bk-slot-card.active {
  background: var(--bk-grad) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(10, 102, 194, .3);
  transform: scale(1.03);
}

.bk-slot-card.active .bk-slot-card-icon {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.bk-slot-card.active .bk-slot-card-duration {
  color: rgba(255,255,255,.85);
}

.bk-slot-card.active .bk-slot-card-check {
  display: inline-flex;
}

.slot-btn:disabled,
.slot-btn.is-disabled {
  background: #F1F5F9 !important;
  color: #94A3B8 !important;
  border-color: #E2E8F0 !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Forms */
.form-control {
  border-radius: 14px !important;
  border: 1.5px solid #E2E8F0 !important;
  padding: 14px 16px !important;
  font-size: 15px;
  transition: .25s;
}

.form-control:focus {
  border-color: var(--bk-blue) !important;
  box-shadow: 0 0 0 4px rgba(10,102,194,.12) !important;
}

.form-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--bk-navy);
  margin-bottom: 6px;
}

/* Summary confirm card */
.summary-card .summary-section {
  border: 1px solid rgba(10,102,194,.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 16px rgba(15,23,42,.04);
  margin-bottom: 14px !important;
}

.summary-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bk-soft);
  color: var(--bk-blue) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.summary-label {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--bk-navy);
}

.summary-value { color: var(--bk-muted); }

/* Buttons */
#prevBtn, #nextBtn {
  border-radius: 50px !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  padding: 12px 26px !important;
  min-height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease !important;
}

#nextBtn.btn-primary,
.bk-page .btn-primary {
  background: var(--bk-grad) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(10,102,194,.3);
}

#nextBtn:hover:not(:disabled),
.bk-page .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10,102,194,.4) !important;
}

#prevBtn {
  border: 1.5px solid #E2E8F0 !important;
  color: var(--bk-navy) !important;
  background: #fff !important;
}

#prevBtn:hover:not(:disabled) {
  border-color: var(--bk-blue) !important;
  color: var(--bk-blue) !important;
  transform: translateY(-2px);
}

/* Success modal */
#SuccessMsgModal .modal-content {
  border: none;
  border-radius: var(--bk-radius);
  overflow: hidden;
}

#SuccessMsgModal .success-message {
  color: var(--bk-blue) !important;
  font-family: var(--font-head);
}

/* Loader overlay */
.preloader {
  background: rgba(248,250,252,.85) !important;
  backdrop-filter: blur(6px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .bk-sidebar { position: static; margin-bottom: 8px; }
  .bk-stepper-vert {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }
  .bk-stepper-vert .bk-step-row {
    flex-direction: column;
    align-items: center;
    min-width: 88px;
    padding-bottom: 0;
    text-align: center;
  }
  .bk-stepper-vert .bk-step-row::before { display: none; }
  .bk-stepper-vert .step-title { font-size: 11px !important; text-align: center !important; }
  .bk-stepper-vert .step-desc { display: none; }
  .toggle-tabs { grid-template-columns: 1fr; }
  .wizard-container .card-body { padding: 20px 16px 8px !important; }
  .bk-slot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .slot-calendar,
  .bk-time-panel { max-width: 100% !important; }
  .bk-slot-scroll { max-height: none !important; overflow: visible !important; }
}

@media (max-width: 575.98px) {
  .bk-slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .bk-day-btn { max-width: 48px; font-size: 14px; border-radius: 14px; }
  .bk-time-header { flex-direction: column; align-items: flex-start !important; }
  .bk-dt-info-card { padding: 14px 16px; }
  .bk-slot-chip { font-size: 13px !important; height: 52px !important; }
  #prevBtn, #nextBtn { width: 100%; }
  .wizard-container .card-footer .d-flex {
    flex-direction: column-reverse;
    gap: 10px;
  }
}

/* Sidebar summary polish */
.bk-summary-card {
  background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 55%) !important;
  border: 1px solid rgba(10,102,194,.1) !important;
}

.bk-summary-card h3 {
  display: flex;
  align-items: center;
}

.bk-summary-card .bk-summary-row .lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bk-summary-card .bk-summary-row .lbl i {
  color: var(--bk-blue);
  font-size: 14px;
}

.bk-summary-card .bk-summary-total {
  background: #fff;
  border: 1px solid rgba(10,102,194,.12);
  box-shadow: 0 8px 20px rgba(10,102,194,.08);
}

/* Confirm Step 5 */
.bk-confirm-head {
  margin-bottom: 20px;
}

.bk-confirm-head h5 {
  font-size: 22px;
  font-weight: 700;
}

.bk-confirm-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bk-confirm-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.05);
  transition: box-shadow .3s ease, transform .3s ease;
  animation: bkFadeIn .4s ease both;
}

.bk-confirm-card:hover {
  box-shadow: 0 16px 36px rgba(10,102,194,.12);
  transform: translateY(-2px);
}

.bk-confirm-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bk-confirm-card-head h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--bk-navy);
}

.bk-confirm-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bk-soft);
  color: var(--bk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bk-confirm-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bk-confirm-meta {
  background: #F8FAFC;
  border-radius: 14px;
  padding: 14px;
}

.bk-confirm-meta .meta-lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bk-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.bk-confirm-meta .meta-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--bk-navy);
  font-family: var(--font-head);
}

.bk-service-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(15,23,42,.08);
}

.bk-service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bk-service-item:first-child {
  padding-top: 0;
}

.service-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--bk-navy);
  margin-bottom: 6px;
}

.bk-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--bk-muted);
}

.bk-service-meta i {
  color: var(--bk-blue);
}

.service-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--bk-blue);
  text-align: right;
}

.bk-service-sub {
  font-size: 12px;
  color: var(--bk-muted);
  text-align: right;
  margin-top: 2px;
}

.bk-staff-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bk-staff-avatar-img,
.bk-staff-avatar-fallback,
.staff-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bk-staff-avatar-fallback,
.staff-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bk-grad);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  border: 3px solid var(--bk-soft);
}

.staff-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--bk-navy);
}

.bk-staff-role {
  font-size: 13px;
  color: var(--bk-muted);
  margin-top: 2px;
}

.bk-staff-badge {
  margin-left: auto;
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.bk-confirm-field {
  background: #F8FAFC;
  border-radius: 14px;
  padding: 14px;
  height: 100%;
}

.bk-confirm-field .field-lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bk-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.bk-confirm-field .field-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--bk-navy);
  word-break: break-word;
}

.bk-confirm-pay {
  background: linear-gradient(135deg, #0A66C2 0%, #1E3A8A 100%);
  color: #fff;
  border: none;
}

.bk-confirm-pay .bk-confirm-card-head h6,
.bk-confirm-pay .bk-pay-row span,
.bk-confirm-pay .bk-pay-row strong {
  color: #fff;
}

.bk-confirm-pay .bk-confirm-ico {
  background: rgba(255,255,255,.16);
  color: #fff;
}

.bk-pay-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bk-pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.bk-pay-row.bk-pay-total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.22);
  font-size: 18px;
}

.bk-pay-row.bk-pay-total strong {
  font-size: 24px;
  font-family: var(--font-head);
}

#nextBtn.bk-finish-btn {
  min-width: 180px;
  box-shadow: 0 12px 28px rgba(10,102,194,.35) !important;
}

@media (max-width: 767.98px) {
  .bk-confirm-meta-grid {
    grid-template-columns: 1fr;
  }
  .bk-confirm-card {
    padding: 18px;
  }
  .bk-staff-badge {
    margin-left: 0;
  }
  .bk-staff-card {
    flex-wrap: wrap;
  }
}

/* =========================================================
   Date & Time vertical stack overrides (premium salon UI)
   ========================================================= */
.bk-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--bk-navy);
  margin-bottom: 14px;
}

.bk-section-label i { color: var(--bk-blue); }

.bk-dt-info-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 18px 22px;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .07);
  border: 1px solid rgba(10, 102, 194, .08);
}

.bk-dt-info-service {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bk-navy);
}

.bk-dt-info-barber {
  font-size: 14px;
  color: var(--bk-muted);
  margin-top: 4px;
}

.bk-dt-info-barber strong { color: var(--bk-blue); }

.bk-dt-info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bk-dt-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--bk-muted);
  background: var(--bk-soft);
  padding: 8px 14px;
  border-radius: 999px;
}

.bk-dt-info-item i { color: var(--bk-blue); }
.bk-dt-info-item strong { color: var(--bk-navy); }
.bk-dt-info-price strong { color: var(--bk-blue); }

.bk-datetime.bk-datetime-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.bk-datetime-stack .slot-calendar {
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08) !important;
  padding: 24px !important;
  background: #fff !important;
  height: auto !important;
  min-height: 0 !important;
}

.bk-cal-table-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.bk-datetime-stack .bk-cal-header {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.bk-datetime-stack .bk-cal-title {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem) !important;
}

.bk-datetime-stack .bk-cal-nav {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  border: none !important;
}

.bk-datetime-stack .bk-day-btn {
  max-width: 58px !important;
  font-size: 16px !important;
  border-radius: 16px !important;
}

.bk-datetime-stack .bk-cal-legend {
  justify-content: center;
  margin-top: 18px;
  padding-top: 0;
}

.bk-datetime-stack .bk-time-panel {
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 22px 24px !important;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08) !important;
  display: block !important;
}

.bk-datetime-stack .bk-time-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.bk-datetime-stack .bk-slot-scroll {
  max-height: none !important;
  overflow: visible !important;
  padding-right: 0 !important;
}

.bk-datetime-stack .bk-slot-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.slot-btn.bk-slot-chip {
  height: 55px !important;
  min-height: 55px !important;
  border-radius: 14px !important;
  border: 1.5px solid #E2E8F0 !important;
  background: #fff !important;
  color: var(--bk-navy) !important;
  padding: 0 12px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
  overflow: hidden;
  transition: .25s ease !important;
}

.slot-btn.bk-slot-chip > i.fa-clock {
  color: var(--bk-blue);
  font-size: 13px;
}

.bk-slot-chip-time {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.bk-slot-chip-check {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
}

.slot-btn.bk-slot-chip:hover {
  border-color: var(--bk-blue) !important;
  background: var(--bk-soft) !important;
  color: var(--bk-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(10, 102, 194, .12);
}

.slot-btn.bk-slot-chip.active {
  background: var(--bk-grad) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(10, 102, 194, .28);
  transform: scale(1.03);
}

.slot-btn.bk-slot-chip.active > i.fa-clock,
.slot-btn.bk-slot-chip.active .bk-slot-chip-time {
  color: #fff !important;
}

.slot-btn.bk-slot-chip.active .bk-slot-chip-check {
  display: inline-flex;
}

/* hide unused old chip strip if present */
.bk-dt-context { display: none !important; }

@media (max-width: 991.98px) {
  .bk-datetime-stack .bk-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 575.98px) {
  .bk-datetime-stack .bk-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .bk-datetime-stack .bk-day-btn { max-width: 48px !important; font-size: 14px !important; }
  .slot-btn.bk-slot-chip { height: 52px !important; font-size: 13px !important; }
}

/* =========================================================
   Premium booking loader + success page
   ========================================================= */
.bk-book-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bk-book-loader:not([hidden]) {
  display: flex;
}

body.bk-loading {
  overflow: hidden;
}

.bk-book-loader-inner {
  text-align: center;
  padding: 24px;
  max-width: 420px;
  animation: bkFadeIn .35s ease both;
}

.bk-book-loader-logo {
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 20px rgba(10,102,194,.15));
}

.bk-book-loader-pole {
  width: 28px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid #0A66C2;
  box-shadow: 0 10px 24px rgba(10,102,194,.2);
  background: #fff;
  position: relative;
}

.bk-book-loader-pole span {
  position: absolute;
  inset: -40% 0;
  background: repeating-linear-gradient(
    -45deg,
    #0A66C2 0 12px,
    #fff 12px 24px,
    #DC2626 24px 36px,
    #fff 36px 48px
  );
  animation: bkPoleSpin 1.1s linear infinite;
}

@keyframes bkPoleSpin {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

.bk-book-loader-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--bk-navy);
  margin: 0 0 8px;
}

.bk-book-loader-sub {
  margin: 0;
  color: var(--bk-muted);
  font-size: 15px;
}

.bk-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 2px;
  min-width: 18px;
  vertical-align: baseline;
}

.bk-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bk-blue);
  display: inline-block;
  opacity: .25;
  animation: bkDotPulse 1.2s infinite ease-in-out;
}

.bk-dots span:nth-child(2) { animation-delay: .2s; }
.bk-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes bkDotPulse {
  0%, 80%, 100% { opacity: .25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

/* Error modal */
.bk-error-modal {
  border: none;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15,23,42,.18);
}

.bk-error-ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FEE2E2;
  color: #DC2626;
  font-size: 32px;
}

.bk-error-modal h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--bk-navy);
}

.bk-error-retry {
  min-width: 140px;
}

/* Success page */
.bk-success-page {
  display: none;
  position: relative;
  padding: 24px 0 64px;
  animation: bkFadeIn .45s ease both;
}

.bk-success-page:not([hidden]),
.bk-success-page.is-visible {
  display: block;
}

body.bk-success-active .bk-intro,
body.bk-success-active #BookingWizardShell {
  display: none !important;
}

.bk-confetti-canvas {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 420px;
  pointer-events: none;
  z-index: 1;
}

.bk-success-wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.bk-success-hero {
  text-align: center;
  margin-bottom: 28px;
  animation: bkSuccessRise .55s ease both;
}

.bk-success-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #22C55E, #16A34A);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(22,163,74,.35);
  animation: bkSuccessPop .55s cubic-bezier(.2,.9,.3,1.3) both;
}

.bk-check-svg {
  width: 56px;
  height: 56px;
}

.bk-check-circle {
  stroke: rgba(255,255,255,.35);
  stroke-width: 2;
}

.bk-check-mark {
  stroke: #fff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: bkCheckDraw .55s .25s ease forwards;
}

@keyframes bkCheckDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes bkSuccessPop {
  from { transform: scale(.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes bkSuccessRise {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.bk-success-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--bk-navy);
  margin: 0 0 10px;
}

.bk-success-sub {
  color: var(--bk-muted);
  font-size: 16px;
  margin: 0 0 16px;
  line-height: 1.55;
}

.bk-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

.bk-email-sent {
  margin: 14px 0 0;
  color: #0A66C2;
  font-weight: 600;
  font-size: 14px;
}

.bk-email-sent i {
  margin-right: 4px;
}

.bk-success-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(15,23,42,.07);
  border: 1px solid rgba(15,23,42,.05);
  margin-bottom: 16px;
  animation: bkSuccessRise .55s ease both;
  animation-delay: .08s;
}

.bk-success-side-cards .bk-success-card {
  animation-delay: .16s;
}

.bk-success-card-head {
  margin-bottom: 16px;
}

.bk-success-card-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--bk-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bk-success-card-head i {
  color: var(--bk-blue);
}

.bk-success-field {
  background: #F8FAFC;
  border-radius: 14px;
  padding: 14px 16px;
  height: 100%;
}

.bk-success-field .lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bk-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.bk-success-field .lbl i {
  color: var(--bk-blue);
}

.bk-success-field .val {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--bk-navy);
  word-break: break-word;
}

.bk-success-price {
  color: var(--bk-blue) !important;
  font-size: 18px !important;
}

.bk-shop-info-list,
.bk-reminder-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bk-shop-info-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(15,23,42,.08);
}

.bk-shop-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bk-shop-info-list li > i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bk-soft);
  color: var(--bk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bk-shop-info-list strong {
  display: block;
  font-size: 13px;
  color: var(--bk-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.bk-shop-info-list span {
  font-size: 15px;
  color: var(--bk-navy);
  font-weight: 600;
  line-height: 1.45;
}

.bk-shop-info-list a {
  color: var(--bk-blue);
  text-decoration: none;
}

.bk-reminder-card {
  background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 55%);
}

.bk-reminder-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--bk-navy);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px dashed rgba(10,102,194,.12);
}

.bk-reminder-list li:last-child {
  border-bottom: none;
}

.bk-reminder-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bk-blue);
  box-shadow: 0 0 0 4px rgba(10,102,194,.12);
}

.bk-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  animation: bkSuccessRise .55s ease both;
  animation-delay: .24s;
}

.bk-success-actions .btn {
  border-radius: 50px !important;
  min-height: 48px;
  padding: 12px 22px !important;
  font-weight: 600 !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.bk-success-btn-primary {
  box-shadow: 0 12px 28px rgba(10,102,194,.28) !important;
}

.bk-success-actions .btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .bk-success-page {
    padding-top: 12px;
  }
  .bk-success-card {
    padding: 18px;
  }
  .bk-success-actions {
    flex-direction: column;
  }
  .bk-success-actions .btn {
    width: 100%;
  }
}

@media print {
  .bk-header,
  .bk-book-loader,
  .bk-confetti-canvas,
  .bk-success-actions,
  #BookingWizardShell {
    display: none !important;
  }
  .bk-success-page {
    display: block !important;
    padding: 0;
  }
  .bk-success-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }
}
