/* ── Booking wrap ─────────────────────────────────────── */
#mb-booking-wrap {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2c2a20;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
}

/* ── Step Indicator ──────────────────────────────────── */
.mb-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 0 8px;
}

.mb-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mb-dot-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #d8d2c6;
  color: #9a9282;
  background: #fdfbf7;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.mb-step-dot.active .mb-dot-circle,
.mb-step-dot.completed .mb-dot-circle {
  background: #1e3a2f;
  border-color: #1e3a2f;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 58, 47, .25);
}

.mb-step-dot.completed .mb-dot-circle span {
  display: none;
}

.mb-step-dot.completed .mb-dot-circle::after {
  content: '✓';
  font-size: 15px;
}

.mb-dot-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #9a9282;
  white-space: nowrap;
  transition: color .3s;
}

.mb-step-dot.active .mb-dot-label,
.mb-step-dot.completed .mb-dot-label {
  color: #1e3a2f;
}

.mb-step-connector {
  flex: 1;
  height: 2px;
  background: #e5e0d5;
  margin: 0 6px;
  margin-bottom: 26px;
  min-width: 24px;
  transition: background .3s;
}

.mb-step-connector.done {
  background: #1e3a2f;
}

@media (max-width: 520px) {
  .mb-dot-label {
    font-size: 9px;
  }

  .mb-dot-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .mb-step-indicator {
    gap: 0;
  }
}

/* ── Step containers ─────────────────────────────────── */
.mb-step {
  animation: mbFadeIn .35s ease;
}

@keyframes mbFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

/* ── Step header ─────────────────────────────────────── */
.mb-step-header {
  text-align: center;
  margin-bottom: 32px;
}

.mb-step-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a2f;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}

.mb-step-subtext {
  font-size: 14px;
  color: #8a8272;
  margin: 0;
  line-height: 1.5;
}

/* ── Step actions (nav buttons) ──────────────────────── */
.mb-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
}

#mb-booking-wrap .mb-back-link {
  background: none;
  border: none;
  font-size: 14px;
  color: #6b6455;
  cursor: pointer;
  padding: 8px 0;
  font-weight: 500;
  transition: color .2s;
}

#mb-booking-wrap .mb-back-link:hover {
  color: #1e3a2f;
}

/* ── CTA button ──────────────────────────────────────── */
#mb-booking-wrap .mb-cta-btn {
  padding: 14px 28px;
  background: #1e3a2f;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 14px rgba(30, 58, 47, .2);
  white-space: nowrap;
  width:100%;
}

#mb-booking-wrap .mb-cta-btn:hover:not(:disabled) {
  background: #2a5040;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 58, 47, .3);
}

#mb-booking-wrap .mb-cta-btn:disabled {
  background: #d0c8b8;
  color: #f6f3eb;
  box-shadow: none;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════
   STEP 1 — Service cards
   ═══════════════════════════════════════════════════════ */
.mb-service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .mb-service-cards {
    grid-template-columns: 1fr;
  }
}

.mb-service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1.5px solid #e5e0d5;
  border-radius: 12px;
  background: #fdfbf7;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  gap: 14px;
  position: relative;
  min-height: 100px;
}

.mb-service-card:hover {
  border-color: #c5b99b;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.mb-service-card.selected {
  border-color: #1e3a2f;
  background: #f0f7f3;
  box-shadow: 0 4px 16px rgba(30, 58, 47, .12);
}

.mb-card-body {
  flex: 1;
  min-width: 0;
}

.mb-card-name {
  font-weight: 600;
  font-size: 15px;
  color: #1e3a2f;
  margin-bottom: 4px;
  line-height: 1.3;
}

.mb-card-desc {
  font-size: 13px;
  color: #8a8272;
  line-height: 1.4;
}

.mb-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.mb-card-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #4a6e5d;
  background: #e9f2eb;
  letter-spacing: .02em;
}

