.container-bristol-hero {
    margin: 0 auto;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-bristol-hero .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container-bristol-hero .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container-bristol-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, #000 0%, rgba(115, 115, 115, 0.00) 58.73%);
}

.container-bristol-hero .image-credits {
    position: absolute;
    right: 12px;
    top: 24px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 150%;
    opacity: 1;
    text-align: right;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    z-index: 10;
}

.container-bristol-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@keyframes bookingBarFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.container-bristol-hero .booking-bar {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    height: 105px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.container-bristol-hero .booking-bar.is-fixed {
    position: fixed;
    top: 68px;
    left: 0;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
    border-radius: 0;
    border-top: 1px solid var(--Secundary-100, #F5EBDE);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(20px);
    height: 72px;
    animation: bookingBarFadeIn 0.3s ease forwards;
}

.container-bristol-hero .booking-bar.is-fixed .booking-form {
    max-width: 1440px;
    margin: 0 auto;
    justify-content: center;
}

.container-bristol-hero .booking-form {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    align-items: center;
}

.container-bristol-hero .booking-fields-wrapper {
    display: flex;
    align-items: center;
    padding-left: 32px;
    padding-right: 16px;
    height: 100%;
}

.container-bristol-hero .booking-field {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 16px 14px 16px;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    min-width: 140px;
    gap: 18px;
}

.container-bristol-hero .booking-bar.is-fixed .booking-field {
    padding-top: 18px;
    padding-bottom: 8px;
    gap: 16px;
}

.container-bristol-hero .booking-field::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 55px;
    background-color: #c2a175;
    right: 0;
    top: 28px;
}

.container-bristol-hero .booking-bar.is-fixed .booking-field::after {
    top: 18px;
    height: 43px;
}

.container-bristol-hero .booking-field:last-child::after {
    display: none;
}

.container-bristol-hero .booking-field label {
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: #322617;
    margin-bottom: 0;
}

.container-bristol-hero .booking-field input,
.container-bristol-hero .booking-field select {
    border: none;
    background: transparent;
    font-weight: 500;
    color: #b3b2b2;
    padding: 0;
    outline: none;
    width: 100%;
    line-height: 24px;
    height: 24px;
    appearance: none;
    cursor: pointer;
}

.container-bristol-hero .booking-bar.is-fixed .booking-field input,
.container-bristol-hero .booking-bar.is-fixed .booking-field select {
    line-height: 10px;
    height: 10px;
}

.container-bristol-hero .booking-field select {
    padding-right: 20px;
    background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C2A175' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right center;
}

.container-bristol-hero .booking-field input::placeholder,
.container-bristol-hero .booking-field select::placeholder {
    color: #B3B2B2;
    opacity: 1;
}

.container-bristol-hero .guests-selector {
    position: relative;
    cursor: pointer;
}

.container-bristol-hero .guests-count {
    font-weight: 500;
    color: #b3b2b2;
    line-height: 24px;
    display: block;
    padding-right: 20px;
    background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C2A175' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right center;
    border: none;
    outline: none;
    width: 100%;
    cursor: pointer;
}

.container-bristol-hero .guests-dropdown {
    position: absolute;
    top: 100%;
    left: -16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    z-index: 10;
    min-width: 200px;
    margin-top: 15px;
}

.container-bristol-hero .guests-dropdown.hide {
    display: none;
}

.container-bristol-hero .guests-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.container-bristol-hero .guests-row:last-child {
    margin-bottom: 0;
}

.container-bristol-hero .guests-row span {
    font-size: 14px;
    color: #322617;
}

.container-bristol-hero .counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.container-bristol-hero .counter button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #c2a175;
    background: transparent;
    color: #c2a175;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
padding: 0;
}

.container-bristol-hero .counter input {
    width: 30px;
    text-align: center;
    font-size: 14px;
    color: #322617;
    background: transparent;
    border: none;
}

.container-bristol-hero .counter input::-webkit-inner-spin-button,
.container-bristol-hero .counter input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.container-bristol-hero .booking-submit {
    height: 100%;
}

.container-bristol-hero .booking-submit button {
    background: #9e5520;
    color: #fbf8f8;
    border: none;
    padding: 13px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    height: 100%;
    transition: background 0.3s;
    min-width: 180px;
}

.container-bristol-hero .booking-submit button:hover {
    background: #81451a;
}

@media (max-width: 1024px) {
    .container-bristol-hero {
        align-items: flex-end;
        padding-bottom: 35px;
    }

    .container-bristol-hero .image-credits {
        right: 12px;
        top: 74px;
    }

    .container-bristol-hero .booking-bar {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 336px;
        margin: 40px auto 0 auto;
        height: auto;
        flex-direction: column;
        border-radius: 8px;
        background: #fff;
    }

    .container-bristol-hero .booking-bar.is-fixed {
        position: fixed;
        top: 92px;
        max-width: 100%;
        margin: 0;
    }

    .container-bristol-hero .booking-form {
        flex-direction: column;
    }

    .container-bristol-hero .booking-fields-wrapper {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 24px 16px;
        padding: 24px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .container-bristol-hero .booking-field {
        grid-column: span 12;
        min-width: 0;
        padding: 0 0 8px 0;
        height: auto;
        border-bottom: 1px solid #c2a175;
    }

    .container-bristol-hero .booking-field::after {
        display: none;
    }

    .container-bristol-hero .booking-field label {
        margin-bottom: 8px;
    }

    .container-bristol-hero .field-checkin,
    .container-bristol-hero .field-checkout {
        grid-column: span 6;
    }

    .container-bristol-hero .field-guests {
        grid-column: span 4;
        max-width: 100% !important;
    }

    .container-bristol-hero .field-promo {
        grid-column: span 8;
    }

    .container-bristol-hero .booking-submit {
        width: 100%;
        height: 74px;
    }

    .container-bristol-hero .booking-submit button {
        width: 100%;
        min-width: 100%;
        height: 100%;
        padding: 0;
    }
}

@media(max-width: 768px) {
    .container-bristol-hero .booking-bar {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
}