/* =========================================
   HOMEVIETTRAVEL BOOKING CF7
========================================= */

.hvt-booking,
.hvt-product-booking,
.hvt-booking-lightbox {
    --hvt-primary: var(--fs-color-primary);
    --hvt-heading: #1b335b;
    --hvt-text: #66778b;
    --hvt-border: #e7e7e7;
    --hvt-field-bg: rgba(255, 255, 255, 0.82);
}

.hvt-booking {
    position: relative;
    width: 100%;
    padding: 34px 38px;
    border: 1px solid var(--hvt-border);
    border-radius: 24px;
    background: rgb(255 255 255 / 85%);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

/* TABS */
.hvt-booking__tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hvt-booking__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 155px;
    min-height: 48px;
    margin: 0;
    padding: 12px 24px;
    border: 1px solid var(--hvt-border);
    border-radius: 50px;
    color: var(--hvt-heading);
    background: #fff;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
    transition: 0.25s ease;
}

.hvt-booking__tab:hover,
.hvt-booking__tab:focus,
.hvt-booking__tab.is-active {
    border-color: var(--hvt-primary);
    color: #fff;
    background: var(--hvt-primary);
    box-shadow: none;
}

.hvt-booking__tab i {
    font-size: 15px;
}

/* FORM/TABS */
.hvt-booking__form {
    display: none;
    margin: 0;
}

.hvt-booking__form[hidden] {
    display: none !important;
}

.hvt-booking__form.is-active {
    display: block;
    animation: hvtBookingFade 0.3s ease;
}

.hvt-booking .wpcf7,
.hvt-product-booking .wpcf7,
.hvt-booking-lightbox .wpcf7,
.hvt-booking .wpcf7-form,
.hvt-product-booking .wpcf7-form,
.hvt-booking-lightbox .wpcf7-form {
    margin: 0;
}

.hvt-booking__row {
    display: grid;
    align-items: end;
    gap: 16px;
    width: 100%;
    margin-bottom: 18px;
}

.hvt-booking__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hvt-booking__row--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hvt-booking__row--full {
    display: block;
    margin: 24px 0 0;
}

.hvt-booking__field {
    min-width: 0;
}

.hvt-booking__control {
    position: relative;
    width: 100%;
}

.hvt-booking__control > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--hvt-primary);
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

.hvt-booking__control .wpcf7-form-control-wrap,
.hvt-booking__control .flatpickr-wrapper {
    display: block;
    width: 100%;
}

.hvt-booking__control input,
.hvt-booking__control select,
.hvt-booking__control textarea,
.hvt-booking__control .flatpickr-input,
.hvt-booking__control input.form-control,
.hvt-booking__cf7-wrap input:not([type="submit"]):not([type="hidden"]),
.hvt-booking__cf7-wrap select,
.hvt-booking__cf7-wrap textarea {
    display: block;
    width: 100%;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    margin: 0 !important;
    padding: 0 30px 0 46px !important;
    border: 1px solid var(--hvt-border) !important;
    border-radius: 12px !important;
    color: var(--hvt-heading) !important;
    background-color: var(--hvt-field-bg) !important;
    background-image: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
}

.hvt-booking__control select,
.hvt-booking__cf7-wrap select {
    padding-right: 42px !important;
    background-image:
        linear-gradient(45deg, transparent 50%, #66778b 50%),
        linear-gradient(135deg, #66778b 50%, transparent 50%) !important;
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50% !important;
    background-size: 5px 5px, 5px 5px !important;
    background-repeat: no-repeat !important;
    cursor: pointer;
}

.hvt-booking__control input.flatpickr-input[type="hidden"] {
    display: none !important;
}

.hvt-booking__control input::placeholder,
.hvt-booking__control textarea::placeholder {
    color: #9aa7b6 !important;
    opacity: 1;
}

.hvt-booking__control input:focus, .hvt-booking__control select:focus, .hvt-booking__control textarea:focus {
    border-color: var(--hvt-primary) !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 121, 0, 0.06) !important;
}

.hvt-booking__control input[type="number"]::-webkit-inner-spin-button,
.hvt-booking__control input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

/* CF7 */
.hvt-booking__cf7-wrap .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #d63638;
    font-size: 12px;
    line-height: 1.4;
}

