/* Language dropdown — selected item matches hover */
.dropdown-list-2 .dropdown-link.w-dropdown-link.w--current,
.dropdown-list-2 .dropdown-link.w-dropdown-link.w--current:hover {
  color: var(--forest);
  background-color: #ffffff69;
}

/* Booking form — sharp corners, consistent sizing, custom select arrow */
.js-booking-form .form-input,
.js-booking-form .form-input.w-input,
.js-booking-form .form-input.w-select,
.js-booking-form textarea.form-input {
  border-radius: 0;
  -webkit-border-radius: 0;
  box-sizing: border-box;
  height: 38px;
  min-height: 38px;
  line-height: 22px;
  font-size: 16px;
  color: var(--sand);
  background-color: #1b362c;
  border: 1px solid #d4af3740;
}

/* Filled / autofill — same look as treatment (dark bg, sand text) */
.js-booking-form input.form-input.w-input:-webkit-autofill,
.js-booking-form input.form-input.w-input:-webkit-autofill:hover,
.js-booking-form input.form-input.w-input:-webkit-autofill:focus,
.js-booking-form input.form-input.w-input:-webkit-autofill:active,
.js-booking-form textarea.form-input:-webkit-autofill,
.js-booking-form textarea.form-input:-webkit-autofill:hover,
.js-booking-form textarea.form-input:-webkit-autofill:focus,
.js-booking-form textarea.form-input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--sand) !important;
  caret-color: var(--sand);
  border: 1px solid #d4af3740 !important;
  -webkit-box-shadow: 0 0 0 1000px #1b362c inset !important;
  box-shadow: 0 0 0 1000px #1b362c inset !important;
  transition: background-color 99999s ease-out 0s;
}

.js-booking-form input.form-input.w-input:autofill,
.js-booking-form textarea.form-input:autofill {
  -webkit-text-fill-color: var(--sand);
  caret-color: var(--sand);
  border: 1px solid #d4af3740;
  box-shadow: 0 0 0 1000px #1b362c inset;
  background-color: #1b362c !important;
  color: var(--sand) !important;
}

.js-booking-form textarea.form-input.message {
  height: 100px;
  min-height: 100px;
}

.js-booking-form select.form-input.w-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #1b362c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23ffffff' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 6px;
  padding-right: 36px;
}

.js-booking-form .form-input:focus,
.js-booking-form .form-input.w-select:focus {
  border-color: #d4af3740;
  outline: 0;
}

.js-booking-form .submit-button.w-button {
  display: inline-block;
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  flex: 0 0 auto;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-field.date-field {
  position: relative;
}

.form-field.date-field input[type="date"].form-input {
  cursor: pointer;
  width: 100%;
  height: 38px;
  min-height: 38px;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

.form-field.date-field input[type="date"].form-input::-webkit-date-and-time-value {
  text-align: left;
  margin: 0;
  padding-left: 0;
  width: 100%;
}

@supports (-webkit-touch-callout: none) {
  .form-field.date-field input[type="date"].form-input {
    padding-left: 12px;
    display: block;
  }
}

.form-field.date-field input[type="date"].form-input::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.form-field.date-field label {
  cursor: pointer;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-block .w-form-done,
.form-block .w-form-fail {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  text-align: center;
  border-radius: 0;
}

.form-block .w-form-done {
  background-color: #eaeee8;
  color: #1f3d32;
}

.form-block .w-form-done > div {
  color: #1f3d32;
}

.form-block .w-form-fail {
  background-color: #eee8e8;
  color: #ba0000;
}

.form-block .w-form-fail > div {
  color: #ba0000;
}