.mb-service-card.selected .mb-card-pill {
  background: #d0e6d6;
  color: #1e3a2f;
}

.mb-card-from-price {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1e3a2f;
}

.mb-card-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.mb-card-duration {
  font-size: 12px;
  font-weight: 600;
  color: #6b6455;
  background: #f0ede6;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.mb-card-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #d8d2c6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all .2s;
  flex-shrink: 0;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.mb-service-card.selected .mb-card-check {
  background: #1e3a2f;
  border-color: #1e3a2f;
  color: #fff;
}

/* Variant selector */
#mb-variant-wrap {
  margin-top: 20px;
  padding: 20px;
  background: #faf8f5;
  border: 1px solid #e5e0d5;
  border-radius: 12px;
}

.mb-variant-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #6b6455;
  margin-bottom: 10px;
}

#mb-booking-wrap .mb-select-styled {
  width: 100%;
  height: auto;
  min-height: 46px;
  line-height: normal;
  padding: 10px 14px;
  border: 1.5px solid #e5e0d5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #4a4538;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
}

#mb-booking-wrap .mb-select-styled:focus {
  outline: none;
  border-color: #1e3a2f;
  box-shadow: 0 0 0 3px rgba(30, 58, 47, .1);
}

/* ═══════════════════════════════════════════════════════
   STEP 2 — Location cards
   ═══════════════════════════════════════════════════════ */
.mb-location-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mb-location-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1.5px solid #e5e0d5;
  border-radius: 12px;
  background: #fdfbf7;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

.mb-location-card:hover {
  border-color: #c5b99b;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.mb-location-card.active {
  border-color: #1e3a2f;
  background: #f0f7f3;
  box-shadow: 0 4px 16px rgba(30, 58, 47, .1);
}

.mb-loc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0ede6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6455;
  flex-shrink: 0;
  transition: all .2s;
}

.mb-location-card.active .mb-loc-icon {
  background: #1e3a2f;
  color: #fff;
}

.mb-loc-body {
  flex: 1;
  min-width: 0;
}

.mb-loc-name {
  font-weight: 600;
  font-size: 16px;
  color: #1e3a2f;
  margin-bottom: 4px;
}

.mb-loc-desc {
  font-size: 13px;
  color: #8a8272;
  line-height: 1.5;
}

.mb-loc-price {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: #f0ede6;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1e3a2f;
  letter-spacing: .02em;
}

.mb-location-card.active .mb-loc-price {
  background: #d9ece0;
}

.mb-loc-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #d8d2c6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all .2s;
  flex-shrink: 0;
  margin-top: 4px;
}

.mb-location-card.active .mb-loc-check {
  background: #1e3a2f;
  border-color: #1e3a2f;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   STEP 3 — Calendar & Slots
   ═══════════════════════════════════════════════════════ */
.mb-datetime-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 680px) {
  .mb-datetime-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.mb-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #1e3a2f;
}

.mb-nav-btn {
  background: #fdfbf7;
  border: 1.5px solid #e5e0d5;
  border-radius: 8px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6b6455;
  transition: all .2s ease;
}

.mb-nav-btn:hover {
  color: #1e3a2f;
  border-color: #1e3a2f;
  background: #fff;
  transform: translateY(-1px);
}

.mb-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #9a9282;
  margin-bottom: 10px;
}

.mb-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 8px;
}

.mb-cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s ease;
  border: 1.5px solid transparent;
}

.mb-cal-empty {
  cursor: default;
}

.mb-cal-past {
  color: #d0c8b8;
  cursor: not-allowed;
  background: #fbfaf7;
  border-color: #f6f3eb;
}

.mb-cal-cell:not(.mb-cal-past):not(.mb-cal-empty) {
  background: #fff;
  border-color: #e5e0d5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
}

.mb-cal-cell:not(.mb-cal-past):not(.mb-cal-empty):hover {
  background: #f5f2eb;
  border-color: #d2cbb5;
  transform: translateY(-1px);
}

