@charset "UTF-8";
.hm-search-box {
  width: 100%;
  background: transparent;
  display: block;
  visibility: visible;
  opacity: 1;
}

.hm-search-form {
  width: 100%;
}

.hm-search-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}

.hm-fields-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.hm-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  flex: 0 1 auto;
  white-space: nowrap;
}
.hm-field label {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.hm-field input[type=date] {
  width: 150px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  box-sizing: border-box;
  cursor: pointer;
}
.hm-field input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.hm-field input[type=date]:focus {
  outline: none;
  border-color: #c9a84c;
}

.hm-field-adults {
  min-width: 0;
}

/* ── number input ── */
.hm-number-input {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hm-number-input input[type=number] {
  width: 50px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
  box-sizing: border-box;
}
.hm-number-input input[type=number]::-webkit-inner-spin-button, .hm-number-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hm-number-input button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  font-family: inherit;
  position: relative;
}
.hm-number-input button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}
.hm-number-input button.hm-minus::before {
  border-width: 6px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
.hm-number-input button.hm-plus::before {
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #fff transparent;
}
.hm-number-input button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── horizontal shadow band across the full shortcut ── */
.hm-search-box:not(.hm-mobile) {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.hm-search-box:not(.hm-mobile) .hm-search-fields {
  row-gap: 1.25rem;
}

/* ── submit button ── */
.hm-btn-submit {
  height: 44px;
  padding: 0 2rem;
  border: none;
  border-radius: 4px;
  background: #c9a84c;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.hm-btn-submit:hover {
  background: #b8942e;
}

/* ── mobile toggle (hidden on desktop) ── */
.hm-toggle-btn {
  display: none;
}

/* ── mobile ── */
@media (max-width: 992px) {
  .hm-search-box:not(.hm-mobile) {
    display: none;
  }
  .hm-search-box.hm-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9995;
    border-radius: 0 !important;
    border: none !important;
  }
  .hm-search-box.hm-mobile > .hm-search-form {
    border-radius: 0;
    background: #1a2639;
    padding: 0 1.25rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.4s ease;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hm-search-box.hm-mobile.hm-open > .hm-search-form {
    max-height: 500px;
    opacity: 1;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .hm-search-box.hm-mobile > .hm-toggle-btn {
    display: block;
    width: 100%;
    height: 54px;
    border: none;
    background: #c9a84c;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 !important;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
  }
  .hm-search-box.hm-mobile > .hm-toggle-btn:hover {
    background: #b8942e;
  }
  .hm-search-fields {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .hm-fields-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
  }
  .hm-field {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    white-space: normal;
  }
  .hm-field label {
    font-size: 0.85rem;
  }
  .hm-field input[type=date] {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    padding-left: 0;
  }
  .hm-number-input {
    width: 100%;
    justify-content: center;
  }
  .hm-number-input input[type=number] {
    flex: 1;
    width: auto;
    max-width: 6rem;
  }
  .hm-btn-submit {
    width: 100%;
    border-radius: 0;
  }
}/*# sourceMappingURL=searchbox.css.map */