.hera-booking-wrapper {
  width: 100%;
  font-family: inherit;
}

.hera-booking-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 34px 32px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(16, 24, 40, 0.1);
  box-sizing: border-box;
}

.hera-booking-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.8px;
  color: #9b7447;
  text-transform: uppercase;
}

.hera-booking-title {
  margin: 0 0 26px;
  color: #101828;
  font-size: 32px !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em;
}

.hera-booking-stack,
.hera-booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
}

.hera-booking-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hera-booking-field label {
  display: block;
  margin: 0;
  color: #3f4756;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.hera-booking-field input,
.hera-booking-field select {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #d8dde6;
  border-radius: 15px;
  background: #f9fafb;
  color: #101828;
  font-family: inherit;
  font-size: 15px;
  font-weight: 650;
  line-height: 52px;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
  appearance: auto;
}

.hera-booking-field input:focus,
.hera-booking-field select:focus {
  border-color: #9b7447;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(155, 116, 71, 0.15);
}

.hera-booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin: 16px 0 0;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  background: #101828;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}

.hera-booking-submit:hover {
  background: #08284a;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.15);
}

.hera-booking-submit:active {
  transform: translateY(0);
}

.hera-booking-note {
  margin: 16px 0 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.hera-booking-note:before {
  content: '◎';
  margin-right: 4px;
  color: #6b7280;
}

@media (min-width: 520px) {
  .hera-booking-stack,
  .hera-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hera-booking-field--children {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .hera-booking-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .hera-booking-title {
    font-size: 28px !important;
  }

  .hera-booking-submit {
    font-size: 15px;
  }
}

@media (max-width: 419px) {
  .hera-booking-title {
    font-size: 26px !important;
  }
}
