.booking-section {
  padding: 50px;
}

.booking-title,
.booking-heading,
.booking-label,
.booking-help,
.booking-submit,
.booking-summary__title {
  font-family: Alike, serif;
}

.booking-title,
.booking-heading,
.booking-summary__title {
  color: rgb(80, 34, 11);
  font-weight: bold;
}

.booking-help {
  color: #000;
  line-height: 1.6;
}

.booking-form input[type="email"],
.booking-form input[type="password"],
.booking-form input[type="text"],
.booking-form input[type="number"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
}

.booking-form .form-control {
  font-family: Alike, serif;
  border: 1px solid #e6e9ed;
  border-radius: 12px;
  box-shadow: none;
  padding: 0.75rem 1rem;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form .form-control::placeholder {
  color: #adb5bd;
}

.booking-form .form-control:focus {
  border-color: #d6dbe0;
  box-shadow: 0 0 0 0.2rem rgba(112, 67, 44, 0.12);
  outline: none;
}

.booking-submit.btn {
  font-family: Alike, serif;
  background-color: var(--site-brown) !important;
  color: var(--site-cream) !important;
  border: 0 !important;
  padding: 0.6rem 1rem;
  display: inline-block;
  width: auto;
  min-width: 220px;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.booking-submit.btn:hover,
.booking-submit.btn:focus,
.booking-submit.btn:active,
.booking-submit.btn:focus-visible {
  background-color: var(--site-brown) !important;
  color: var(--site-cream) !important;
  border: 0 !important;
}


.booking-booth-image {
  border-radius: 12px;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.booking-check {
  margin-bottom: 0.5rem;
}

.booking-check-inline {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.summary-block {
  border: 1px solid #e6e9ed;
  border-radius: 12px;
  background: #fff;
  font-family: Alike, serif;
}

.booking-summary__note {
  margin-top: 0.75rem;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  direction: rtl;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ffc107;
}

.star-rating label.selected {
  color: #ffd166;
}

.star-rating .star:before {
  content: attr(data-count);
  display: inline-block;
  filter: none;
}

.audio-guestbook-description {
    color: rgb(80, 34, 11);
}

@media (max-width: 767.98px) {
  .booking-section .row > [class*="col-"] {
    margin-bottom: 1rem;
  }

  .booking-section .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .booking-section {
    padding: 32px 20px;
  }

  .star-rating label {
    font-size: 1.75rem;
  }
}