.st-booking-form {
    margin: 0 auto;
    margin-bottom: var(--main-section-margin-bottom);
    max-width: 750px;

    --st-select-chevron: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23333'/%3E%3C/svg%3E");
}

h2.st-booking-form__title {
    line-height: 1;
    margin-bottom: clamp(5px, 0.5vw, 10px);
    font-family: var(--main-heading-font-family);
    padding: 0;
    font-size: var(--main-heading-font-size);
}

    .st-booking-form__container {
    position: relative;
}

.st-booking-form__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: var(--main-text-font-family);
}

.st-booking-form__input-wrapper {
    display: flex;
    gap: 30px;
}

.st-booking-form__input-wrapper--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.st-booking-form__input-wrapper[hidden] {
    display: none;
}

.st-booking-form__input-container--date {
    position: relative;
}

.st-booking-form__input-container {
    flex: 1;
}

.st-booking-form__label {
    font-weight: 500;
}

.st-booking-form__small {
    line-height: 1.25;
    display: block;
    margin-bottom: 5px;
    opacity: 0.75;
}

select.st-booking-form__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: var(--st-select-chevron);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: .75em;

    padding-right: calc(10px * 2 + .75em);
}

input.st-booking-form__input, .st-booking-form__input {
    background: white;
    border: none !important;
    text-decoration: none;
    outline: none;
    max-width: 100%;
    width: 100%;
    color: #333;
    vertical-align: middle;
    font-size: 15px;
    line-height: normal;
    display: block;
    border-radius: 5px;
    padding: 10px 12px;
    box-sizing: border-box;
    height: 40px;
}

.st-booking-form__input--hidden {
    position:absolute !important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0 0 0 0)!important;
    white-space:nowrap!important;
    border:0!important;
    top: calc(100% + 5px);
    pointer-events: none;
}

.st-booking-form__divider {
    height: 1px;
    margin: 10px 0;
}

.st-booking-form__date-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    cursor: pointer;
    line-height: 1.25;
    min-height: 40px;
    height: unset;
    padding-top: 7px;
    padding-bottom: 7px;
    align-items: center;
    font-size: 16px;
    color: rgba(51, 51, 51, 0.8);
}

.st-booking-form__date-chip {
    background: #f1f5f9;
    color: black;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.st-booking-form__date-chip-label {
    padding: 3px 5px 3px 7px;
}

.st-booking-form__date-remove {
    all: unset;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 3px 5px 3px 5px;
}

.st-booking-form__date-remove:hover {
    background: #d4e0eb;
    color: black;
}

.pac-container {
    border-top: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: solid 1px #ccc;
    border-radius: 10px;
}

.pac-item {
    padding: 0 15px;
    border-top: unset;
}

.pac-item:hover {
    background: #dae7f9;
}

.pac-icon-marker {
    display: none;
}

.pac-logo::after {
    display: none;
}

.st-booking-form__input-area {
    resize: none;
    height: 275px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.st-booking-form__input-area::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}

.st-booking-form__input-area::-webkit-scrollbar-thumb {
    background-color: #C8CBCE;
    border-radius: 10px;
}

.st-booking-form__input-area::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    background-color: transparent;
    border-radius: 10px;
}

.st-booking-form__count {
    width: 100%;
    display: block;
    background: white;
    text-align: end;
    padding: 8px 12px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

input.st-booking-form__submit {
    font-family: var(--main-heading-font-family);
    font-weight: 600;
    background: var(--main-button-color);
    transition: all 0.15s ease-in-out;
    border-radius: 10px;
    border: 2px var(--main-button-color) solid;
    font-size: clamp(22px, 2.1vw, 30px);
    padding-top: clamp(11px, clamp(2%, calc(2% + (1920px - 100%) * (1.5 / 896)), 3%), 18px);
    padding-bottom: clamp(6px, 1.5%, 12px);
    min-width: 200px;
    max-width: 500px;
    margin: auto;
    width: 80%;
}

input.st-booking-form__submit:hover, input.st-booking-form__submit:focus, input.st-booking-form__submit:focus-visible {
    background: rgb(21 57 26);
    border-color: rgb(21 57 26);
}

.st-booking-form__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 75px;
    filter: invert(1);
    opacity: 0.5;
    display: none;
}

