.jxp-booking-app {
    --jxp-bg: #020207;
    --jxp-bg-soft: #050614;
    --jxp-panel: #080a1d;
    --jxp-panel-raised: #0b0e25;
    --jxp-line: #182250;
    --jxp-line-soft: rgba(0, 245, 255, .18);
    --jxp-cyan: #00f5ff;
    --jxp-cyan-soft: #79fbff;
    --jxp-magenta: #b400ff;
    --jxp-magenta-soft: #e783ff;
    --jxp-text: #9ba8cf;
    --jxp-text-bright: #f4f8ff;
    --jxp-danger: #ff4a73;
    --jxp-success: #5bffbc;
    --jxp-display: 'Orbitron', sans-serif;
    --jxp-body: 'Rajdhani', sans-serif;
    --jxp-mono: 'Share Tech Mono', monospace;
    position: relative;
    width: 100%;
    color: var(--jxp-text);
    font-family: var(--jxp-body);
    font-size: 17px;
    line-height: 1.5;
}

.jxp-booking-app *,
.jxp-booking-app *::before,
.jxp-booking-app *::after {
    box-sizing: border-box;
}


.jxp-booking-app [hidden] {
    display: none !important;
}

.jxp-booking-shell {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid var(--jxp-line);
    background:
        linear-gradient(135deg, rgba(180, 0, 255, .07), transparent 25%),
        linear-gradient(315deg, rgba(0, 245, 255, .06), transparent 24%),
        var(--jxp-bg);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
    overflow: hidden;
}

.jxp-booking-shell::before,
.jxp-booking-shell::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 2px;
    background: var(--jxp-cyan);
    box-shadow: 0 0 16px rgba(0, 245, 255, .55);
}

.jxp-booking-shell::before {
    top: 0;
    left: 0;
}

.jxp-booking-shell::after {
    right: 0;
    bottom: 0;
    background: var(--jxp-magenta);
    box-shadow: 0 0 16px rgba(180, 0, 255, .55);
}

.jxp-public-header {
    max-width: 780px;
    margin-bottom: 30px;
}

.jxp-public-kicker,
.jxp-step-heading p,
.jxp-package-code,
.jxp-review-card span,
.jxp-success-summary span,
.jxp-group-callout > div > span {
    margin: 0;
    color: var(--jxp-magenta-soft);
    font-family: var(--jxp-mono);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.jxp-public-header h2,
.jxp-step-heading h3,
.jxp-booking-success h3 {
    margin: 6px 0 10px;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-weight: 900;
    line-height: 1.14;
    text-transform: uppercase;
}

.jxp-public-header h2 {
    font-size: clamp(28px, 4.2vw, 52px);
}

.jxp-public-header > p:last-child {
    max-width: 700px;
    margin: 0;
    font-size: 18px;
}

.jxp-public-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 34px;
    border: 1px solid var(--jxp-line);
    background: var(--jxp-bg-soft);
}

.jxp-progress-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    min-height: 54px;
    padding: 10px 14px;
    border: 0;
    border-right: 1px solid var(--jxp-line);
    background: transparent;
    color: #66729b;
    cursor: default;
    font: inherit;
    pointer-events: none;
    text-align: left;
    user-select: none;
}

.jxp-progress-step:last-child {
    border-right: 0;
}

.jxp-progress-step span {
    color: #536085;
    font-family: var(--jxp-mono);
    font-size: 11px;
}

.jxp-progress-step strong {
    overflow: hidden;
    font-family: var(--jxp-display);
    font-size: 11px;
    letter-spacing: .04em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.jxp-progress-step.is-active {
    background: rgba(0, 245, 255, .06);
    color: var(--jxp-cyan);
    box-shadow: inset 0 2px 0 var(--jxp-cyan);
}

.jxp-progress-step.is-active span,
.jxp-progress-step.is-complete span,
.jxp-progress-step.is-complete strong {
    color: var(--jxp-cyan);
}

.jxp-booking-step,
.jxp-booking-success {
    padding: 26px;
    border: 1px solid var(--jxp-line);
    background: linear-gradient(180deg, rgba(11, 14, 37, .96), rgba(5, 6, 20, .96));
}

.jxp-step-heading {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.jxp-step-heading > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--jxp-cyan);
    color: var(--jxp-cyan);
    font-family: var(--jxp-mono);
    box-shadow: 0 0 15px rgba(0, 245, 255, .08);
}

.jxp-step-heading h3 {
    margin: 2px 0 0;
    font-size: clamp(19px, 2.6vw, 27px);
}

.jxp-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.jxp-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 205px;
    padding: 22px;
    border: 1px solid var(--jxp-line);
    background: var(--jxp-bg-soft);
    color: var(--jxp-text);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.jxp-package-card:not(.is-disabled):hover,
.jxp-package-card.is-selected {
    border-color: var(--jxp-cyan);
    background: linear-gradient(180deg, rgba(0, 245, 255, .08), rgba(8, 10, 29, .98));
    box-shadow: 0 0 24px rgba(0, 245, 255, .08), inset 0 0 0 1px rgba(0, 245, 255, .12);
    transform: translateY(-2px);
}

.jxp-package-card.is-selected::after {
    content: 'SELECTED';
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 8px;
    background: var(--jxp-cyan);
    color: #001014;
    font-family: var(--jxp-mono);
    font-size: 9px;
    letter-spacing: .08em;
}