.mb-cal-today {
  background: #e9f2eb !important;
  border-color: #a2bba9 !important;
  color: #1e3a2f;
  font-weight: 600;
}

.mb-cal-selected {
  background: #1e3a2f !important;
  color: #fff !important;
  border-color: #1e3a2f !important;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(30, 58, 47, .3) !important;
  transform: scale(1.05);
}

/* ── Time slots ───────────────────────────────────────── */
.mb-slots-label {
  font-size: 15px;
  color: #1e3a2f;
  margin-bottom: 16px;
  line-height: 1.5;
}

.mb-slots-label strong {
  font-weight: 700;
}

.mb-slots-range {
  font-size: 13px;
  font-weight: 500;
  color: #6b6455;
}

.mb-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (max-width: 480px) {
  .mb-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mb-slots-grid .mb-slot {
  background: #fdfbf7;
  border: 1.5px solid #e5e0d5;
  border-radius: 8px;
  padding: 11px 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  color: #4a4538;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  text-align: center;
}

.mb-slot:not(.mb-slot-active):hover {
  border-color: #1e3a2f;
  background: #fff;
  color: #1e3a2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.mb-slot-active {
  background: #1e3a2f !important;
  color: #fff !important;
  border-color: #1e3a2f !important;
  box-shadow: 0 6px 16px rgba(30, 58, 47, .25) !important;
  transform: translateY(-2px) scale(1.02);
}

.mb-loading,
.mb-no-slots {
  font-size: 13px;
  color: #9a9282;
  padding: 8px 0;
}

/* ═══════════════════════════════════════════════════════
   STEP 4 — Summary card
   ═══════════════════════════════════════════════════════ */
.mb-summary-card {
  background: #faf8f5;
  border: 1.5px solid #e5e0d5;
  border-radius: 14px;
  padding: 28px;
  max-width: 520px;
  margin: 0 auto;
}

.mb-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  padding: 10px 0;
  color: #6b6455;
}

.mb-summary-row strong {
  color: #2c2a20;
  text-align: right;
  max-width: 60%;
}

.mb-summary-sep {
  border-top: 1px dashed #d8d2c6;
  margin: 8px 0;
}

.mb-summary-total {
  font-size: 16px;
  font-weight: 700;
}

.mb-summary-total span {
  color: #1e3a2f;
}

.mb-summary-total strong {
  color: #1e3a2f;
  font-size: 18px;
}

.mb-summary-note {
  font-size: 12px;
  color: #9a9282;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   STEP 5 — Client details form
   ═══════════════════════════════════════════════════════ */
.mb-form-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
}

@media (max-width: 680px) {
  .mb-form-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.mb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .mb-field-row {
    grid-template-columns: 1fr;
  }
}

.mb-field {
  margin-bottom: 16px;
}

.mb-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #2c2a20;
}

.mb-req {
  color: #c0392b;
}

#mb-booking-wrap .mb-field input,
#mb-booking-wrap .mb-field textarea {
  width: 100%;
  height: auto;
  min-height: 46px;
  line-height: normal;
  padding: 10px 14px;
  border: 1.5px solid #e5e0d5;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #4a4538;
  background: #fdfbf7;
  box-sizing: border-box;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}

#mb-booking-wrap .mb-field input:focus,
#mb-booking-wrap .mb-field textarea:focus {
  outline: none;
  border-color: #1e3a2f;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 58, 47, .1);
}

#mb-booking-wrap .mb-field textarea {
  resize: vertical;
}

.mb-home-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef9ec;
  border: 1px solid #f0d98a;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #7a5c00;
  margin-bottom: 16px;
}

.mb-form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* ── Confirm sidebar ─────────────────────────────────── */
.mb-confirm-sidebar {
  position: sticky;
  top: 100px;
}

.mb-sidebar-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6b6455;
}

