.booking-shell {
  min-height: 100svh;
  padding: 3.25rem 4rem;
  background: #efe5d9;
  color: #2a130f;
  box-sizing: border-box;
  text-align: left;
  max-width: 95rem;
  margin: auto;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}

.booking-logo {
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.booking-exit-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: #2a130f;
  text-decoration: none;
  cursor: pointer;
}

.desktop-summary {
  position: sticky;
  top:1.5rem;
}

.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
  color: #8f6258;
}

.step-progress-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-progress-dot {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border: 1px solid #d6c8b9;
  border-radius: 999px;
  font-size: 0.75rem;
}

.step-progress-dot.is-active,
.step-progress-dot.is-complete {
  border-color: #8f6258;
  background: #8f6258;
  color: #efe5d9;
}

.step-progress-label {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.step-progress-line {
  width: 3.75rem;
  height: 1px;
  background: #c7ad9f;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28.75rem;
  gap: 4rem;
  align-items: start;
}

.booking-step {
  max-width: 58rem;
}

.booking-step-heading {
  margin-bottom: 4rem;
}

.booking-step-heading.compact {
  margin-bottom: 2rem;
}

.booking-step-heading h1 {
  margin: 0 0 0.75rem;
  color: #2a130f;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.booking-step-heading p,
.booking-card p,
.booking-step-footer p,
.booking-muted {
  color: #7a6b60;
  font-size: 0.875rem;
  line-height: 1.4;
}

.booking-section-label {
  margin-bottom: 1rem;
  color: #2a130f;
  font-size: 0.9rem;
}

.booking-error {
  color: #9f2d20;
  font-size: 0.875rem;
}

.booking-field-group {
  margin-bottom: 2rem;
}

.booking-card {
  border: 1px solid #d5c5b5;
  border-radius: 0.75rem;
  background: rgba(239, 229, 217, 0.45);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.booking-card:hover,
.booking-card.is-selected {
  border-color: #8f6258;
}

.availability-filter-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.availability-filter-select {
  position: relative;
}

.availability-filter-select select {
  min-width: 180px;
  height: 58px;
  padding: 0 2.125rem 0 24px;
  border: 1px solid rgba(47, 25, 24, 0.25);
  border-radius: 6px;
  background-color: transparent;
  color: #2f1918;
  font: inherit;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
}

.availability-filter-select::after {
  content: "⌄";
  position: absolute;
  top: 40%;
  right: 20px;
  pointer-events: none;
  transform: translateY(-55%);
  color: #2f1918;
  font-size: 22px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.guest-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.guest-card h2,
.room-card h2,
.extra-card h2,
.guest-details-card h2 {
  margin: 0 0 0.35rem;
  color: #2a130f;
  font-size: 1.25rem;
}

.counter-control {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 5rem;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid #d5c5b5;
  border-radius: 0.5rem;
}

.counter-control button {
  border: 0;
  background: transparent;
  color: #2a130f;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.counter-control button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}

.booking-step-footer.align-right {
  justify-content: flex-end;
}

.booking-primary-button,
.booking-secondary-button,
.booking-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0.375rem;
  padding: 0.8rem 0.7rem 0.8rem 0.7rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.booking-primary-button {
  border: 1px solid #2a130f;
  background: #2a130f;
  color: #efe5d9;
}

.booking-primary-button:hover {
  background: #8f6258;
  border-color: #8f6258;
}

.booking-secondary-button,
.booking-outline-button {
  border: 1px solid #d5c5b5;
  background: transparent;
  color: #2a130f;
}

.booking-secondary-button:hover,
.booking-outline-button:hover {
  border-color: #8f6258;
  background: #8f6258;
  color: #efe5d9;
}

.departure-destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.destination-card {
  position: relative;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
}

.destination-card span {
  display: block;
  color: #7a6b60;
  font-size: 0.75rem;
}

.destination-card strong {
  display: block;
  margin-top: 0.25rem;
  color: #2a130f;
  font-size: 1rem;
  font-weight: 400;
}

.destination-check {
  position: absolute;
  right: 1rem;
  top: 50%;
  display: grid !important;
  width: 2rem;
  height: 2rem;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 0.2rem;
  background: #2a130f;
  color: #efe5d9 !important;
}

.availability-list,
.room-list,
.extras-list,
.guest-details-list {
  display: grid;
  gap: 0.75rem;
}

.room-step-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}


.room-step-summary .booking-section-label {
  margin-bottom: 0;
}

.room-category-group {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.room-category-title {
  margin: 0;
  color: #2a130f;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.availability-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.availability-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem;
}

.availability-card strong {
  color: #2a130f;
  font-weight: 400;
}

.room-card,
.extra-card {
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1rem;
}

.empty-extras-card {
  padding: 1.5rem;
}

.empty-extras-card h2 {
  margin: 0 0 0.35rem;
  color: #2a130f;
  font-size: 1.25rem;
}

.empty-extras-card p {
  color: #7a6b60;
  font-size: 0.875rem;
  line-height: 1.4;
}

.booking-card-image {
  position: relative;
  min-height: 11rem;
  overflow: hidden;
  border-radius: 0.45rem;
  background: #c9a58c;
}

.booking-card-image img,
.booking-card-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  background:
    linear-gradient(rgba(42, 19, 15, 0.05), rgba(42, 19, 15, 0.05)),
    linear-gradient(135deg, #bf8f6f, #ead7c5);
}

.image-arrow {
  position: absolute;
  bottom: 0.75rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.image-arrow-left {
  left: 0.75rem;
  background: rgba(42, 19, 15, 0.25);
  color: #efe5d9;
}

.image-arrow-right {
  left: 2.3rem;
  background: #efe5d9;
  color: #2a130f;
}

.room-card-content,
.extra-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-title-row span {
  border: 1px solid #d5c5b5;
  border-radius: 999px;
  padding: 0.15rem 0.4rem;
  color: #8f6258;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #7a6b60;
  font-size: 0.8rem;
}

.feature-list li::before {
  content: "⌁";
  margin-right: 0.5rem;
  color: #8f6258;
}

.card-action-row,
.extra-action-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.room-quantity-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  border-radius: 0.375rem;
  background: #2a130f;
  color: #efe5d9;
}

.room-quantity-control button {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.room-quantity-control button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.room-quantity-control span {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}

.card-action-row strong,
.extra-action-row strong {
  color: #8f6258;
  font-size: 0.85rem;
  font-weight: 400;
}

.guest-details-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.guest-details-heading {
  margin-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field span {
  color: #7a6b60;
  font-size: 0.75rem;
}

.form-field input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid #d5c5b5;
  border-radius: 0.35rem;
  padding: 0 0.875rem;
  background: transparent;
  color: #2a130f;
  box-sizing: border-box;
}

.booking-info {
  border-radius: 0.75rem;
  padding: 2rem 2.2rem;
  background-color: #8f6258;
  color: #efe5d9;
  /*width: 28.75rem;*/
}

.booking-summary-toggle {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(239, 229, 217, 0.6);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: transparent;
  color: #efe5d9;
  font-size: 0.7rem;
  cursor: pointer;
}

.booking-info-title {
  margin-bottom: 2rem;
}

.booking-info-title p {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  color: #efe5d9;
}

.booking-info-title span {
  color: rgba(239, 229, 217, 0.75);
  font-size: 0.875rem;
}

.booking-info-list {
  border-top: 1px solid rgba(239, 229, 217, 0.18);
}

.booking-info-row,
.booking-info-total {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(239, 229, 217, 0.18);
  padding: 1rem 0;
  font-size: 0.95rem;
}

.booking-info-row strong,
.booking-info-total strong {
  max-width: 60%;
  color: rgba(239, 229, 217, 0.82);
  font-weight: 400;
  text-align: right;
}

.booking-info-total {
  margin-top: 1rem;
  border-bottom: 0;
}

.booking-info-total strong {
  color: #efe5d9;
  font-size: 1.125rem;
  font-weight: 500;
}

.booking-summary-cta {
  display: flex;
  width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  border: 1px solid #efe5d9;
  border-radius: 0.35rem;
  background: #efe5d9;
  color: #2a130f;
  cursor: pointer;
}

.booking-info-note {
  margin-top: 1.25rem;
  color: rgba(239, 229, 217, 0.6);
  font-size: 0.75rem;
  line-height: 1.4;
}

.mobile-summary {
  display: none;
}

.desktop-summary {
  position: sticky;
  top:1.5rem;
}

@media (max-width: 767px) {
  .booking-shell {
    padding: 1.5rem 1rem;
  }

  .booking-header {
    margin-bottom: 1.25rem;
  }

  .booking-logo {
    font-size: 1.45rem;
  }

  .booking-exit-button {
    font-size: 0.75rem;
  }

  .mobile-summary {
    display: block;
    margin-bottom: 2rem;
  }

  .desktop-summary {
    display: none;
  }

  .booking-info-mobile {
    padding: 0.5rem;
  }

  .booking-info-mobile .booking-summary-toggle {
    width: 100%;
    margin-bottom: 0;
    border: 0;
    border-radius: 0.4rem;
    padding: 0.9rem 1rem;
    background: #8f6258;
  }

  .booking-info-mobile .booking-info-content {
    display: none;
  }

  .step-progress {
    justify-content: flex-start;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #c7ad9f;
    padding-bottom: 0.75rem;
  }

  .step-progress-item {
    display: none;
  }

  .step-progress-item.is-active-item {
    display: flex;
  }

  .step-progress-dot,
  .step-progress-line {
    display: none;
  }

  .step-progress-label {
    display: block;
  }

  .booking-layout {
    display: block;
  }

  .booking-step-heading {
    margin-bottom: 2rem;
  }

  .booking-step-heading h1 {
    font-size: 1.75rem;
  }

  .departure-destination-grid {
    grid-template-columns: 1fr;
  }

  .guest-card,
  .availability-card {
    align-items: flex-start;
    padding: 1.25rem;
  }

  .room-step-summary {
    display: block;
  }

  .room-step-summary .booking-muted {
    margin-top: 0.35rem;
  }

  .guest-card,
  .availability-card,
  .card-action-row,
  .extra-action-row {
    flex-direction: column;
  }

  .room-quantity-control {
    width: 100%;
    min-height: 3rem;
  }

  .room-quantity-control button {
    flex: 1;
    height: 3rem;
  }

  .room-card,
  .extra-card {
    grid-template-columns: 1fr;
  }

  .booking-card-image,
  .booking-card-image img,
  .booking-card-image-placeholder {
    min-height: 12rem;
  }

  .form-grid.two-columns {
    grid-template-columns: 1fr;
  }

  .booking-step-footer {
    position: sticky;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: 2rem;
    background: #efe5d9;
  }

  .booking-step-footer p {
    display: none;
  }

  .booking-primary-button,
  .booking-secondary-button,
  .booking-outline-button {
    width: 100%;
  }
}
