.vbhs-search-box,
.vbhs-search-box *,
.vbhs-floating-panel,
.vbhs-floating-panel * {
    box-sizing: border-box;
}

.vbhs-search-box {
    --vbhs-bg: #ffffff;
    --vbhs-text: #111111;
    --vbhs-muted: #6b6b6b;
    --vbhs-border: #e7e2dc;
    --vbhs-accent: #c79a5b;
    --vbhs-button-bg: #111111;
    --vbhs-button-text: #ffffff;
    --vbhs-dropdown-bg: #ffffff;
    --vbhs-shadow: rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 1;
    width: 100%;
    color: var(--vbhs-text);
    font-family: inherit;
    line-height: 1.4;
    isolation: isolate;
}

.vbhs-search-box [hidden],
.vbhs-floating-panel[hidden] {
    display: none !important;
}

.vbhs-search-box .screen-reader-text {
    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;
}

.vbhs-search-box button,
.vbhs-search-box input,
.vbhs-search-box select,
.vbhs-floating-panel button,
.vbhs-floating-panel input,
.vbhs-floating-panel select {
    font: inherit;
}

.vbhs-search-box button,
.vbhs-floating-panel button {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    margin: 0;
    padding: 0;
    background: none;
    color: inherit;
    box-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.vbhs-search-box button::before,
.vbhs-search-box button::after,
.vbhs-floating-panel button::before,
.vbhs-floating-panel button::after {
    content: none !important;
    display: none !important;
}

.vbhs-search-box .vbhs-inner {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    border: 1px solid var(--vbhs-border);
    border-radius: 14px;
    background: var(--vbhs-bg);
    box-shadow: 0 12px 32px var(--vbhs-shadow);
    overflow: visible;
}

.vbhs-search-box .vbhs-fields {
    display: grid;
    flex: 1 1 auto;
    min-width: 0;
}

.vbhs-search-box .vbhs-fields-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vbhs-search-box .vbhs-fields-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vbhs-search-box .vbhs-field {
    position: relative;
    min-width: 0;
    min-height: 74px;
    border-right: 1px solid var(--vbhs-border);
    background: transparent;
}

.vbhs-search-box .vbhs-trigger,
.vbhs-search-box .vbhs-promo-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 74px;
    padding: 18px 22px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--vbhs-text);
    box-shadow: none;
    text-align: left;
}

.vbhs-search-box .vbhs-trigger:hover,
.vbhs-search-box .vbhs-trigger:focus-visible,
.vbhs-search-box .vbhs-promo-input:hover,
.vbhs-search-box .vbhs-promo-input:focus {
    background: color-mix(in srgb, var(--vbhs-accent) 8%, transparent);
}