.st-booking-form__sent {
    position: absolute;
    width: 100%;
    align-items: center;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease-in-out;
    left: 0;
}

.st-booking-form__sent-img {
    width: 14vw;
}

h3.st-booking-form__sent-title {
    font-weight: 600;
    font-family: bookmania, sans-serif;
    margin: 0;
    margin-top: 30px;
    font-size: var(--main-heading-font-size);
}

p.st-booking-form__sent-text {
    margin-bottom: 0;
    font-family: franklin-gothic-urw, sans-serif;
    color: black;
    line-height: 1.1;
    font-size: var(main-text-font-size);
}

@media (max-width: 1023px) {
    h2.st-booking-form__title {
        font-size: var(--main-heading-font-size-tablet);
    }
}

@media (max-width: 767px) {
    h2.st-booking-form__title {
        font-size: var(--main-heading-font-size-mobile);
    }

    .st-booking-form__input-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .st-booking-form__input-wrapper--grid {
        display: inherit;
    }
}

/* =====================================================================
   Searchable picker (genre / game system) — append to
   st-0026-component-contact-form.css
   The native <select> stays in the DOM for submitting and validation; it
   sits behind the field, invisible but focusable, so the browser can still
   focus it and show its own message when the form is submitted empty.
   ===================================================================== */

.st-combo { position: relative; }

select.st-combo__native {
  position: absolute; inset: 0; width: 100%; height: 40px;
  opacity: 0; pointer-events: none; z-index: 0;
  /* not display:none — a hidden field cannot be focused for validation */
}

button.st-combo__field {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 40px;
    padding: 10px calc(10px * 2 + .75em) 10px 12px;

    background-color: #fff;
    background-image: var(--st-select-chevron);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: .75em;

    border: none;
    border-radius: 5px;
    cursor: pointer;

    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 15px;
    line-height: normal;
    color: #333;
    text-align: left;
    font-weight: 400;
}
.st-combo__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.st-combo__field:focus-visible { outline: 2px solid var(--main-button-color, #1b4621); outline-offset: 2px; }

.st-combo__pop {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px);
  background: #fff; border: 1px solid #e2ded8; border-radius: 10px;
  box-shadow: 0 14px 34px rgba(31,15,7,.18); overflow: hidden;
}
.st-combo__pop[hidden] { display: none; }

.st-combo__search { position: relative; padding: 8px; border-bottom: 1px solid #efeae4; }
.st-combo__search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: #8d837c; pointer-events: none; }
input.st-combo__search-input {
  width: 100%; height: 34px; padding: 6px 10px 6px 32px;
  border: 1px solid #e2ded8; border-radius: 6px; background: #fff;
  font-family: var(--main-text-font-family); font-size: 14px; color: #333;
}
input.st-combo__search-input:focus { outline: none; border-color: #333; border-style: solid; }

ul.st-combo__list {
  margin: 0; padding: 6px; list-style: none; max-height: 260px; overflow-y: auto;
  overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #C8CBCE transparent;
}
.st-combo__list::-webkit-scrollbar { width: 6px; background-color: transparent; }
.st-combo__list::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0); background-color: transparent; border-radius: 10px; }
.st-combo__list::-webkit-scrollbar-thumb { background-color: #C8CBCE; border-radius: 10px; }

.st-combo__group {
  padding: 10px 10px 0px; font-family: var(--main-text-font-family);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8d837c;
}
.st-combo__opt {
  padding: 9px 10px 9px 25px; border-radius: 6px; cursor: pointer;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif; font-size: 15px; line-height: 1.25; color: #333;
}
.st-combo__opt:hover, .st-combo__opt.is-active { background: #f3efe9; }
/* The current choice stays visible but greyed out and unclickable-looking. */
.st-combo__opt.is-selected { color: #a49a93; cursor: default; }
.st-combo__opt.is-selected:hover { background: transparent; }
.st-combo__empty { margin: 0; padding: 14px 12px; font-size: 14px; color: #8d837c; }


@media (max-width: 767px) {
  .st-combo__list { max-height: 45vh; }
}