.zv-booking-box {
    --zv-reserve-wine: #93191a;
    --zv-reserve-ink: #111827;
    --zv-reserve-muted: #6b625e;
    --zv-reserve-line: #e7ddd5;
    --zv-reserve-cream: #fbf7f1;
    --zv-reserve-gold: #b98b45;
    background: linear-gradient(145deg, #fffdf9, var(--zv-reserve-cream));
    border: 1px solid var(--zv-reserve-line);
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
    margin: 18px 0;
    max-width: min(780px, 100%);
    padding: 16px;
    width: 100%;
}

.zv-booking-box h3,
.zv-booking-box p {
    margin: 0;
}

.zv-booking-head {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    grid-column: 1 / -1;
    justify-content: space-between;
}

.zv-booking-kicker {
    color: var(--zv-reserve-wine);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.zv-booking-box h3 {
    color: var(--zv-reserve-ink);
    font-size: 22px;
    line-height: 1.05;
    text-transform: uppercase;
}

.zv-booking-pill {
    background: var(--zv-reserve-wine);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 10px;
    white-space: nowrap;
}

.zv-booking-calendar {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--zv-reserve-line);
    border-radius: 9px;
    padding: 12px;
}

.zv-booking-stepper {
    align-items: center;
    background: #fff;
    border: 1px solid var(--zv-reserve-line);
    border-radius: 10px;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    padding: 12px;
}

.zv-booking-stepper span {
    display: grid;
    gap: 3px;
}

.zv-booking-stepper strong {
    color: var(--zv-reserve-ink);
    line-height: 1.2;
}

.zv-booking-stepper small {
    color: var(--zv-reserve-muted);
    font-size: 12px;
    line-height: 1.35;
}

.zv-booking-stepper-controls {
    align-items: center;
    border: 1px solid var(--zv-reserve-line);
    border-radius: 999px;
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: 38px 54px 38px;
    overflow: hidden;
}

.zv-booking-stepper-controls button,
.zv-booking-stepper-controls input {
    background: #fff;
    border: 0;
    color: var(--zv-reserve-wine);
    font: inherit;
    font-weight: 800;
    height: 38px;
    text-align: center;
}

.zv-booking-stepper-controls button {
    cursor: pointer;
    font-size: 20px;
}

.zv-booking-stepper-controls input {
    border-left: 1px solid var(--zv-reserve-line);
    border-right: 1px solid var(--zv-reserve-line);
    color: var(--zv-reserve-ink);
    min-width: 0;
    padding: 0;
}

.zv-booking-calendar-title {
    align-items: baseline;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.zv-booking-calendar-title span {
    color: var(--zv-reserve-ink);
    font-weight: 800;
    text-transform: capitalize;
}

.zv-booking-calendar-title small,
.zv-booking-date-label,
.zv-booking-help,
.zv-booking-pay-note,
.zv-booking-empty span {
    color: var(--zv-reserve-muted);
    font-size: 13px;
}

.zv-booking-days {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    max-height: 250px;
    overflow: auto;
    padding-right: 2px;
}

.zv-booking-day,
.zv-booking-session {
    background: #fff;
    border: 1px solid var(--zv-reserve-line);
    border-radius: 8px;
    color: var(--zv-reserve-ink);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.zv-booking-day {
    display: grid;
    gap: 2px;
    justify-items: center;
    min-height: 74px;
    padding: 9px 8px;
    text-align: center;
}

.zv-booking-day span,
.zv-booking-day small,
.zv-booking-session em,
.zv-booking-session small {
    color: var(--zv-reserve-muted);
    font-size: 12px;
    font-style: normal;
}

.zv-booking-day strong {
    color: var(--zv-reserve-wine);
    font-size: 22px;
    line-height: 1;
}

.zv-booking-day.is-active,
.zv-booking-session.is-active {
    border-color: var(--zv-reserve-wine);
    box-shadow: 0 10px 26px rgba(147, 25, 26, 0.18);
    transform: translateY(-1px);
}

.zv-booking-sessions {
    display: grid;
    gap: 10px;
    grid-column: 2;
    grid-row: span 2;
    max-height: 420px;
    overflow: auto;
    padding-right: 2px;
}

.zv-booking-session-group {
    display: grid;
    gap: 8px;
}

.zv-booking-session-group[hidden] {
    display: none;
}

.zv-booking-date-label {
    font-weight: 800;
    text-transform: uppercase;
}

.zv-booking-session {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px;
    width: 100%;
}

.zv-booking-session span {
    display: grid;
    gap: 3px;
}

.zv-booking-session strong {
    color: var(--zv-reserve-ink);
    font-size: 16px;
}

.zv-booking-session em {
    background: #f7efe7;
    border-radius: 999px;
    color: var(--zv-reserve-wine);
    font-weight: 800;
    padding: 6px 9px;
    white-space: nowrap;
}

.zv-booking-help,
.zv-booking-pay-note {
    border-top: 1px solid var(--zv-reserve-line);
    grid-column: 1 / -1;
    padding-top: 10px;
}

.zv-booking-help.is-warning {
    color: #9f1239;
    font-weight: 800;
}

.zv-booking-empty {
    background: #fff;
    border: 1px dashed var(--zv-reserve-line);
    border-radius: 9px;
    display: grid;
    gap: 6px;
    padding: 16px;
}

.zv-booking-empty strong {
    color: var(--zv-reserve-wine);
    font-size: 18px;
}

.zv-service-reservation-page .yith-wcwl-add-to-wishlist,
.zv-service-reservation-page .wishlist-button,
.zv-service-reservation-page .add-to-wishlist,
.zv-service-reservation-page .tinvwl_add_to_wishlist_button,
.zv-service-reservation-page .woosw-btn,
.zv-service-reservation-page button[name="add-to-wishlist"] {
    display: none !important;
}

body.zv-service-reservation-page div.product form.cart,
body.zv-service-reservation-page .summary form.cart,
.zv-service-reservation-page form.cart {
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    justify-content: flex-start !important;
    max-width: min(780px, 100%) !important;
    width: 100% !important;
}

body.zv-service-reservation-page div.product form.cart .single_add_to_cart_button,
body.zv-service-reservation-page .summary form.cart .single_add_to_cart_button,
.zv-service-reservation-page .single_add_to_cart_button {
    align-items: center !important;
    background: #93191a !important;
    border: 1px solid #93191a !important;
    box-sizing: border-box !important;
    color: #fff !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    height: 46px !important;
    justify-content: center !important;
    letter-spacing: 0.08em;
    line-height: 1 !important;
    align-self: flex-end !important;
    max-width: 260px !important;
    max-height: 46px !important;
    min-height: 46px !important;
    min-width: 0 !important;
    padding: 14px 18px !important;
    text-transform: uppercase;
    transform: none !important;
    white-space: nowrap !important;
    writing-mode: horizontal-tb !important;
    width: min(260px, 100%) !important;
}

.zv-booking-box .single_add_to_cart_button,
.zv-booking-submit {
    grid-column: 1 / -1 !important;
    justify-self: end !important;
    margin-top: -2px !important;
}

.zv-service-reservation-page .single_add_to_cart_button::before,
.zv-service-reservation-page .single_add_to_cart_button::after {
    display: none !important;
}

.zv-service-reservation-page .single_add_to_cart_button.disabled,
.zv-service-reservation-page .single_add_to_cart_button:disabled {
    background: #d6d0ca !important;
    border-color: #d6d0ca !important;
    color: #5f5a56 !important;
    cursor: not-allowed !important;
}

.zv-service-reservation-page form.cart .quantity,
.zv-service-reservation-page form.cart > .quantity {
    display: none !important;
}

.zv-service-reservation-page:not(.zv-reservation-ready) .buy_now_button,
.zv-service-reservation-page:not(.zv-reservation-ready) .buy-now-button,
.zv-service-reservation-page:not(.zv-reservation-ready) .single_buy_now_button,
.zv-service-reservation-page:not(.zv-reservation-ready) .wc-buy-now-btn,
.zv-service-reservation-page:not(.zv-reservation-ready) .button-buy-now,
.zv-service-reservation-page:not(.zv-reservation-ready) .ux-buy-now-button,
.zv-service-reservation-page form.cart > .button:not(.single_add_to_cart_button),
.zv-service-reservation-page form.cart > button:not(.single_add_to_cart_button):not([data-zv-qty-minus]):not([data-zv-qty-plus]),
.zv-service-reservation-page form.cart > a.button:not(.single_add_to_cart_button),
.zv-service-reservation-page .buy_now_button,
.zv-service-reservation-page .buy-now-button,
.zv-service-reservation-page .buy-now,
.zv-service-reservation-page .single_buy_now_button,
.zv-service-reservation-page .wc-buy-now-btn,
.zv-service-reservation-page .button-buy-now,
.zv-service-reservation-page .ux-buy-now-button {
    display: none !important;
}

.zv-reserve-loop-button {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zv-account-reservation,
.zv-customer-reservations {
    border: 1px solid #ddd;
    border-left: 4px solid #93191a;
    margin: 0 0 16px;
    padding: 16px;
}

.zv-account-reservation h3 {
    margin-top: 0;
}

.zv-account-ticket {
    overflow-wrap: anywhere;
}

@media (max-width: 640px) {
    .zv-booking-box {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .zv-booking-head,
    .zv-booking-session,
    .zv-booking-stepper,
    .zv-booking-calendar-title {
        align-items: stretch;
    }

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

    .zv-booking-stepper-controls {
        width: 100%;
    }

    .zv-booking-days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zv-booking-sessions,
    .zv-booking-help,
    .zv-booking-pay-note,
    .zv-booking-box .single_add_to_cart_button,
    .zv-booking-submit {
        grid-column: 1 !important;
    }

    .zv-booking-submit,
    .zv-booking-box .single_add_to_cart_button {
        justify-self: stretch !important;
        max-width: none !important;
        width: 100% !important;
    }
}
