/* Two deliberately different customer booking paths replace the crowded chair carousel. */
.booking-path-section {
  max-width: 880px;
  margin: 2px 0 27px;
  scroll-margin-top: 142px;
}

.booking-path-section .app-section-head { margin-bottom: 11px !important; }
.booking-path-section .app-section-head h2 { max-width: 72%; }

.booking-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-path-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 168px;
  overflow: hidden;
  align-items: flex-end;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 22px;
  text-align: left;
  isolation: isolate;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.booking-path-card:active { transform: scale(.985); }

.booking-path-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-path-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
}

.booking-path-copy {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 5px;
}

.booking-path-copy > small {
  font: 800 7px/1 var(--app-font);
  letter-spacing: .12em;
}

.booking-path-copy > b {
  font: 820 17px/.98 var(--app-font);
  letter-spacing: -.045em;
}

.booking-path-copy > p {
  min-height: 35px;
  margin: 0;
  font: 650 8px/1.45 var(--app-font);
}

.booking-path-copy > em {
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  margin-top: 2px;
  padding: 7px 9px;
  border-radius: 99px;
  font: 800 7px/1 var(--app-font);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-path-fast {
  border-color: rgba(229, 233, 236, .16);
  background: #111216;
  box-shadow: 0 14px 26px rgba(22, 18, 21, .2);
  color: #fff;
}

.booking-path-fast > img {
  filter: saturate(.75) contrast(1.08) brightness(.68);
  transform: scale(1.03);
}

.booking-path-fast::before {
  background: linear-gradient(0deg, rgba(12, 13, 16, .97) 0%, rgba(12, 13, 16, .78) 55%, rgba(12, 13, 16, .13) 100%);
}

.booking-path-fast .booking-path-copy > small { color: #cfd6db; }
.booking-path-fast .booking-path-copy > p { color: #d7dadd; }
.booking-path-fast .booking-path-copy > em { background: #f0f2f3; color: #1b1d20; }
.booking-path-fast.selected { border-color: rgba(238, 242, 245, .62); box-shadow: 0 0 0 2px rgba(207, 215, 221, .13), 0 15px 30px rgba(22, 18, 21, .25); }

.booking-path-person {
  border-color: #ded3cc;
  background: #f4efeb;
  box-shadow: 0 13px 26px rgba(72, 48, 42, .1);
  color: #2e2428;
}

.booking-path-person > img {
  object-position: center 57%;
  filter: saturate(.68) contrast(.95) brightness(1.05);
}

.booking-path-person::before {
  background: linear-gradient(0deg, rgba(249, 246, 243, .98) 0%, rgba(249, 246, 243, .9) 57%, rgba(249, 246, 243, .17) 100%);
}

.booking-path-person .booking-path-copy > small { color: #8c5367; }
.booking-path-person .booking-path-copy > p { color: #6f6266; }
.booking-path-person .booking-path-copy > em { background: #6f2c46; color: #fff; }
.booking-path-person.selected { border-color: #8e5268; box-shadow: 0 0 0 2px rgba(126, 47, 76, .1), 0 15px 30px rgba(81, 39, 54, .15); }

.mode-women .booking-path-person {
  border-color: #e2cbd2;
  background: #f8eef1;
}

.mode-women .booking-path-person::before {
  background: linear-gradient(0deg, rgba(251, 244, 246, .99) 0%, rgba(251, 244, 246, .88) 57%, rgba(251, 244, 246, .15) 100%);
}

.team-picker-sheet { max-height: min(88dvh, 760px) !important; }

.team-picker-list {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.team-picker-list > button {
  display: grid;
  width: 100%;
  min-height: 64px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 7px 9px 7px 7px;
  border: 1px solid #e4d9d2;
  border-radius: 17px;
  background: linear-gradient(135deg, #fffefd, #f6efea);
  color: #30272b;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.team-picker-list > button:active {
  transform: scale(.988);
  border-color: #a8667d;
}

.team-picker-list img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(49, 31, 36, .13);
}

.team-picker-list span { display: grid; min-width: 0; gap: 4px; }
.team-picker-list b { overflow: hidden; font: 800 12px/1 var(--app-font); text-overflow: ellipsis; white-space: nowrap; }
.team-picker-list small { color: #83736d; font: 700 8px/1 var(--app-font); }
.team-picker-list em { padding: 8px 9px; border-radius: 10px; background: #30282c; color: #fff; font: 800 7px/1 var(--app-font); font-style: normal; }

body.app-dark .booking-path-person {
  border-color: #4b4247;
  background: #252125;
  color: #f5f1f2;
  box-shadow: 0 13px 26px rgba(0, 0, 0, .23);
}

body.app-dark .booking-path-person::before {
  background: linear-gradient(0deg, rgba(32, 29, 33, .99) 0%, rgba(32, 29, 33, .88) 57%, rgba(32, 29, 33, .18) 100%);
}

body.app-dark .booking-path-person .booking-path-copy > p { color: #c5b9bd; }
body.app-dark .booking-path-person .booking-path-copy > em { background: #a75470; }
body.app-dark .team-picker-list > button { border-color: #453d41; background: linear-gradient(135deg, #282428, #201d20); color: #f5f1f2; }
body.app-dark .team-picker-list small { color: #bcaeb2; }
body.app-dark .team-picker-list em { background: #eee8ea; color: #32292d; }

@media (max-width: 390px) {
  .booking-path-grid { gap: 8px; }
  .booking-path-card { min-height: 158px; padding: 12px; border-radius: 19px; }
  .booking-path-copy > b { font-size: 15px; }
  .booking-path-copy > p { min-height: 38px; font-size: 7.5px; }
  .booking-path-copy > em { padding: 6px 7px; font-size: 6.5px; }
}

@media (min-width: 720px) {
  .booking-path-grid { max-width: 720px; }
  .booking-path-card { min-height: 190px; padding: 18px; }
  .booking-path-copy > b { font-size: 20px; }
  .booking-path-copy > p { max-width: 260px; min-height: 0; font-size: 9px; }
}
