/* Mobilny przepływ rezerwacji: jeden pasek i jeden widoczny etap. */
.booking-section .booking-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 16px;
  padding: 6px;
  border: 1px solid rgba(199, 95, 34, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  color: #5f544b;
  list-style: none;
  scroll-margin-top: 16px;
}

.booking-section .booking-progress li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 42px;
  border-radius: 11px;
  color: #5f544b;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.booking-section .booking-progress li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #e9e0d7;
  color: #51463d;
  font-size: 13px;
  font-weight: 900;
}

.booking-section .booking-progress li.is-active {
  background: #fff0e4;
  color: #9f4717;
}

.booking-section .booking-progress li.is-active span {
  background: #c75f22;
  color: #fff;
}

.booking-section .booking-progress li.is-complete span {
  background: #59684a;
  color: #fff;
}

.booking-section .booking-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  padding: 11px 13px;
  border: 1px solid rgba(89, 104, 74, 0.25);
  border-radius: 13px;
  background: #f1f4eb;
  color: #211b16;
}

.booking-section .booking-summary-bar[hidden],
.booking-section .booking-stage[hidden],
.booking-section .booking-code-step[hidden] {
  display: none !important;
}

.booking-section .booking-summary-bar p {
  min-width: 0;
  margin: 0;
  color: #211b16;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}


.booking-section #bookingSelectedSummary .booking-term-summary-line {
  display: block;
  font: inherit;
  color: inherit;
}

.booking-section .booking-summary-bar button {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid #d8c6b5;
  border-radius: 999px;
  padding: 6px 11px;
  background: #fff;
  color: #9f4717;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.booking-section .booking-stage {
  color: #211b16;
  scroll-margin-top: 16px;
}

.booking-section .booking-stage > h3 {
  margin: 0 0 14px !important;
  color: #211b16 !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em;
}

#bookingForm.booking-flow-form {
  display: block;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-section .booking-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.booking-section .booking-fields-grid label,
.booking-section .booking-code-step label {
  color: #211b16;
}

.booking-section .booking-code-step {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #eadfd2;
  border-radius: 15px;
  background: #fffaf3;
}

.booking-section .booking-code-hint {
  margin: 0;
  color: #211b16;
  font-weight: 750;
}

.booking-section .booking-status {
  margin-top: 12px;
}

.booking-section .booking-slot.is-selected {
  border-color: #9f4717;
  background: #c75f22;
  color: #fff;
  box-shadow: inset 0 0 0 1px #9f4717, 0 5px 12px rgba(159, 71, 23, 0.20);
}

@media (max-width: 920px) {
  .booking-section .booking-fields-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 599px) {
  .site-header {
    position: static !important;
  }

  html {
    scroll-padding-top: 0;
  }

  .booking-section .booking-progress {
    gap: 3px;
    margin-bottom: 13px;
    padding: 4px;
    border-radius: 13px;
  }

  .booking-section .booking-progress li {
    gap: 4px;
    min-height: 38px;
    padding: 0 3px;
    border-radius: 9px;
    font-size: 12px;
  }

  .booking-section .booking-progress li span {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .booking-section .booking-summary-bar {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
    padding: 10px 11px;
  }

  .booking-section .booking-summary-bar p {
    font-size: 13px;
    font-weight: 800;
  }

  .booking-section .booking-stage > h3 {
    margin-bottom: 12px !important;
    font-size: 21px !important;
  }

  .booking-section .booking-code-step {
    padding: 12px;
  }
}