/* Ẩn khung thông báo CF7 khi chưa gửi form hoặc không có nội dung. */
.hvt-booking__cf7-wrap .wpcf7-form.init .wpcf7-response-output,
.hvt-booking__cf7-wrap .wpcf7-form.resetting .wpcf7-response-output,
.hvt-booking__cf7-wrap .wpcf7-response-output:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* Chỉ hiển thị thông báo sau khi CF7 thực sự trả về kết quả. */
.hvt-booking__cf7-wrap .wpcf7-form.sent .wpcf7-response-output,
.hvt-booking__cf7-wrap .wpcf7-form.invalid .wpcf7-response-output,
.hvt-booking__cf7-wrap .wpcf7-form.failed .wpcf7-response-output,
.hvt-booking__cf7-wrap .wpcf7-form.aborted .wpcf7-response-output,
.hvt-booking__cf7-wrap .wpcf7-form.spam .wpcf7-response-output,
.hvt-booking__cf7-wrap .wpcf7-form.unaccepted .wpcf7-response-output {
    display: block !important;
    margin: 16px 0 0 !important;
    padding: 10px 14px !important;
    border-width: 1px !important;
    border-radius: 10px;
    font-size: 14px;
}

.hvt-booking__cf7-wrap .wpcf7-spinner {
    display: block;
    margin: 12px auto 0;
}

.hvt-booking__submit, .hvt-booking__cf7-wrap input[type="submit"].hvt-booking__submit, .hvt-booking__cf7-wrap input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 12px 20px;
    border: 1px solid var(--hvt-primary);
    border-radius: 12px;
    color: #fff;
    background: var(--hvt-primary);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hvt-booking__cf7-wrap input[type="submit"]:hover,
.hvt-booking__cf7-wrap input[type="submit"]:focus {
    border-color: var(--hvt-primary);
    color: #fff;
    background: var(--hvt-primary);
    box-shadow: 0 9px 22px rgba(23, 54, 84, 0.18);
}

.hvt-booking__home-error {
    margin-top: 12px;
    padding: 9px 12px;
    border-radius: 8px;
    color: #b42318;
    background: #fff1f0;
    font-size: 13px;
}

.hvt-booking__notice {
    padding: 15px;
    border: 1px dashed var(--hvt-border);
    border-radius: 12px;
    color: var(--hvt-text);
    background: #f7f9fc;
}

/* PRODUCT AREA */
.hvt-product-booking {
    width: 100%;
    margin: 18px 0 24px;
}

.hvt-product-booking [hidden] {
    display: none !important;
}

.hvt-product-booking__inline, .hvt-booking-lightbox {
    padding: 24px;
    border: 1px solid var(--border-silver-solid);
    border-radius: var(--border-radius-secondary);
    background: #f8fafc;
}

.hvt-product-booking__heading {
    margin-bottom: 20px;
}

.hvt-product-booking__heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--hvt-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.hvt-product-booking__heading h3 {
    margin: 0;
    color: var(--hvt-heading);
    font-size: 26px;
    line-height: 1.3;
}

.hvt-product-booking__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}

.hvt-product-booking__button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin: 0 !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
}

.hvt-product-booking__button--zalo {
    border-color: #0068ff !important;
    color: #fff !important;
    background: #0068ff !important;
}

.hvt-product-booking__button--zalo:hover,
.hvt-product-booking__button--zalo:focus {
    border-color: #0057d9 !important;
    color: #fff !important;
    background: #0057d9 !important;
}

.hvt-product-booking__button--zalo i {
    font-size: 15px;
}

.hvt-booking-lightbox {
    border: 0;
    border-radius: 0;
    background: #fff;
}

.hvt-booking-lightbox--fallback {
    margin-top: 15px;
}

/* Trang sản phẩm chỉ hiện đúng các trường cần thiết. */
.hvt-booking__cf7-wrap--product .hvt-field--destination,
.hvt-booking__cf7-wrap--product .hvt-field--email,
.hvt-booking__cf7-wrap--product[data-hvt-service="villa"] .hvt-field--bedrooms {
    display: none !important;
}

