/* Guest data form — Botanica-like checkout on /bookings/?room= */

.guest-checkout {
  width: min(110rem, 100%);
  margin: 0 auto;
  padding: 5.5rem 4vw 4rem;
}

.guest-checkout--empty {
  min-height: 50svh;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.guest-checkout__steps,
.book-progress {
  display: block;
  width: 100%;
  margin: 0 0 1.8rem;
  padding: 0.85rem 0 0.95rem;
  border-bottom: 1px solid rgba(246, 239, 224, 0.1);
  background: transparent;
}

.book-progress__track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.5rem;
  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;
}

.book-progress__col i {
  display: block;
  height: 8px;
  background: rgba(246, 239, 224, 0.12);
}

.book-progress__col.is-on i {
  background: #6f8f6a;
}

.book-progress__col.is-now i {
  background: #8fb589;
}

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

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

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

/* kill old text-only step styles */
.guest-checkout__steps > span,
.guest-checkout__steps > button:not(.book-progress__col) {
  /* legacy no-op if mixed */
}

.guest-checkout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.75fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.guest-form__title {
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
}

.guest-form__field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}

.guest-form__field span {
  color: var(--paper-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-form__field input,
.guest-form__field textarea,
.guest-form__field select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(246, 239, 224, 0.22);
  border-radius: 0;
  background: #14161c;
  color: var(--paper);
  font-family: var(--text);
  font-size: 0.95rem;
  outline: none;
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
}

.guest-form__field input::placeholder,
.guest-form__field textarea::placeholder {
  color: rgba(246, 239, 224, 0.35);
}

.guest-form__field input:focus,
.guest-form__field textarea:focus,
.guest-form__field select:focus {
  border-color: rgba(246, 239, 224, 0.5);
  background: #1a1c24;
}

.pick-times select,
.pick-times input,
[data-guest-form] select,
[data-guest-form] input,
[data-guest-form] textarea {
  background: #14161c !important;
  color: var(--paper) !important;
  border: 1px solid rgba(246, 239, 224, 0.22);
  color-scheme: dark;
}

.pick-times label {
  display: grid;
  gap: 0.35rem;
  color: var(--paper-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pick-times select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
}

.guest-form__check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1rem 0 1.4rem;
  color: var(--paper-dim);
  font-size: 0.86rem;
  font-weight: 300;
  cursor: pointer;
}

.guest-form__check input {
  margin-top: 0.2rem;
}

.guest-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 1rem 1.6rem;
  border: 0;
  background: #f0e6d4;
  color: #0b0c0a;
  font-family: var(--text);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.guest-form__submit:hover {
  filter: brightness(1.04);
}

.guest-summary {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  padding: 0 0 1.2rem;
  border: 1px solid rgba(246, 239, 224, 0.16);
  background: #12141a;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.guest-summary__photo {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0c0d11;
}

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

.guest-summary__name,
.guest-summary__lead,
.guest-summary__rate,
.guest-summary__dates,
.guest-summary__meta,
.guest-summary__nights,
.guest-summary__total,
.guest-summary__break {
  margin: 0;
  padding: 0 1.1rem;
}

.guest-summary__name {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.guest-summary__lead {
  margin-top: 0.35rem;
  color: var(--paper-dim);
  font-size: 0.88rem;
  font-weight: 300;
}

.guest-summary__rate {
  margin-top: 0.85rem;
  font-size: 0.92rem;
}

.guest-summary__includes {
  margin: 0.35rem 0 0;
  padding: 0 1.1rem;
  color: var(--paper-dim);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.4;
}

.guest-summary__pack-list {
  margin: 0.55rem 0 0;
  padding: 0 1.1rem 0 2.1rem;
  color: var(--paper-dim);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.45;
}

.guest-summary__pack-list li {
  margin: 0.2rem 0;
}

.guest-summary__pack-list li b {
  color: var(--paper);
  font-weight: 400;
}

.guest-summary__pack-kicker {
  margin: 0.7rem 0 0;
  padding: 0 1.1rem;
  color: var(--paper-dim);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guest-summary__dates {
  margin-top: 0.45rem;
  font-size: 0.9rem;
}

.guest-summary__meta,
.guest-summary__nights,
.guest-summary__break {
  margin-top: 0.3rem;
  color: var(--paper-dim);
  font-size: 0.8rem;
}

.guest-summary__total {
  margin-top: 1rem;
  padding-bottom: 0.2rem;
}

.guest-summary__total strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
}

.guest-summary__break {
  padding-bottom: 1.1rem;
}

body.is-guest-checkout .bookings-hero,
body.is-guest-checkout .bookings-list {
  display: none !important;
}

body.is-guest-checkout:not(.is-booking-tariffs) [data-component="rooms-dock"] {
  display: none !important;
}

body.is-guest-checkout {
  padding-bottom: 2rem;
}

.guest-checkout__steps span.is-done {
  color: rgba(246, 239, 224, 0.55);
}

/* sticky full-bleed progress under chrome on booking pages */
body.is-guest-checkout .book-progress,
body.is-booking-tariffs .book-progress,
body.is-booking-list .book-progress {
  position: sticky;
  top: 0;
  z-index: 25;
  margin: 0 0 1.6rem;
  padding: 0.75rem 4vw 0.85rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: rgba(10, 11, 14, 0.96);
  border-bottom: 1px solid rgba(246, 239, 224, 0.1);
  backdrop-filter: blur(12px);
}

.guest-form__err {
  margin: 0 0 1rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(220, 120, 100, 0.45);
  color: #f0c8bc;
  font-size: 0.86rem;
}

.guest-done__card {
  max-width: 28rem;
  margin: 2rem auto 0;
  text-align: center;
}

.guest-done__room {
  margin: 0.4rem 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.guest-done__total {
  margin: 1rem 0 1.6rem;
}

.guest-done__total strong {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
}

.guest-done .guest-form__submit {
  text-decoration: none;
}

.booking-tariffs .room-rates__sub {
  margin: 0.35rem 0 1.2rem;
}

.booking-tariffs__packs {
  margin-top: 2.4rem;
}

@media (max-width: 900px) {
  .guest-checkout__grid {
    grid-template-columns: 1fr;
  }

  .guest-summary {
    order: -1;
  }

  .booking-tariffs .room-rates__grid {
    grid-template-columns: 1fr;
  }
}

.guest-checkout__steps button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

.guest-checkout__steps button.is-on,
.guest-checkout__steps button.is-done {
  color: inherit;
}

.guest-who {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.4rem;
}

.guest-who__btn {
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(246, 239, 224, 0.2);
  background: transparent;
  color: var(--paper-dim);
  font-family: var(--text);
  font-size: 0.82rem;
  cursor: pointer;
}

.guest-who__btn.is-on {
  border-color: var(--gold);
  color: var(--paper);
  background: rgba(216, 193, 154, 0.08);
}

.guest-points {
  margin: 0 0 1.2rem;
  color: var(--paper-dim);
  font-size: 0.88rem;
}

.guest-points__btn {
  margin-left: 0.4rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.guest-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.45rem 0 0;
  padding: 0 1.1rem;
  font-size: 0.9rem;
}

.pick-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin: 0 0 1.1rem;
}

@media (max-width: 720px) {
  .pick-times {
    grid-template-columns: 1fr;
  }
}

.shine-back {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 5, 8, 0.72);
}

.shine-back[hidden] {
  display: none !important;
}

.shine-modal {
  position: relative;
  width: min(28rem, 100%);
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(246, 239, 224, 0.16);
  background: #0c0d11;
  color: var(--paper);
}

.shine-modal--wide {
  width: min(42rem, 100%);
}

.shine-x {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  border: 0;
  background: none;
  color: var(--paper-dim);
  font-size: 1.4rem;
  cursor: pointer;
}

.shine-kicker {
  margin: 0 0 0.35rem;
  color: var(--paper-dim);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shine-modal h3 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.shine-fine {
  margin: 0.8rem 0 0;
  color: var(--paper-dim);
  font-size: 0.78rem;
}

.club-tg {
  margin-top: 0.7rem;
}

.up-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1rem 0;
}

.up-card {
  padding: 1rem;
  border: 1px solid rgba(246, 239, 224, 0.12);
  background: rgba(246, 239, 224, 0.03);
}

.up-card h4 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 400;
}