.jxp-package-card.is-disabled {
    cursor: not-allowed;
    opacity: .5;
}

.jxp-package-card > strong {
    margin: 11px 0 8px;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 23px;
    text-transform: uppercase;
}

.jxp-package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-height: 48px;
}

.jxp-package-meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--jxp-magenta);
}

.jxp-package-select,
.jxp-package-unavailable {
    margin-top: auto;
    padding-top: 18px;
    color: var(--jxp-cyan);
    font-family: var(--jxp-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jxp-package-unavailable {
    color: var(--jxp-text);
}

.jxp-group-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(180, 0, 255, .35);
    background: rgba(180, 0, 255, .055);
}

.jxp-group-callout strong {
    display: block;
    margin-top: 4px;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 13px;
    text-transform: uppercase;
}

.jxp-group-callout p {
    margin: 3px 0 0;
}

.jxp-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--jxp-line);
}

.jxp-step-actions.is-right {
    justify-content: flex-end;
}

.jxp-primary-button,
.jxp-secondary-button,
.jxp-outline-button,
.jxp-counter-button,
.jxp-public-slot {
    border-radius: 0;
    font-family: var(--jxp-mono);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jxp-primary-button,
.jxp-secondary-button,
.jxp-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--jxp-cyan);
    cursor: pointer;
    text-decoration: none !important;
    transition: all .18s ease;
}

.jxp-primary-button {
    background: var(--jxp-cyan);
    color: #001014;
}

.jxp-primary-button:hover:not(:disabled) {
    background: var(--jxp-cyan-soft);
    box-shadow: 0 0 20px rgba(0, 245, 255, .2);
}

.jxp-primary-button:disabled {
    border-color: #263053;
    background: #1c2442;
    color: #68749b;
    cursor: not-allowed;
}

.jxp-secondary-button,
.jxp-outline-button {
    background: transparent;
    color: var(--jxp-cyan) !important;
}

.jxp-secondary-button:hover,
.jxp-outline-button:hover {
    background: rgba(0, 245, 255, .08);
    color: var(--jxp-text-bright) !important;
}

.jxp-party-panel {
    display: grid;
    grid-template-columns: 70px minmax(150px, 250px) 70px;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 20px;
}

.jxp-counter-button {
    min-height: 92px;
    border: 1px solid var(--jxp-line);
    background: var(--jxp-bg-soft);
    color: var(--jxp-cyan);
    cursor: pointer;
    font-size: 32px;
}

.jxp-counter-button:hover {
    border-color: var(--jxp-cyan);
    background: rgba(0, 245, 255, .06);
}

.jxp-party-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    border: 1px solid var(--jxp-cyan);
    background: rgba(0, 245, 255, .05);
}

.jxp-party-count input {
    width: 120px;
    padding: 0;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: var(--jxp-text-bright) !important;
    font-family: var(--jxp-display) !important;
    font-size: 37px !important;
    font-weight: 900;
    text-align: center;
    box-shadow: none !important;
    appearance: textfield;
}

.jxp-party-count input::-webkit-inner-spin-button,
.jxp-party-count input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.jxp-party-count span,
.jxp-step-note {
    color: var(--jxp-text);
    font-family: var(--jxp-mono);
    font-size: 11px;
    letter-spacing: .08em;
}

.jxp-step-note {
    text-align: center;
}

.jxp-date-panel {
    max-width: 390px;
    margin-bottom: 22px;
}

.jxp-date-panel label,
.jxp-contact-grid label > span {
    display: block;
    margin-bottom: 7px;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jxp-date-panel input,
.jxp-contact-grid input,
.jxp-contact-grid select,
.jxp-contact-grid textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid var(--jxp-line) !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: var(--jxp-bg-soft) !important;
    color: var(--jxp-text-bright) !important;
    font-family: var(--jxp-body) !important;
    font-size: 17px !important;
    box-shadow: none !important;
}

.jxp-date-panel input:focus,
.jxp-contact-grid input:focus,
.jxp-contact-grid select:focus,
.jxp-contact-grid textarea:focus {
    border-color: var(--jxp-cyan) !important;
    box-shadow: 0 0 0 1px rgba(0, 245, 255, .15) !important;
}

.jxp-contact-grid input.has-error,
.jxp-contact-grid select.has-error {
    border-color: var(--jxp-danger) !important;
}

.jxp-contact-grid textarea {
    min-height: 110px;
    resize: vertical;
}

.jxp-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.jxp-contact-full {
    grid-column: 1 / -1;
}

.jxp-contact-grid small {
    color: var(--jxp-text);
    font-family: var(--jxp-body);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

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

.jxp-time-area {
    min-height: 118px;
}

.jxp-time-placeholder,
.jxp-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 18px;
    border: 1px dashed var(--jxp-line);
    background: var(--jxp-bg-soft);
    color: var(--jxp-text);
    text-align: center;
}