.mb-sidebar-divider {
  border-top: 1px solid #e5e0d5;
  margin: 10px 0 16px;
}

.mb-confirm-service {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.mb-confirm-date {
  font-size: 14px;
  color: #6b6455;
  margin-bottom: 4px;
}

.mb-confirm-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
  background: #f0f7f3;
  color: #1e3a2f;
  margin-bottom: 8px;
}

.mb-confirm-address {
  font-size: 13px;
  color: #6b6455;
  line-height: 1.5;
  margin-top: 4px;
}

.mb-sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: #6b6455;
  margin-bottom: 20px;
}

.mb-sidebar-total strong {
  color: #1e3a2f;
  font-size: 16px;
}

/* ── intl-tel-input overrides ────────────────────────── */
#mb-booking-wrap .iti {
  width: 100%;
}

#mb-booking-wrap .iti__selected-dial-code {
  font-size: 14px;
  font-weight: 500;
  color: #4a4538;
  margin-left: 4px;
}

#mb-booking-wrap .iti__flag-container {
  top: 1.5px;
  bottom: 1.5px;
  left: 1.5px;
  padding: 0;
  z-index: 2;
}

#mb-booking-wrap .iti__selected-flag {
  background: transparent;
  border-radius: 6.5px 0 0 6.5px;
  padding: 0 12px;
  height: 100%;
  box-sizing: border-box;
  transition: all .2s ease;
  border-right: 1.5px solid #e5e0d5;
}

#mb-booking-wrap .iti__selected-flag:hover {
  background: #f5f2eb;
}

#mb-booking-wrap .iti:focus-within .iti__selected-flag {
  border-right-color: #1e3a2f;
  background: #f0f7f3;
}

#mb-booking-wrap .iti__dropdown-content {
  border-radius: 12px !important;
  border: 1px solid #e5e0d5 !important;
  box-shadow: 0 8px 24px rgba(30, 58, 47, .08) !important;
  background: #fff !important;
  width: 320px !important;
  margin-top: 6px !important;
  z-index: 1000 !important;
  overflow: hidden !important;
}

#mb-booking-wrap .iti__search-input {
  width: 100% !important;
  border: none !important;
  border-bottom: 1px solid #f0ede6 !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  outline: none !important;
  background: #fdfbf7 !important;
  border-radius: 0 !important;
}

#mb-booking-wrap .iti__country-list {
  max-height: 280px !important;
  padding: 4px 0 !important;
}

#mb-booking-wrap .iti__country {
  padding: 12px 16px !important;
  font-size: 14.5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all .15s ease !important;
}

#mb-booking-wrap .iti__country:hover {
  background: #f0f7f3 !important;
}

#mb-booking-wrap .iti__country.iti__highlight {
  background: #e9f2eb !important;
  color: #1e3a2f !important;
}

#mb-booking-wrap .iti__dial-code {
  color: #9a9282 !important;
  font-weight: 400 !important;
}

#mb-booking-wrap .iti__flag-box {
  margin-right: 2px !important;
}

#mb-booking-wrap .iti__arrow {
  border-top-color: #6b6455 !important;
  margin-left: 6px !important;
}

#mb-booking-wrap .iti--show-flags .iti__tel-input {
  padding-left: 85px !important;
}

/* ═══════════════════════════════════════════════════════
   Success screen
   ═══════════════════════════════════════════════════════ */
.mb-success {
  text-align: center;
  padding: 60px 20px;
}

.mb-success-icon {
  color: #1e3a2f;
  margin-bottom: 20px;
}

.mb-success h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mb-success p {
  font-size: 15px;
  color: #6b6455;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

.mb-success-details {
  text-align: left;
  background: #faf8f5;
  border-radius: 12px;
  padding: 24px;
  margin-top: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.mb-success-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ede9e1;
}

.mb-success-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.mb-success-row span {
  color: #6b6455;
}