@supports not (background: color-mix(in srgb, #000 10%, transparent)) {
    .vbhs-search-box .vbhs-trigger:hover,
    .vbhs-search-box .vbhs-trigger:focus-visible,
    .vbhs-search-box .vbhs-promo-input:hover,
    .vbhs-search-box .vbhs-promo-input:focus {
        background: rgba(127, 127, 127, 0.08);
    }
}

.vbhs-search-box .vbhs-trigger:focus-visible,
.vbhs-search-box .vbhs-promo-input:focus-visible,
.vbhs-floating-panel button:focus-visible,
.vbhs-floating-panel select:focus-visible {
    outline: 2px solid var(--vbhs-accent);
    outline-offset: -2px;
}

.vbhs-search-box .vbhs-value {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: var(--vbhs-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vbhs-search-box .vbhs-value.is-set {
    color: var(--vbhs-text);
    font-weight: 600;
}

.vbhs-search-box .vbhs-arrow {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-left: 14px;
    border-right: 1.5px solid var(--vbhs-accent);
    border-bottom: 1.5px solid var(--vbhs-accent);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 160ms ease;
}

.vbhs-search-box .vbhs-trigger[aria-expanded="true"] .vbhs-arrow {
    transform: rotate(225deg) translate(-1px, -1px);
}

.vbhs-search-box .vbhs-promo-input {
    display: block;
    color: var(--vbhs-text);
}

.vbhs-search-box .vbhs-promo-input::placeholder {
    color: var(--vbhs-muted);
    opacity: 1;
}

.vbhs-search-box .vbhs-submit {
    display: flex;
    flex: 0 0 auto;
    padding: 8px;
    background: var(--vbhs-bg);
    border-radius: 0 14px 14px 0;
}

.vbhs-search-box .vbhs-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 150px;
    min-height: 58px;
    padding: 14px 24px;
    border-radius: 10px;
    background: var(--vbhs-button-bg);
    color: var(--vbhs-button-text);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 160ms ease, transform 160ms ease;
}

.vbhs-search-box .vbhs-submit-button:hover {
    opacity: 0.9;
}

.vbhs-search-box .vbhs-submit-button:active {
    transform: translateY(1px);
}

.vbhs-search-box .vbhs-submit-button:focus-visible {
    outline: 2px solid var(--vbhs-accent);
    outline-offset: 2px;
}

.vbhs-search-box .vbhs-submit-arrow {
    width: 18px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    transform: translateY(4px);
    position: relative;
}

.vbhs-search-box .vbhs-submit-arrow::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.vbhs-search-box .vbhs-error {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 3;
    display: none;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    background: #8b1e1e;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.vbhs-search-box .vbhs-error.is-visible {
    display: block;
}

.vbhs-datepicker,
.vbhs-guests-dropdown,
.vbhs-floating-panel {
    --vbhs-bg: #ffffff;
    --vbhs-text: #111111;
    --vbhs-muted: #6b6b6b;
    --vbhs-border: #e7e2dc;
    --vbhs-accent: #c79a5b;
    --vbhs-button-bg: #111111;
    --vbhs-button-text: #ffffff;
    --vbhs-dropdown-bg: #ffffff;
    --vbhs-shadow: rgba(0, 0, 0, 0.10);
    z-index: 2147483000;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 20px;
    border: 1px solid var(--vbhs-border);
    border-radius: 14px;
    background: var(--vbhs-dropdown-bg);
    color: var(--vbhs-text);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.20);
    font-family: inherit;
    line-height: 1.4;
    -webkit-overflow-scrolling: touch;
}

.vbhs-floating-panel {
    position: fixed !important;
    margin: 0 !important;
}

.vbhs-floating-panel.vbhs-panel-open {
    animation: vbhs-panel-in 150ms ease-out both;
}

.vbhs-panel-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--vbhs-muted);
    font-size: 24px;
    line-height: 1;
}

.vbhs-panel-close:hover,
.vbhs-panel-close:focus-visible {
    background: rgba(127, 127, 127, 0.12);
    color: var(--vbhs-text);
}

.vbhs-calendar-header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 8px;
    padding: 0 34px 14px 0;
}

.vbhs-calendar-title {
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vbhs-calendar-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--vbhs-border) !important;
    border-radius: 50%;
    color: var(--vbhs-text);
    font-size: 26px;
    line-height: 1;
}

.vbhs-calendar-nav:hover:not(:disabled),
.vbhs-calendar-nav:focus-visible:not(:disabled) {
    border-color: var(--vbhs-accent) !important;
    background: rgba(127, 127, 127, 0.08);
}

.vbhs-calendar-nav:disabled {
    cursor: default;
    opacity: 0.28;
}

.vbhs-calendar-weekdays,
.vbhs-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.vbhs-calendar-weekdays {
    margin-bottom: 6px;
}

.vbhs-calendar-weekdays span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    color: var(--vbhs-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.vbhs-calendar-blank {
    min-width: 0;
    height: 40px;
}

.vbhs-day {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 40px;
    border-radius: 50%;
    color: var(--vbhs-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.vbhs-day:hover:not(:disabled),
.vbhs-day:focus-visible:not(:disabled) {
    background: rgba(127, 127, 127, 0.11);
}

.vbhs-day.is-today:not(.is-selected)::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--vbhs-accent);
    transform: translateX(-50%);
}

.vbhs-day.is-selected,
.vbhs-day.is-range-start,
.vbhs-day.is-range-end {
    background: var(--vbhs-button-bg);
    color: var(--vbhs-button-text);
}

.vbhs-day.is-in-range:not(.is-selected):not(.is-range-start):not(.is-range-end) {
    border-radius: 8px;
    background: color-mix(in srgb, var(--vbhs-accent) 18%, transparent);
}

@supports not (background: color-mix(in srgb, #000 10%, transparent)) {
    .vbhs-day.is-in-range:not(.is-selected):not(.is-range-start):not(.is-range-end) {
        background: rgba(127, 127, 127, 0.14);
    }
}

.vbhs-day:disabled {
    cursor: default;
    opacity: 0.28;
}

.vbhs-guests-dropdown {
    position: relative;
    padding-top: 46px;
}

.vbhs-counter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px 42px 40px;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    border-bottom: 1px solid var(--vbhs-border);
}

.vbhs-counter-title {
    min-width: 0;
    padding-right: 8px;
    font-weight: 600;
}

.vbhs-counter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--vbhs-border) !important;
    border-radius: 50%;
    color: var(--vbhs-text);
    font-size: 21px;
    line-height: 1;
}

