.bpb-booking {
  width: min(100%, 980px);
  margin: 0 auto;
}

.bpb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.bpb-steps span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #e3d8cf;
  border-radius: 8px;
  background: #fffaf6;
  color: #5c4a40;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.bpb-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.bpb-fields label {
  display: grid;
  gap: 7px;
  color: #5c4a40;
  font-size: 14px;
  font-weight: 800;
}

.bpb-fields select,
.bpb-fields input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #e3d8cf;
  border-radius: 8px;
  background: #fff;
  color: #33261f;
}

.bpb-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.bpb-slot {
  min-height: 44px;
  border: 1px solid #a9533d;
  border-radius: 8px;
  background: #fffaf6;
  color: #843a2b;
  font-weight: 800;
  cursor: pointer;
}

.bpb-slot:hover {
  background: #a9533d;
  color: #fff;
}

.bpb-status,
.bpb-notice {
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid #e3d8cf;
  border-radius: 8px;
  background: #fffaf6;
  color: #5c4a40;
  font-weight: 700;
}

@media (max-width: 720px) {
  .bpb-steps,
  .bpb-fields,
  .bpb-slots {
    grid-template-columns: 1fr;
  }
}