.jxp-loading {
    gap: 10px;
    font-family: var(--jxp-mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jxp-loading span {
    width: 14px;
    height: 14px;
    border: 2px solid var(--jxp-line);
    border-top-color: var(--jxp-cyan);
    border-radius: 50%;
    animation: jxp-spin .7s linear infinite;
}

@keyframes jxp-spin {
    to { transform: rotate(360deg); }
}

.jxp-public-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 9px;
}

.jxp-public-slot {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 65px;
    padding: 10px;
    border: 1px solid var(--jxp-line);
    background: var(--jxp-bg-soft);
    color: var(--jxp-text);
    cursor: pointer;
}

.jxp-public-slot strong {
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 13px;
}

.jxp-public-slot span {
    color: var(--jxp-text);
    font-size: 10px;
}

.jxp-public-slot:hover,
.jxp-public-slot.is-selected {
    border-color: var(--jxp-cyan);
    background: rgba(0, 245, 255, .07);
}

.jxp-public-slot.is-selected strong,
.jxp-public-slot.is-selected span {
    color: var(--jxp-cyan);
}

.jxp-review-card,
.jxp-success-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--jxp-line);
    border-left: 1px solid var(--jxp-line);
}

.jxp-review-card > div,
.jxp-success-summary > div {
    min-height: 92px;
    padding: 16px;
    border-right: 1px solid var(--jxp-line);
    border-bottom: 1px solid var(--jxp-line);
    background: var(--jxp-bg-soft);
}

.jxp-review-card strong,
.jxp-success-summary strong {
    display: block;
    margin-top: 6px;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 14px;
    line-height: 1.45;
    text-transform: uppercase;
}

.jxp-review-card strong small,
.jxp-success-summary strong small {
    display: block;
    margin-top: 3px;
    color: var(--jxp-text);
    font-family: var(--jxp-body);
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
}

.jxp-public-message {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid var(--jxp-danger);
    background: rgba(255, 74, 115, .07);
    color: #ffb2c3;
}

.jxp-public-message.is-success {
    border-color: var(--jxp-success);
    background: rgba(91, 255, 188, .06);
    color: var(--jxp-success);
}

.jxp-booking-success {
    text-align: center;
}

.jxp-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border: 1px solid var(--jxp-success);
    color: var(--jxp-success);
    font-family: var(--jxp-display);
    font-size: 25px;
    box-shadow: 0 0 24px rgba(91, 255, 188, .12);
}

.jxp-booking-success h3 {
    font-size: clamp(24px, 3vw, 34px);
}

.jxp-booking-success > p:not(.jxp-public-kicker) {
    margin: 0 auto 22px;
}

.jxp-success-summary {
    max-width: 720px;
    margin: 24px auto;
    text-align: left;
}

@media (max-width: 800px) {
    .jxp-booking-shell {
        padding: 20px;
    }

    .jxp-public-progress {
        grid-template-columns: repeat(5, 1fr);
    }

    .jxp-progress-step {
        justify-content: center;
        padding: 8px 4px;
    }

    .jxp-progress-step strong {
        display: none;
    }

    .jxp-package-grid {
        grid-template-columns: 1fr;
    }

    .jxp-package-card {
        min-height: 160px;
    }

    .jxp-group-callout {
        align-items: flex-start;
        flex-direction: column;
    }

    .jxp-contact-grid,
    .jxp-review-card,
    .jxp-success-summary {
        grid-template-columns: 1fr;
    }

    .jxp-contact-full {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .jxp-booking-shell {
        padding: 12px;
        border-left: 0;
        border-right: 0;
    }

    .jxp-booking-step,
    .jxp-booking-success {
        padding: 18px 14px;
    }

    .jxp-party-panel {
        grid-template-columns: 58px minmax(120px, 1fr) 58px;
        gap: 8px;
    }

    .jxp-counter-button,
    .jxp-party-count {
        min-height: 78px;
    }

    .jxp-step-actions {
        flex-direction: column-reverse;
    }

    .jxp-step-actions.is-right {
        flex-direction: column;
    }

    .jxp-primary-button,
    .jxp-secondary-button,
    .jxp-outline-button {
        width: 100%;
    }
}

/* v0.4 pricing and calendar */
.jxp-package-card {
    min-height: 315px;
}

.jxp-package-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 4px 0 7px;
}

.jxp-package-prices > span {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid var(--jxp-line);
    background: rgba(0, 245, 255, .025);
}

.jxp-package-prices > span:last-child {
    border-color: rgba(180, 0, 255, .32);
    background: rgba(180, 0, 255, .025);
}

.jxp-package-prices small,
.jxp-per-person,
.jxp-guest-counter-title small,
.jxp-live-price-summary small,
.jxp-calendar-selected span,
.jxp-time-panel-heading span,
.jxp-group-price-list small {
    color: var(--jxp-text);
    font-family: var(--jxp-mono);
    font-size: 10px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.jxp-package-prices b {
    margin-top: 2px;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 17px;
    line-height: 1.2;
}

.jxp-package-prices > span:first-child b {
    color: var(--jxp-cyan);
}

.jxp-package-prices > span:last-child b {
    color: var(--jxp-magenta-soft);
}

.jxp-per-person {
    display: block;
    width: 100%;
    margin: 2px 0 14px;
    padding: 8px 10px;
    border-top: 1px solid rgba(0, 245, 255, .24);
    border-bottom: 1px solid rgba(0, 245, 255, .24);
    color: var(--jxp-text-bright);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-align: center;
    background: rgba(0, 245, 255, .035);
}

.jxp-group-pricing-callout {
    display: grid;
    grid-template-columns: minmax(210px, .8fr) minmax(0, 2fr) auto;
    align-items: stretch;
}

.jxp-group-callout-copy {
    align-self: center;
}

.jxp-group-price-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 7px;
}

.jxp-group-price-list > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 76px;
    padding: 10px;
    border: 1px solid rgba(180, 0, 255, .24);
    background: rgba(4, 5, 18, .65);
}

