html,
body {
    min-width: 0;
}

.booking-page {
    min-height: 65vh;
    background: #f4f4f1;
    color: #252525;
}

.booking-page .container,
.banquan .container {
    box-sizing: border-box;
    width: calc(100% - 32px);
    max-width: 1200px;
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
}

.booking-hero {
    display: flex;
    align-items: end;
    height: 250px;
    background: #292929 url("/statics/honglan/img/ljh-banner.jpg") center / cover no-repeat;
    color: #fff;
}

.booking-hero-inner {
    padding-bottom: 38px;
}

.booking-hero h1 {
    margin: 0;
    font-size: 38px;
    font-weight: 500;
}

.booking-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
    align-items: start;
    padding-top: 46px;
    padding-bottom: 72px;
}

.booking-form {
    padding: 30px;
    border: 1px solid #deded9;
    border-radius: 4px;
    background: #fff;
}

.booking-section + .booking-section {
    margin-top: 32px;
    padding-top: 30px;
    border-top: 1px solid #e1e1dc;
}

.booking-section h2,
.booking-summary h2 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 500;
}

.booking-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.booking-field--wide {
    grid-column: 1 / -1;
}

.booking-field label {
    color: #4c4c4c;
    font-size: 14px;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    border: 1px solid #bdbdb7;
    border-radius: 3px;
    background: #fff;
    color: #222;
    font: inherit;
}

.booking-field input,
.booking-field select {
    height: 46px;
    padding: 0 12px;
}

.booking-field textarea {
    min-height: 110px;
    padding: 12px;
    resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: #930013;
    outline: 2px solid rgba(147, 0, 19, 0.14);
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.booking-button {
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid #930013;
    border-radius: 3px;
    background: #930013;
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.booking-button--secondary {
    background: #fff;
    color: #930013;
}

.booking-button:disabled {
    border-color: #aaa;
    background: #aaa;
    color: #fff;
    cursor: wait;
}

.booking-consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-top: 22px;
    color: #555;
    font-size: 13px;
    line-height: 1.6;
}

.booking-consent input {
    flex: 0 0 auto;
    margin-top: 4px;
}

.booking-status {
    width: 100%;
    min-height: 22px;
    margin-top: 12px;
    color: #555;
    line-height: 1.6;
}

.booking-status[data-state="success"] {
    color: #14733b;
}

.booking-status[data-state="error"] {
    color: #9a0014;
}

.booking-summary {
    padding: 24px;
    border-top: 3px solid #930013;
    background: #fff;
}

.booking-summary img {
    display: block;
    width: 100%;
    margin-bottom: 18px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #e7e7e2;
}

.booking-summary dl {
    margin: 0;
}

.booking-summary dt {
    margin-top: 14px;
    color: #777;
    font-size: 13px;
}

.booking-summary dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    line-height: 1.55;
}

.booking-summary a {
    color: #930013;
}

.booking-empty {
    color: #6c6c6c;
    line-height: 1.7;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 900px) {
    .booking-shell {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        order: -1;
    }
}

@media (max-width: 620px) {
    .head-top,
    .head-top .top-nav {
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
    }

    .booking-hero {
        height: 210px;
    }

    .booking-hero h1 {
        font-size: 30px;
    }

    .booking-shell {
        gap: 24px;
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .booking-form {
        padding: 20px;
    }

    .booking-fields {
        grid-template-columns: 1fr;
    }

    .booking-field--wide {
        grid-column: auto;
    }
}