.vbhs-counter-btn:hover:not(:disabled),
.vbhs-counter-btn:focus-visible:not(:disabled) {
    border-color: var(--vbhs-accent) !important;
    background: rgba(127, 127, 127, 0.08);
}

.vbhs-counter-btn:disabled {
    cursor: default;
    opacity: 0.3;
}

.vbhs-counter-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    font-weight: 700;
    text-align: center;
}

.vbhs-child-ages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 14px;
}

.vbhs-child-age-field {
    display: block;
    min-width: 0;
}

.vbhs-child-age-label {
    display: block;
    margin-bottom: 5px;
    color: var(--vbhs-muted);
    font-size: 12px;
    font-weight: 600;
}

.vbhs-child-age-select {
    display: block;
    width: 100%;
    min-height: 42px;
    padding: 8px 34px 8px 11px;
    border: 1px solid var(--vbhs-border);
    border-radius: 8px;
    background: var(--vbhs-dropdown-bg);
    color: var(--vbhs-text);
    box-shadow: none;
}

.vbhs-apply-guests {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 16px !important;
    padding: 12px 18px !important;
    border-radius: 9px;
    background: var(--vbhs-button-bg) !important;
    color: var(--vbhs-button-text) !important;
    font-weight: 700;
}

.vbhs-apply-guests:hover {
    opacity: 0.9;
}

@keyframes vbhs-panel-in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .vbhs-search-box .vbhs-inner {
        display: block;
    }

    .vbhs-search-box .vbhs-fields-3,
    .vbhs-search-box .vbhs-fields-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vbhs-search-box .vbhs-field {
        border-bottom: 1px solid var(--vbhs-border);
    }

    .vbhs-search-box .vbhs-field:nth-child(even) {
        border-right: 0;
    }

    .vbhs-search-box .vbhs-fields-3 .vbhs-field:nth-child(3),
    .vbhs-search-box .vbhs-fields-4 .vbhs-field:nth-child(3),
    .vbhs-search-box .vbhs-fields-4 .vbhs-field:nth-child(4) {
        border-bottom: 0;
    }

    .vbhs-search-box .vbhs-fields-3 .vbhs-field:nth-child(3) {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .vbhs-search-box .vbhs-submit {
        padding: 8px;
        border-top: 1px solid var(--vbhs-border);
        border-radius: 0 0 14px 14px;
    }

    .vbhs-search-box .vbhs-submit-button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .vbhs-search-box .vbhs-inner {
        border-radius: 12px;
    }

    .vbhs-search-box .vbhs-fields-3,
    .vbhs-search-box .vbhs-fields-4 {
        grid-template-columns: 1fr;
    }

    .vbhs-search-box .vbhs-field,
    .vbhs-search-box .vbhs-field:nth-child(even),
    .vbhs-search-box .vbhs-fields-3 .vbhs-field:nth-child(3),
    .vbhs-search-box .vbhs-fields-4 .vbhs-field:nth-child(3),
    .vbhs-search-box .vbhs-fields-4 .vbhs-field:nth-child(4) {
        grid-column: auto;
        min-height: 62px;
        border-right: 0;
        border-bottom: 1px solid var(--vbhs-border);
    }

    .vbhs-search-box .vbhs-trigger,
    .vbhs-search-box .vbhs-promo-input {
        min-height: 62px;
        padding: 14px 17px;
    }

    .vbhs-search-box .vbhs-submit {
        border-top: 0;
    }

    .vbhs-search-box .vbhs-submit-button {
        min-height: 52px;
    }

    .vbhs-mobile-panel {
        border-radius: 16px !important;
        padding: 18px !important;
    }

    .vbhs-mobile-panel.vbhs-panel-open {
        animation-name: vbhs-mobile-panel-in;
    }

    .vbhs-calendar-header {
        padding-right: 34px;
    }

    .vbhs-day,
    .vbhs-calendar-blank {
        height: 38px;
    }

    .vbhs-child-ages {
        grid-template-columns: 1fr;
    }

    .vbhs-counter-row {
        grid-template-columns: minmax(0, 1fr) 42px 38px 42px;
    }
}

@keyframes vbhs-mobile-panel-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vbhs-search-box *,
    .vbhs-floating-panel * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