.jxp-group-price-list span {
    color: var(--jxp-text-bright);
    font-size: 13px;
    font-weight: 600;
}

.jxp-group-price-list strong {
    margin: 2px 0 0;
    color: var(--jxp-magenta-soft);
    font-family: var(--jxp-display);
    font-size: 15px;
}

.jxp-guest-counter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 780px;
    margin: 10px auto 18px;
}

.jxp-guest-counter {
    border: 1px solid var(--jxp-line);
    background: var(--jxp-bg-soft);
}

.jxp-guest-counter-title {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 12px;
    align-items: baseline;
    padding: 14px 16px;
    border-bottom: 1px solid var(--jxp-line);
}

.jxp-guest-counter-title > span {
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.jxp-guest-counter-title > strong {
    color: var(--jxp-cyan);
    font-family: var(--jxp-display);
    font-size: 16px;
}

.jxp-guest-counter:nth-child(2) .jxp-guest-counter-title > strong {
    color: var(--jxp-magenta-soft);
}

.jxp-guest-counter-title > small {
    grid-column: 1 / -1;
}

.jxp-counter-controls {
    display: grid;
    grid-template-columns: 62px 1fr 62px;
    align-items: stretch;
}

.jxp-counter-controls .jxp-counter-button {
    min-height: 74px;
    border: 0;
    border-right: 1px solid var(--jxp-line);
}

.jxp-counter-controls .jxp-counter-button:last-child {
    border-right: 0;
    border-left: 1px solid var(--jxp-line);
}

.jxp-counter-controls input {
    width: 100%;
    min-width: 0;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: var(--jxp-text-bright) !important;
    font-family: var(--jxp-display) !important;
    font-size: 29px !important;
    font-weight: 900;
    text-align: center;
    box-shadow: none !important;
    appearance: textfield;
}

.jxp-counter-controls input::-webkit-inner-spin-button,
.jxp-counter-controls input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.jxp-live-price-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
    margin: 0 auto 14px;
    border-top: 1px solid var(--jxp-line);
    border-left: 1px solid var(--jxp-line);
}

.jxp-live-price-summary > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 10px 13px;
    border-right: 1px solid var(--jxp-line);
    border-bottom: 1px solid var(--jxp-line);
    background: rgba(0, 245, 255, .025);
}

.jxp-live-price-summary strong {
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 15px;
}

.jxp-date-time-layout {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.6fr);
    gap: 18px;
    align-items: start;
}

.jxp-calendar-panel,
.jxp-time-panel {
    border: 1px solid var(--jxp-line);
    background: var(--jxp-bg-soft);
}

.jxp-calendar-header,
.jxp-time-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--jxp-line);
}

.jxp-time-panel-heading > strong {
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 14px;
    text-transform: uppercase;
}

.jxp-calendar-jump {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
}

.jxp-calendar-jump select {
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 4px 0;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0;
    background: transparent !important;
    color: var(--jxp-text-bright) !important;
    font-family: var(--jxp-display) !important;
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: none !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
    transition: color .16s ease, text-shadow .16s ease;
}

.jxp-calendar-jump select[data-calendar-month] {
    width: 112px;
    text-align: center;
    text-align-last: center;
}

.jxp-calendar-jump select[data-calendar-year] {
    width: 64px;
    text-align: center;
    text-align-last: center;
}

.jxp-calendar-jump select:hover,
.jxp-calendar-jump select:focus-visible {
    color: var(--jxp-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 245, 255, .45);
}

.jxp-calendar-jump option {
    background: #050614;
    color: var(--jxp-text-bright);
}

.jxp-calendar-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--jxp-cyan);
    cursor: pointer;
    font-family: var(--jxp-display);
    font-size: 23px;
    box-shadow: none;
    transition: color .16s ease, text-shadow .16s ease, transform .16s ease;
}

.jxp-calendar-nav:hover:not(:disabled),
.jxp-calendar-nav:focus-visible:not(:disabled) {
    color: #fff;
    background: transparent;
    text-shadow: 0 0 10px rgba(0, 245, 255, .75);
    transform: scale(1.08);
}

.jxp-calendar-nav:disabled {
    color: #3c466d;
    cursor: not-allowed;
    opacity: .55;
}

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

.jxp-calendar-weekdays {
    border-bottom: 1px solid var(--jxp-line);
}

.jxp-calendar-weekdays span {
    padding: 8px 3px;
    color: #7380aa;
    font-family: var(--jxp-mono);
    font-size: 9px;
    letter-spacing: .05em;
    text-align: center;
    text-transform: uppercase;
}

.jxp-calendar-grid {
    gap: 1px;
    padding: 1px;
    background: var(--jxp-line);
}

.jxp-calendar-empty,
.jxp-calendar-day {
    min-height: 54px;
    border: 0;
    border-radius: 0;
    background: #050614;
}

.jxp-calendar-day {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    color: var(--jxp-text-bright);
    cursor: pointer;
    font: inherit;
}

.jxp-calendar-day > span {
    font-family: var(--jxp-display);
    font-size: 12px;
}