.hvt-booking__cf7-wrap--product .hvt-booking__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hvt-booking__cf7-wrap--product .hvt-booking__row--full {
    display: block;
}

/* FLATPICKR */
.flatpickr-calendar {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 15px 45px rgba(23, 54, 84, 0.18);
    font-family: inherit;
}

.flatpickr-months {
    padding-top: 8px;
}

.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday {
    color: #173654;
}

.flatpickr-day {
    border-radius: 8px;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.today:hover, .flatpickr-day.today:focus {
    border-color: var(--fs-color-primary);
    color: #fff;
    background: var(--fs-color-primary);
}

.flatpickr-day.today {
    border-color: var(--fs-color-primary);
}

@keyframes hvtBookingFade {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .hvt-booking__row--3,
    .hvt-booking__row--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}




/* =========================================
   FIX ICON CF7 - GIỮ ICON BÊN TRONG INPUT
========================================= */
.hvt-booking .hvt-booking__control,
.hvt-product-booking .hvt-booking__control,
.hvt-booking-lightbox .hvt-booking__control {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hvt-booking .hvt-booking__control > i,
.hvt-product-booking .hvt-booking__control > i,
.hvt-booking-lightbox .hvt-booking__control > i {
    position: absolute !important;
    top: 50% !important;
    left: 16px !important;
    z-index: 20 !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--hvt-primary) !important;
    opacity: 1 !important;
    line-height: 18px !important;
    transform: translateY(-50%) !important;
}

/* CF7 có thể tự bọc nội dung trường bằng thẻ p. Không được ẩn p vì p chứa input. */
.hvt-booking .hvt-booking__control > p,
.hvt-product-booking .hvt-booking__control > p,
.hvt-booking-lightbox .hvt-booking__control > p {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hvt-booking .hvt-booking__control > br,
.hvt-product-booking .hvt-booking__control > br,
.hvt-booking-lightbox .hvt-booking__control > br {
    display: none !important;
}

/* Icon khi CF7 đặt trực tiếp trong control hoặc nằm trong thẻ p tự sinh. */
.hvt-booking .hvt-booking__control > p > i, .hvt-product-booking .hvt-booking__control > p > i, .hvt-booking-lightbox .hvt-booking__control > p > i {
    position: absolute !important;
    top: 50% !important;
    left: 16px !important;
    z-index: 20 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--color-blue-dark);
    opacity: 1 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    pointer-events: none !important;
    transform: translateY(-50%) !important;
}

.hvt-booking .hvt-booking__control .wpcf7-form-control-wrap,
.hvt-product-booking .hvt-booking__control .wpcf7-form-control-wrap,
.hvt-booking-lightbox .hvt-booking__control .wpcf7-form-control-wrap,
.hvt-booking .hvt-booking__control .flatpickr-wrapper,
.hvt-product-booking .hvt-booking__control .flatpickr-wrapper,
.hvt-booking-lightbox .hvt-booking__control .flatpickr-wrapper {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    margin: 0 !important;
}

@media (max-width: 549px) {
    .hvt-booking .hvt-booking__control > i,
    .hvt-product-booking .hvt-booking__control > i,
    .hvt-booking-lightbox .hvt-booking__control > i {
        left: 12px !important;
    }
}

/* =========================================
   FOCUS STATE - CF7 / FLATPICKR / FLATSOME
========================================= */
.hvt-booking__control {
    border-radius: 12px;
    transition: box-shadow .2s ease;
}

.hvt-booking__control input:focus, .hvt-booking__control input:focus-visible, .hvt-booking__control select:focus, .hvt-booking__control select:focus-visible, .hvt-booking__control textarea:focus, .hvt-booking__control textarea:focus-visible, .hvt-booking__control .flatpickr-input:focus, .hvt-booking__control .flatpickr-input:focus-visible, .hvt-booking__control input.form-control:focus, .hvt-booking__control input.form-control:focus-visible, .hvt-booking__cf7-wrap input:not([type="submit"]):not([type="hidden"]):focus, .hvt-booking__cf7-wrap input:not([type="submit"]):not([type="hidden"]):focus-visible, .hvt-booking__cf7-wrap select:focus, .hvt-booking__cf7-wrap select:focus-visible, .hvt-booking__cf7-wrap textarea:focus, .hvt-booking__cf7-wrap textarea:focus-visible {
    border-color: #ff7900 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 121, 0, .08) !important;
    outline: none !important;
}

/* Fallback cho trình duyệt chưa hỗ trợ color-mix. */
@supports not (color: color-mix(in srgb, red 50%, transparent)) {
    .hvt-booking__control:focus-within {
        box-shadow: 0 0 0 3px rgba(255, 121, 0, .12) !important;
    }
}

.hvt-booking__control:focus-within {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--hvt-primary) 14%, transparent) !important;
}

