/* ==========================================================================
   ZAZZLE SALON - APPOINTMENT BOOKING STYLESHEET
   100% Faithful Recreation of Layout & Editorial Composition
   - Split Layout: Fixed Left Editorial Panel + Independently Scrollable Right Workflow
   - Flush Model Portrait (Fully Visible Face, Earring & Hair)
   ========================================================================== */

/* --- ROOT VARIABLES --- */
:root {
  --bg-left: #F5F2EA;
  --bg-right: #FBF9F4;
  --bg-card: #FFFFFF;
  --color-black: #111111;
  --color-charcoal: #3D3A35;
  --color-muted: #7A756D;
  --color-border: #E8E4DA;
  --color-border-light: rgba(17, 17, 17, 0.08);
  --color-gold: #A88955;
  --color-white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-brand: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 16px rgba(17, 17, 17, 0.04);
  --shadow-active: 0 6px 20px rgba(17, 17, 17, 0.08);
}

/* --- RESET --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg-right);
  color: var(--color-black);
  font-family: var(--font-sans);
}

/* --- 1. TOP HEADER NAVIGATION --- */
.booking-header {
  width: 100%;
  height: 60px;
  background-color: var(--bg-left);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5vw;
  position: relative;
  z-index: 50;
  flex-shrink: 0;
}

.header-left .brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-black);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-item:hover {
  color: var(--color-black);
}

.active-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-black);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.active-book-btn .arrow-up-right {
  font-size: 13px;
}

.active-book-btn:hover {
  color: var(--color-gold);
}

/* --- 2. MAIN BOOKING WORKSPACE LAYOUT --- */
.booking-container {
  display: flex;
  width: 100%;
  height: calc(100vh - 96px);
  padding-top: clamp(92px, 11vh, 108px);
  overflow: hidden;
}

/* ==========================================================================
   LEFT HALF: COMPLETELY FIXED, FLUSH-ALIGNED EDITORIAL SHOWCASE
   ========================================================================== */
.editorial-panel {
  width: 32%;
  min-width: 320px;
  max-width: 400px;
  height: 100%;
  background-color: var(--bg-left);
  border-right: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
  padding: 0;
}

.editorial-top-content {
  padding: clamp(18px, 2.4vh, 28px) clamp(28px, 2.8vw, 40px) 0 clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  z-index: 5;
}

.eyebrow-tag {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-charcoal);
  display: block;
}

.editorial-heading {
  font-family: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.editorial-heading em {
  font-family: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.gold-accent-dash {
  width: 32px;
  height: 2.5px;
  background-color: var(--color-gold);
  margin: 6px 0 2px 0;
}

.editorial-paragraph {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
  color: #4A4640;
  max-width: 320px;
}

.client-help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
  margin-top: 2px;
}

.client-help-link .link-arrow {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.client-help-link:hover {
  color: var(--color-gold);
}

.client-help-link:hover .link-arrow {
  transform: translateX(3px);
}

/* Flush Image Container Anchored to Bottom (Slightly Reduced Proportion) */
.editorial-figure-wrap {
  width: 100%;
  flex: 1;
  max-height: clamp(200px, 44vh, 340px);
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  padding: 0;
  background-color: transparent;
}

.editorial-model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.04) brightness(0.98);
  display: block;
}

/* ==========================================================================
   RIGHT HALF: INDEPENDENTLY SCROLLABLE BOOKING AREA
   ========================================================================== */
.booking-flow-panel {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--bg-right);
  padding: clamp(24px, 3vh, 36px) 3.5vw 36px 3.5vw;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vh, 26px);
  scroll-behavior: smooth;
}

/* Minimalist Scrollbar */
.booking-flow-panel::-webkit-scrollbar {
  width: 6px;
}

.booking-flow-panel::-webkit-scrollbar-track {
  background: var(--bg-right);
}

.booking-flow-panel::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.18);
  border-radius: 999px;
}

.booking-flow-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 17, 0.38);
}

/* --- STEP ROW LAYOUT --- */
.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border-light);
}

.step-label-col {
  width: 155px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 2px;
}

.step-num {
  font-family: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
}

.step-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-black);
  line-height: 1.4;
  text-transform: uppercase;
}

/* --- STEP CARDS CONTAINER & SCROLL TRACK --- */
.step-cards-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.cards-scroll-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 2px;
  width: 100%;
}

.cards-scroll-track::-webkit-scrollbar {
  display: none;
}

/* --- BASE STEP CARD STYLING --- */
.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s var(--ease-spring);
  user-select: none;
}

.step-card:hover {
  border-color: rgba(17, 17, 17, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

/* Active State with Check Badge */
.step-card.active {
  border: 1.5px solid var(--color-black);
  box-shadow: var(--shadow-active);
}

.card-check-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s var(--ease-spring);
}

.step-card.active .card-check-badge {
  opacity: 1;
  transform: scale(1);
}

/* --- STEP 01: LOCATION CARDS --- */
.location-card {
  width: 185px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-pretag {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-black);
  text-transform: uppercase;
}

.card-main-title {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 3px;
}

.card-desc {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-muted);
}

/* --- STEP 02: EXPERIENCE CARDS --- */
.experience-card {
  width: 112px;
  height: 96px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 10px;
}