.jxp-calendar-day small {
    color: var(--jxp-cyan);
    font-family: var(--jxp-mono);
    font-size: 7px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.jxp-calendar-day:hover:not(:disabled) {
    background: rgba(0, 245, 255, .07);
    color: var(--jxp-cyan);
}

.jxp-calendar-day.is-today {
    box-shadow: inset 0 0 0 1px rgba(0, 245, 255, .46);
}

.jxp-calendar-day.is-selected {
    background: var(--jxp-cyan);
    color: #001014;
    box-shadow: inset 0 0 0 1px var(--jxp-cyan);
}

.jxp-calendar-day.is-selected small {
    color: #001014;
}

.jxp-calendar-day.is-holiday:not(.is-selected) {
    box-shadow: inset 0 0 0 1px rgba(180, 0, 255, .35);
}

.jxp-calendar-day.is-holiday small {
    color: var(--jxp-magenta-soft);
}

.jxp-calendar-day:disabled,
.jxp-calendar-day.is-blocked {
    background: #03040d;
    color: #404a70;
    cursor: not-allowed;
    opacity: .72;
}

.jxp-calendar-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    padding: 10px 13px;
    border-top: 1px solid var(--jxp-line);
}

.jxp-calendar-selected strong {
    color: var(--jxp-cyan);
    font-size: 14px;
    text-align: right;
}

.jxp-time-panel .jxp-time-area {
    padding: 12px;
}

.jxp-time-panel-heading {
    flex-wrap: wrap;
}

.jxp-time-panel-heading > strong {
    color: var(--jxp-cyan);
    font-family: var(--jxp-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
}

.jxp-review-card > .jxp-review-price {
    min-height: 72px;
}

.jxp-review-card > .jxp-review-total {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    background: linear-gradient(90deg, rgba(0, 245, 255, .07), rgba(180, 0, 255, .07));
}

.jxp-review-total > span {
    color: var(--jxp-cyan);
}

.jxp-review-total > strong {
    margin: 0;
    color: var(--jxp-text-bright);
    font-size: 23px;
}

@media (max-width: 920px) {
    .jxp-group-pricing-callout,
    .jxp-date-time-layout {
        grid-template-columns: 1fr;
    }

    .jxp-group-pricing-callout .jxp-outline-button {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .jxp-package-card {
        min-height: 285px;
    }

    .jxp-guest-counter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .jxp-package-prices,
    .jxp-live-price-summary {
        grid-template-columns: 1fr;
    }

    .jxp-calendar-empty,
    .jxp-calendar-day {
        min-height: 48px;
    }

    .jxp-calendar-weekdays span {
        font-size: 8px;
    }

    .jxp-calendar-selected {
        align-items: flex-start;
        flex-direction: column;
    }

    .jxp-calendar-selected strong {
        text-align: left;
    }
}


/* v0.4.1 responsive booking refinements */
@media (max-width: 520px) {
    .jxp-date-time-layout,
    .jxp-calendar-panel,
    .jxp-time-panel {
        min-width: 0;
    }

    .jxp-public-progress {
        margin-bottom: 22px;
    }

    .jxp-progress-step {
        min-height: 46px;
        padding: 6px 2px;
    }

    .jxp-progress-step span {
        font-size: 10px;
    }

    .jxp-calendar-header {
        gap: 6px;
        padding-inline: 8px;
    }

    .jxp-calendar-jump {
        gap: 10px;
    }

    .jxp-calendar-jump select {
        padding: 4px 0;
        font-size: 10px !important;
    }

    .jxp-calendar-jump select[data-calendar-month] {
        width: 94px;
    }

    .jxp-calendar-jump select[data-calendar-year] {
        width: 58px;
    }

    .jxp-calendar-nav {
        width: 28px;
        height: 28px;
    }

    .jxp-calendar-day > span {
        font-size: 11px;
    }

    .jxp-public-slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 360px) {
    .jxp-booking-step,
    .jxp-booking-success {
        padding-inline: 10px;
    }

    .jxp-calendar-jump {
        gap: 7px;
    }

    .jxp-calendar-jump select {
        font-size: 9px !important;
    }

    .jxp-calendar-jump select[data-calendar-month] {
        width: 82px;
    }

    .jxp-calendar-jump select[data-calendar-year] {
        width: 52px;
    }

    .jxp-calendar-empty,
    .jxp-calendar-day {
        min-height: 44px;
    }

    .jxp-calendar-weekdays span {
        font-size: 7px;
    }
}

/* v0.4.2: keep reservation progress inside the booking shell */
.jxp-booking-app .jxp-public-progress {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 1;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 34px !important;
    transform: none !important;
    float: none !important;
}

.jxp-booking-app .jxp-public-header + .jxp-public-progress {
    margin-top: 0 !important;
}

.jxp-booking-app .jxp-public-progress + .jxp-public-message,
.jxp-booking-app .jxp-public-progress + .jxp-public-message[hidden] + .jxp-booking-step,
.jxp-booking-app .jxp-public-progress + .jxp-public-message[hidden] + .jxp-booking-success {
    position: relative;
}

@media (max-width: 520px) {
    .jxp-booking-app .jxp-public-progress {
        margin-bottom: 22px !important;
    }
}


/* v0.4.7 review summary hierarchy */
.jxp-review-card {
    display: block;
    border: 0;
    background: transparent;
}

.jxp-review-section {
    width: 100%;
}

.jxp-review-details-section {
    padding: 18px;
    border: 1px solid var(--jxp-line);
    background: var(--jxp-bg-soft);
}

.jxp-review-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 245, 255, .24);
}