.hvt-booking__control:focus-within input,
.hvt-booking__control:focus-within select,
.hvt-booking__control:focus-within textarea,
.hvt-booking__control:focus-within .flatpickr-input,
.hvt-booking__control:focus-within input.form-control {
    border-color: var(--hvt-primary) !important;
    color: var(--hvt-heading) !important;
    background-color: #fff !important;
}

/* Icon chuyển sang màu đậm khi trường đang được focus. */
.hvt-booking__control:focus-within > i, .hvt-booking__control:focus-within > p > i {
    color: var(--fs-color-primary);
}

.hvt-booking__control > i,
.hvt-booking__control > p > i {
    transition: color .2s ease, transform .2s ease;
}





/* =========================================
   MOBILE GRID FIX 2.1.6
   Gộp các row CF7 thành một grid chung để đúng cặp trường.
========================================= */
@media (max-width: 549px) {
    /* Form trang chủ là grid chung 2 cột. */
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] form.wpcf7-form {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px 12px !important;
        width: 100% !important;
    }

    /* Bỏ grid riêng của từng row để tất cả field tham gia grid chung. */
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] .hvt-booking__row,
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] .hvt-booking__row--full {
        display: contents !important;
        margin: 0 !important;
    }

    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] .hvt-booking__field {
        grid-column: span 1;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    /* DU THUYỀN: Điểm đến và ngày đi toàn hàng. */
    .hvt-booking--home [data-hvt-service="cruise"] .hvt-field--destination,
    .hvt-booking--home [data-hvt-service="cruise"] .hvt-field--departure-date {
        grid-column: 1 / -1 !important;
    }

    /* DU THUYỀN: các cặp còn lại tự xếp theo DOM:
       Số người + Thời gian, Điện thoại + Email. */
    .hvt-booking--home [data-hvt-service="cruise"] .hvt-field--guests,
    .hvt-booking--home [data-hvt-service="cruise"] .hvt-field--duration,
    .hvt-booking--home [data-hvt-service="cruise"] .hvt-field--phone,
    .hvt-booking--home [data-hvt-service="cruise"] .hvt-field--email {
        grid-column: span 1 !important;
    }

    /* VILLA: Điểm đến toàn hàng; các trường sau tự ghép theo cặp. */
    .hvt-booking--home [data-hvt-service="villa"] .hvt-field--destination {
        grid-column: 1 / -1 !important;
    }

    .hvt-booking--home [data-hvt-service="villa"] .hvt-field--checkin,
    .hvt-booking--home [data-hvt-service="villa"] .hvt-field--checkout,
    .hvt-booking--home [data-hvt-service="villa"] .hvt-field--guests,
    .hvt-booking--home [data-hvt-service="villa"] .hvt-field--bedrooms,
    .hvt-booking--home [data-hvt-service="villa"] .hvt-field--phone,
    .hvt-booking--home [data-hvt-service="villa"] .hvt-field--email {
        grid-column: span 1 !important;
    }

    /* Nút và vùng phản hồi CF7 luôn toàn hàng. */
    .hvt-booking--home .hvt-booking__submit,
    .hvt-booking--home input[type="submit"].hvt-booking__submit,
    .hvt-booking--home .wpcf7-response-output {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    /* Giữ input không làm vỡ cột và hạn chế placeholder bị cắt. */
    .hvt-booking--home .hvt-booking__control,
    .hvt-booking--home .wpcf7-form-control-wrap,
    .hvt-booking--home input:not([type="submit"]):not([type="hidden"]),
    .hvt-booking--home select {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

}

/* =========================================
   MOBILE SUBMIT FULL WIDTH FIX 2.1.7
   CF7 tự bọc submit trong thẻ p, vì vậy cần cho wrapper chiếm toàn grid.
========================================= */
@media (max-width: 549px) {
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] .hvt-booking__row--full > p,
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] .hvt-booking__row--full > .wpcf7-form-control-wrap,
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] p:has(> input[type="submit"].hvt-booking__submit) {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 4px 0 0 !important;
    }

    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] .hvt-booking__row--full input[type="submit"].hvt-booking__submit,
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] p > input[type="submit"].hvt-booking__submit {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] .hvt-booking__row--full .wpcf7-spinner,
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] p:has(> input[type="submit"].hvt-booking__submit) .wpcf7-spinner {
        position: absolute;
        right: 14px;
        top: 50%;
        margin: 0;
        transform: translateY(-50%);
    }

    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] .hvt-booking__row--full > p,
    .hvt-booking--home .hvt-booking__cf7-wrap[data-hvt-context="home"] p:has(> input[type="submit"].hvt-booking__submit) {
        position: relative;
    }
}




