/* Progress BELOW chrome — bars visible (not under header) */

.book-progress-host {
  position: fixed;
  top: 3.6rem;
  right: 0;
  left: 0;
  z-index: 39;
  box-sizing: border-box;
  padding: 0.55rem 4vw 0.7rem;
  background: #0c0d11;
  border-bottom: 1px solid rgba(246, 239, 224, 0.14);
}

.book-progress-host[hidden] {
  display: none !important;
}

.book-progress {
  display: block;
  width: 100%;
  max-width: 110rem;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.book-progress__track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
}

.book-progress__col {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: default;
}

button.book-progress__col {
  cursor: pointer;
}

/* thick bars */
.book-progress__col i {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 10px;
  min-height: 10px;
  background: #2a2c32;
  border: 2px solid transparent;
  border-radius: 0;
}

/* done = solid fill */
.book-progress__col.is-on i {
  background: #6f8f6a;
  border-color: #6f8f6a;
}

/* current = green OUTLINE only, not filled */
.book-progress__col.is-now i {
  background: transparent;
  border: 2px solid #6f8f6a;
}

.book-progress__col em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(246, 239, 224, 0.45);
}

.book-progress__col.is-on em {
  color: rgba(200, 212, 196, 0.92);
}

.book-progress__col.is-now em {
  color: rgba(232, 240, 228, 0.98);
}

/* chrome only top row */
body.has-book-progress .rooms-chrome {
  z-index: 41;
  background: #0c0d11 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 0;
  padding: 0.8rem 4vw !important;
}

/* chrome + progress total pad */
body.has-book-progress {
  padding-top: 6.9rem !important;
}

body.has-book-progress.theme-bookings .guest-checkout {
  padding-top: 1rem;
}

.guest-checkout > .book-progress,
.rooms-list > .book-progress,
.booking-tariffs > .book-progress {
  display: none !important;
}