.card-icon {
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.experience-card:hover .card-icon {
  transform: scale(1.1);
  color: var(--color-black);
}

.card-exp-title {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-black);
  text-transform: uppercase;
}

/* --- STEP 03: STYLIST CARDS --- */
.stylist-card {
  width: 122px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 8px;
  gap: 6px;
}

.stylist-avatar-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 3px;
  background-color: #EAE6DE;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.stylist-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stylist-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-black);
  text-transform: uppercase;
}

.stylist-role {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: var(--color-muted);
  line-height: 1.25;
}

/* --- STEP 04: DATE PICKER --- */
.step-date-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.date-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.month-selector-wrapper {
  position: relative;
  display: inline-block;
}

.month-selector-label {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.month-selector-label:hover {
  background-color: rgba(17, 17, 17, 0.05);
}

.month-selector-label .caret {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.month-selector-label.open .caret {
  transform: rotate(180deg);
}

.month-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 320px;
}

.month-dropdown-menu.show {
  display: flex;
  animation: calendarFadeIn 0.2s ease-out;
}

.year-tabs-row {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #F5F2EA;
  padding: 3px;
  border-radius: 8px;
}

.year-tab-btn {
  flex: 1;
  padding: 6px 0;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-charcoal);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.year-tab-btn:hover {
  color: var(--color-black);
}

.year-tab-btn.active {
  background-color: var(--color-black);
  color: var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.months-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.month-option-btn {
  padding: 9px 4px;
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  background-color: #FAF8F4;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.month-option-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.month-option-btn.active {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

@keyframes calendarFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.date-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-nav-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  user-select: none;
}

.date-nav-btn:hover {
  background-color: rgba(17, 17, 17, 0.06);
  color: var(--color-black);
}

.date-nav-btn:active {
  transform: scale(0.92);
}

.date-pills-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.date-pill-box {
  flex: 1;
  height: 56px;
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
  user-select: none;
}

.date-pill-box:hover {
  border-color: rgba(17, 17, 17, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.date-day-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.date-num {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-black);
  transition: color 0.2s ease;
}

.date-pill-box.active {
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.date-pill-box.active .date-day-label {
  color: #AAA69E;
}

.date-pill-box.active .date-num {
  color: var(--color-white);
}

/* --- STEP 05: TIME PICKER --- */
.time-slots-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.time-slot-btn {
  padding: 10px 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-black);
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
}

.time-slot-btn:hover {
  border-color: rgba(17, 17, 17, 0.4);
}

.time-slot-btn.active {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

/* ==========================================================================
   3. FIXED SUMMARY & BOOKING CONFIRMATION BAR
   ========================================================================== */
.booking-summary-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background-color: #F8F6F0;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.summary-content-left {
  display: flex;
  align-items: center;
  gap: clamp(32px, 3.5vw, 56px);
}

.summary-thumb-wrap {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #EBE7DE;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.summary-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.summary-service-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.summary-title {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-black);
}

.summary-sub {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-muted);
}

.summary-datetime {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.35;
}

.summary-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  text-transform: uppercase;
}

.meta-value {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-black);
}

.summary-action-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.confirm-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 42px;
  background-color: #111111;
  color: #C8A96E;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.confirm-booking-btn .btn-arrow {
  color: #C8A96E;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.confirm-booking-btn:hover {
  background-color: #000000;
  color: #E2C78A;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.confirm-booking-btn:hover .btn-arrow {
  transform: translateX(5px);
  color: #E2C78A;
}

.security-caption {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

/* --- 4. CONFIRMATION MODAL --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  width: 90%;
  max-width: 420px;
  background-color: var(--bg-card);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.35s var(--ease-spring);
}

.modal-backdrop.show .modal-dialog {
  transform: translateY(0);
}

.modal-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-black);
  margin-bottom: 6px;
}

.modal-message {
  font-size: 11.5px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.modal-details-card {
  background-color: var(--bg-left);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
}

.detail-row span {
  color: var(--color-muted);
}

.detail-row strong {
  color: var(--color-black);
}

.modal-close-btn {
  width: 100%;
  padding: 11px;
  background-color: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.modal-close-btn:hover {
  background-color: var(--color-gold);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  html, body {
    height: auto;
    overflow-y: auto;
  }
  .booking-container {
    height: auto;
    flex-direction: column;
    overflow: visible;
  }
  .editorial-panel {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
  }
  .editorial-figure-wrap {
    height: 260px;
    max-height: 260px;
  }
  .booking-flow-panel {
    height: auto;
    overflow: visible;
    padding-bottom: 120px;
  }
}

@media (max-width: 800px) {
  .header-nav {
    display: none;
  }
  .booking-step {
    flex-direction: column;
    gap: 14px;
  }
  .step-label-col {
    width: 100%;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
  .booking-summary-bar {
    height: auto;
    padding: 12px 18px;
    flex-direction: column;
    gap: 12px;
  }
  .summary-content-left {
    flex-wrap: wrap;
    gap: 12px;
  }
  .summary-action-right {
    width: 100%;
    align-items: stretch;
  }
  .confirm-booking-btn {
    justify-content: center;
  }
}