@media (max-width: 549px) {
    .hvt-booking {
        padding: 24px;
    }

    .hvt-booking__tabs {
        margin-bottom: 18px;
    }

    .hvt-booking__tab {
        flex: 1;
        min-width: 0;
        min-height: 46px;
        padding: 10px 12px;
        font-size: 14px;
    }

    /* CF7 có nhiều đoạn <p> trống thì không làm vỡ grid. */
    .hvt-booking--home .hvt-booking__cf7-wrap form {
        display: block;
    }

    .hvt-booking--home .hvt-booking__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 9px;
        margin-bottom: 12px;
    }

    /* Du thuyền: Điểm đến + Ngày đi toàn hàng. */
    .hvt-booking--home [data-hvt-service="cruise"] .hvt-field--destination,
    .hvt-booking--home [data-hvt-service="cruise"] .hvt-field--departure-date {
        grid-column: 1 / -1;
    }

    /* Villa: Điểm đến toàn hàng; check-in/check-out chia đôi. */
    .hvt-booking--home [data-hvt-service="villa"] .hvt-field--destination {
        grid-column: 1 / -1;
    }

    .hvt-booking__row--full {
        margin-top: 18px;
    }

    .hvt-product-booking__inline,
    .hvt-booking-lightbox {
        padding: 20px;
    }

    .hvt-booking__cf7-wrap--product .hvt-booking__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hvt-booking__control input,
    .hvt-booking__control select,
    .hvt-booking__cf7-wrap input:not([type="submit"]):not([type="hidden"]),
    .hvt-booking__cf7-wrap select {
        padding-right: 12px !important;
        padding-left: 38px !important;
    }

    .hvt-booking__control > i {
        left: 12px;
        font-size: 13px;
    }

    .flatpickr-calendar {
        width: calc(100vw - 24px);
        max-width: 340px;
    }
    
    
    .hvt-booking .hvt-booking__control > p > i, .hvt-product-booking .hvt-booking__control > p > i, .hvt-booking-lightbox .hvt-booking__control > p > i {
    left: 13px !important;
    width: 17px !important;
    height: 17px !important;
    font-size: 14px !important;
}

.hvt-booking__control input::placeholder,
.hvt-booking__cf7-wrap input:not([type="submit"]):not([type="hidden"])::placeholder, .hvt-booking__cf7-wrap select {
font-size: 14px;
    
}

.hvt-booking__submit, .hvt-booking__cf7-wrap input[type="submit"].hvt-booking__submit, .hvt-booking__cf7-wrap input[type="submit"] {
    min-height: 46px;
    font-size: 15px;
}
}
@media (max-width: 549px) {
    .hvt-product-booking__actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hvt-product-booking__heading h3 {
    font-size: 23px;
    line-height: 1.35;
}

.hvt-product-booking__button {
    min-height: 46px !important;
    font-size: 15px !important;
    height: 46px;
}
}