.up-card p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.86rem;
}

.up-card--on {
  border-color: var(--gold);
  background: rgba(216, 193, 154, 0.1);
}

.up-plus {
  margin-top: 0.6rem !important;
  color: var(--paper) !important;
}

.up-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.g-row {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(246, 239, 224, 0.1);
}

.g-row b {
  font-family: var(--display);
  font-weight: 400;
}

.g-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.g-step button {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(246, 239, 224, 0.22);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.g-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}

.pick-gift {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(216, 193, 154, 0.14), transparent 55%);
}

.pick-gift.is-on {
  border-left-color: #8fb589;
  background: linear-gradient(90deg, rgba(111, 143, 106, 0.2), transparent 55%);
}

.pick-gift__ico {
  flex: 0 0 2.4rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(216, 193, 154, 0.16);
  color: var(--gold);
}

.pick-gift.is-on .pick-gift__ico {
  background: #6f8f6a;
  color: #111;
}

.pick-gift__copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.pick-gift em {
  font-family: var(--display);
  font-size: 1rem;
  font-style: normal;
}

.pick-gift small {
  color: var(--paper-dim);
  font-size: 0.72rem;
}

.pick-gift__stamp {
  margin-left: auto;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pick-gift.is-on .pick-gift__stamp {
  background: #6f8f6a;
  border-color: #6f8f6a;
  color: #111;
}

.slots,
.bag {
  display: grid;
  gap: 0.7rem;
}

.slot-row,
.bag-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(246, 239, 224, 0.16);
  background: rgba(246, 239, 224, 0.03);
  color: var(--paper);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.slot-row.is-on,
.slot-row.is-set {
  border-color: var(--gold);
}

.slot-body {
  padding: 0.8rem 0 0;
}

.bag-head {
  gap: 0.6rem;
  cursor: default;
}

.bag-del,
.bag-chev {
  border: 0;
  background: none;
  color: var(--paper-dim);
  font: inherit;
  cursor: pointer;
}

.bag-more {
  padding: 0.4rem 1rem 0.8rem;
  color: var(--paper-dim);
  font-size: 0.86rem;
}

.bag-go {
  margin-top: 0.4rem;
}

@media (max-width: 720px) {
  .up-grid {
    grid-template-columns: 1fr;
  }
}