.jxp-review-section-heading > span {
    color: var(--jxp-cyan);
    font-family: var(--jxp-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .055em;
    line-height: 1.2;
    text-transform: uppercase;
}

.jxp-review-section-heading > small {
    color: var(--jxp-text);
    font-family: var(--jxp-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.4;
    text-transform: none;
}

.jxp-review-details,
.jxp-review-price-grid {
    display: block;
    border: 0;
}

.jxp-review-details > div,
.jxp-review-price-grid > div {
    min-height: 0;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid rgba(98, 122, 196, .18);
    background: transparent;
}

.jxp-review-details > div:first-child,
.jxp-review-price-grid > div:first-child {
    padding-top: 2px;
}

.jxp-review-details > div:last-child,
.jxp-review-price-grid > div:last-child {
    border-bottom: 0;
}

.jxp-review-details span,
.jxp-review-price-grid .jxp-review-price > span,
.jxp-review-total > span {
    display: block;
    margin-bottom: 5px;
    color: var(--jxp-magenta);
    font-family: var(--jxp-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.jxp-review-details strong,
.jxp-review-price-grid .jxp-review-price > strong {
    display: block;
    margin: 0;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
}

.jxp-review-details strong small,
.jxp-review-price-grid .jxp-review-price > strong small {
    display: block;
    margin-top: 3px;
    color: var(--jxp-text);
    font-family: var(--jxp-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    text-transform: none;
}

.jxp-review-pricing-section {
    margin-top: 30px;
    padding: 18px;
    border: 1px solid rgba(180, 0, 255, .44);
    border-top: 2px solid var(--jxp-magenta);
    background: linear-gradient(135deg, rgba(180, 0, 255, .055), rgba(0, 245, 255, .025));
    box-shadow: inset 0 1px 0 rgba(180, 0, 255, .08);
}

.jxp-review-pricing-section .jxp-review-section-heading {
    border-bottom-color: rgba(180, 0, 255, .28);
}

.jxp-review-pricing-section .jxp-review-section-heading > span {
    color: var(--jxp-magenta);
}

.jxp-review-price-grid > .jxp-review-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 6px;
    padding: 18px 0 4px;
    border-top: 1px solid rgba(0, 245, 255, .4);
    border-bottom: 0;
    background: transparent;
}

.jxp-review-price-grid > .jxp-review-total > span {
    margin: 0;
    color: var(--jxp-cyan);
    font-size: 15px;
}

.jxp-review-price-grid > .jxp-review-total > strong {
    margin: 0;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 600px) {
    .jxp-review-details-section,
    .jxp-review-pricing-section {
        padding: 14px;
    }

    .jxp-review-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .jxp-review-section-heading > span {
        font-size: 14px;
    }

    .jxp-review-details span,
    .jxp-review-price-grid .jxp-review-price > span {
        font-size: 12px;
    }

    .jxp-review-price-grid > .jxp-review-total > strong {
        font-size: 22px;
    }
}


/* v0.4.8 review readability */
.jxp-review-when > strong {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jxp-review-when .jxp-review-date,
.jxp-review-when .jxp-review-time {
    display: block;
    margin: 0;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.jxp-review-details > div:nth-child(2) > strong {
    font-size: 15px;
}

.jxp-review-price-grid .jxp-review-price > strong {
    font-size: 15px;
}

.jxp-booking-success .jxp-review-when .jxp-review-date,
.jxp-booking-success .jxp-review-when .jxp-review-time {
    font-size: inherit;
}

@media (max-width: 600px) {
    .jxp-review-when .jxp-review-date,
    .jxp-review-when .jxp-review-time,
    .jxp-review-details > div:nth-child(2) > strong,
    .jxp-review-price-grid .jxp-review-price > strong {
        font-size: 14px;
    }
}

/* v0.5.0 Xpert and group booking flow */
.jxp-group-package-section {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(180, 0, 255, .3);
}

.jxp-group-package-heading {
    max-width: 760px;
    margin-bottom: 18px;
}

.jxp-group-package-heading > span {
    display: block;
    margin-bottom: 5px;
    color: var(--jxp-magenta);
    font-family: var(--jxp-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
}

.jxp-group-package-heading > strong {
    display: block;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: clamp(18px, 2.2vw, 23px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.jxp-group-package-heading > p {
    margin: 8px 0 0;
    color: var(--jxp-text);
    font-size: 15px;
    line-height: 1.5;
}

.jxp-group-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.jxp-group-package-card {
    min-height: 205px;
    border-color: rgba(180, 0, 255, .34);
    background: linear-gradient(145deg, rgba(180, 0, 255, .055), rgba(3, 3, 12, .94) 45%);
}

.jxp-group-package-card:hover,
.jxp-group-package-card:focus-visible {
    border-color: rgba(180, 0, 255, .72);
    box-shadow: 0 0 0 1px rgba(180, 0, 255, .16), 0 0 22px rgba(180, 0, 255, .09);
}

.jxp-group-package-card.is-selected {
    border-color: var(--jxp-cyan);
    background: linear-gradient(145deg, rgba(0, 245, 255, .08), rgba(180, 0, 255, .055) 65%, rgba(3, 3, 12, .96));
}

.jxp-group-single-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 14px;
}

.jxp-group-single-price small {
    color: var(--jxp-muted);
    font-family: var(--jxp-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.jxp-group-single-price b {
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 22px;
    font-weight: 700;
}

.jxp-group-form-fallback {
    margin: 14px 0 0;
    color: var(--jxp-muted);
    font-size: 13px;
}

.jxp-group-form-fallback a {
    color: var(--jxp-cyan);
    font-weight: 600;
    text-decoration: none;
}

.jxp-group-form-fallback a:hover,
.jxp-group-form-fallback a:focus-visible {
    text-decoration: underline;
}

.jxp-group-party {
    max-width: 430px;
    margin: 0 auto 18px;
}

.jxp-group-counter {
    width: 100%;
}

.jxp-privatization-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 18px 0;
    padding: 18px 20px;
    border: 1px solid rgba(180, 0, 255, .4);
    border-left: 3px solid var(--jxp-magenta);
    background: linear-gradient(90deg, rgba(180, 0, 255, .07), rgba(0, 245, 255, .025));
}

.jxp-privatization-option[hidden] {
    display: none !important;
}

.jxp-privatization-option strong {
    display: block;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.jxp-privatization-option p {
    max-width: 680px;
    margin: 5px 0 0;
    color: var(--jxp-text);
    font-size: 13px;
    line-height: 1.45;
}

.jxp-public-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

.jxp-public-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.jxp-public-toggle > span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 245, 255, .45);
    border-radius: 999px;
    background: rgba(2, 7, 18, .86);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.jxp-public-toggle > span::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--jxp-muted);
    transition: transform .18s ease, background .18s ease;
}

.jxp-public-toggle input:checked + span {
    border-color: var(--jxp-cyan);
    background: rgba(0, 245, 255, .11);
    box-shadow: 0 0 14px rgba(0, 245, 255, .1);
}

.jxp-public-toggle input:checked + span::after {
    transform: translateX(22px);
    background: var(--jxp-cyan);
}

.jxp-public-toggle input:focus-visible + span {
    outline: 2px solid var(--jxp-cyan);
    outline-offset: 3px;
}

.jxp-approval-notice {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    padding: 15px 17px;
    border: 1px solid rgba(180, 0, 255, .48);
    border-left: 3px solid var(--jxp-magenta);
    background: rgba(180, 0, 255, .07);
}

.jxp-approval-notice strong {
    color: var(--jxp-magenta);
    font-family: var(--jxp-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.jxp-approval-notice span {
    color: var(--jxp-text);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 920px) {
    .jxp-group-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .jxp-group-package-section {
        margin-top: 26px;
        padding-top: 22px;
    }

    .jxp-group-package-grid {
        grid-template-columns: 1fr;
    }

    .jxp-group-package-card {
        min-height: auto;
    }

    .jxp-privatization-option {
        align-items: flex-start;
        gap: 16px;
        padding: 15px;
    }

    .jxp-public-toggle {
        margin-top: 2px;
    }
}

.jxp-group-package-card .jxp-per-person {
    width: auto;
    margin: -2px 0 8px 68px;
    padding: 0;
    border: 0;
    color: var(--jxp-muted);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .1em;
    text-align: left;
    background: transparent;
}

.jxp-package-card > strong {
    margin-top: 0;
}

.jxp-counter-button:disabled {
    border-color: var(--jxp-line) !important;
    background: rgba(255, 255, 255, .015) !important;
    color: #35405f !important;
    cursor: not-allowed;
    box-shadow: none !important;
}

/* v0.7.0 promotions */
.jxp-package-promotion {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin: 4px 0 2px;
    padding: 5px 8px;
    border: 1px solid #b400ff;
    background: rgba(180, 0, 255, .1);
    color: #ee46ff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.jxp-applied-promotion {
    margin: 14px 0 0;
    padding: 13px 15px;
    border: 1px solid rgba(180, 0, 255, .55);
    background: rgba(180, 0, 255, .07);
}

.jxp-applied-promotion > div {
    display: grid;
    gap: 4px;
}

.jxp-applied-promotion small,
.jxp-applied-promotion span {
    color: #8d91c7;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: .08em;
}

.jxp-applied-promotion strong {
    color: #ee46ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.jxp-promo-code-box {
    margin: 18px 0 0;
    max-width: 520px;
}

.jxp-promo-code-box > label {
    display: block;
    margin-bottom: 7px;
    color: #b7bbec;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.jxp-promo-code-box > label small {
    color: #7277a8;
    font-size: inherit;
}

.jxp-promo-code-box > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.jxp-promo-code-box input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #202750 !important;
    border-radius: 0 !important;
    background: #050619 !important;
    color: #fff !important;
    font-family: 'Share Tech Mono', monospace !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jxp-promo-code-box input:focus {
    border-color: #00f5ff !important;
    box-shadow: 0 0 0 1px #00f5ff !important;
    outline: 0;
}

.jxp-promo-code-box p {
    margin: 7px 0 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: .05em;
}

.jxp-promo-code-box p.is-success { color: #00f5ff; }
.jxp-promo-code-box p.is-error { color: #ff4fd8; }

.jxp-live-price-summary [data-party-discount-wrap] strong,
.jxp-review-price.is-discount strong {
    color: #ee46ff !important;
}

.jxp-review-promotion {
    display: grid;
    gap: 4px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(34, 43, 88, .9);
}

.jxp-review-promotion > span {
    color: #ee46ff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.jxp-review-promotion > strong {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
}

.jxp-review-promotion > small {
    color: #8d91c7;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
}

@media (max-width: 560px) {
    .jxp-promo-code-box > div {
        grid-template-columns: 1fr;
    }

    .jxp-promo-code-box .jxp-secondary-button {
        width: 100%;
    }
}

@media (min-width: 901px) {
    .jxp-guest-counter-grid:has([data-student-party]:not([hidden])) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1100px;
    }
}


/* dev40 polish: blocked periods remain visible without exposing internal admin notes. */
.jxp-public-slot.is-unavailable,
.jxp-public-slot.is-unavailable:hover,
.jxp-public-slot.is-unavailable:focus {
    border-color: rgba(151, 160, 187, .34);
    background: rgba(151, 160, 187, .08);
    color: rgba(200, 209, 243, .55);
    cursor: not-allowed;
    opacity: .58;
}

.jxp-public-slot.is-unavailable strong,
.jxp-public-slot.is-unavailable span {
    color: rgba(200, 209, 243, .58);
}

/* Approval notices need to be impossible to mistake for ordinary helper copy. */
.jxp-step-note.is-approval-warning {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin: 16px auto 0;
    padding: 15px 17px;
    border: 2px solid #f7c948;
    border-left-width: 5px;
    background: rgba(247, 201, 72, .10);
    color: #fff4c0;
    text-align: left;
    box-shadow: 0 0 0 1px rgba(247, 201, 72, .08), 0 0 24px rgba(247, 201, 72, .08);
}

.jxp-step-note.is-approval-warning strong {
    color: #f7c948;
    font-family: var(--jxp-display);
    font-size: 13px;
    letter-spacing: .08em;
}

.jxp-step-note.is-approval-warning span {
    color: #fff4c0;
    font-family: var(--jxp-mono);
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: .035em;
}

.jxp-approval-notice {
    border: 2px solid #f7c948;
    border-left: 5px solid #f7c948;
    background: rgba(247, 201, 72, .11);
    box-shadow: 0 0 26px rgba(247, 201, 72, .08);
}

.jxp-approval-notice strong {
    color: #f7c948;
    font-size: 14px;
    letter-spacing: .075em;
}

.jxp-approval-notice span {
    color: #fff4c0;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}


/* v0.20.1-dev73 weekday group deal visibility */
.jxp-weekday-group-deal {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 22px;
    align-items: center;
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 245, 255, .62);
    border-left: 3px solid var(--jxp-cyan);
    background: linear-gradient(100deg, rgba(0, 245, 255, .09), rgba(180, 0, 255, .055));
    box-shadow: inset 0 0 24px rgba(0, 245, 255, .035), 0 0 22px rgba(0, 245, 255, .045);
}

.jxp-weekday-group-deal > span {
    color: var(--jxp-cyan);
    font-family: var(--jxp-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.jxp-weekday-group-deal > strong {
    grid-column: 1;
    color: var(--jxp-text-bright);
    font-family: var(--jxp-display);
    font-size: clamp(15px, 2vw, 19px);
    line-height: 1.25;
    text-transform: uppercase;
}

.jxp-weekday-group-deal-prices {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 10px;
    align-items: baseline;
    justify-items: end;
}

.jxp-weekday-group-deal-prices del {
    color: #777da9;
    font-family: var(--jxp-display);
    font-size: 16px;
    font-weight: 700;
}

.jxp-weekday-group-deal-prices b {
    color: var(--jxp-cyan);
    font-family: var(--jxp-display);
    font-size: clamp(25px, 3.2vw, 34px);
    font-weight: 900;
    line-height: 1;
}

.jxp-weekday-group-deal-prices small {
    grid-column: 1 / -1;
    color: var(--jxp-muted);
    font-family: var(--jxp-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.jxp-weekday-group-deal > em {
    grid-column: 1;
    color: #ee46ff;
    font-family: var(--jxp-mono);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jxp-weekday-rate-hint {
    max-width: 700px;
    margin: 12px auto 18px;
    color: var(--jxp-cyan);
    font-family: var(--jxp-mono);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: .035em;
    text-align: center;
}

.jxp-weekday-rate-hint[hidden] {
    display: none;
}

.jxp-review-weekday-deal {
    display: grid;
    gap: 7px;
    margin: 4px 0 8px;
    padding: 15px 16px !important;
    border: 1px solid rgba(0, 245, 255, .56) !important;
    background: linear-gradient(110deg, rgba(0, 245, 255, .085), rgba(180, 0, 255, .04)) !important;
}

.jxp-review-weekday-deal > span {
    margin: 0 !important;
    color: var(--jxp-cyan) !important;
    font-family: var(--jxp-mono) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

.jxp-review-weekday-deal > strong {
    display: flex !important;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 !important;
    font-family: var(--jxp-display) !important;
}

.jxp-review-weekday-deal del {
    color: #777da9;
    font-size: 14px;
}

.jxp-review-weekday-deal b {
    color: var(--jxp-cyan);
    font-size: 23px;
}

.jxp-review-weekday-deal small {
    color: var(--jxp-text);
    font-family: var(--jxp-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
}

.jxp-review-weekday-deal > em {
    color: #ee46ff;
    font-family: var(--jxp-mono);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.jxp-review-price.is-weekday-discount > span,
.jxp-review-price.is-weekday-discount > strong {
    color: var(--jxp-cyan) !important;
}

@media (max-width: 600px) {
    .jxp-weekday-group-deal {
        grid-template-columns: 1fr;
    }

    .jxp-weekday-group-deal-prices {
        grid-column: 1;
        grid-row: auto;
        justify-items: start;
        justify-content: start;
    }

    .jxp-weekday-group-deal > em {
        grid-column: 1;
    }
}
