.mzl-selector {
    box-sizing: border-box;
    width: 100%;
    margin: 1rem 0;
    padding: clamp(0.9rem, 2.5vw, 1.35rem);
    border: 1px solid #dfe3ea;
    border-radius: 0.9rem;
    background:
        radial-gradient(circle at 100% 0, rgba(35, 83, 177, 0.08), transparent 32%),
        #fff;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.07);
}

.mzl-selector[hidden],
.mzl-cart-tickets[hidden] {
    display: none !important;
}

.mzl-selector__island {
    display: contents;
}

.mzl-selector__title {
    margin: 0 0 0.85rem;
    color: #182230;
    font-size: 1.18rem;
    line-height: 1.25;
}

.mzl-selector__wallet-link {
    display: flex;
    align-items: center;
    grid-column: 1 / -1;
    gap: 0.7rem;
    min-width: 0;
    margin: 0 0 0.15rem;
    padding: 0.68rem 0.78rem;
    border: 1px solid rgba(246, 47, 80, 0.22);
    border-radius: 0.7rem;
    background:
        linear-gradient(110deg, rgba(246, 47, 80, 0.08), rgba(255, 199, 0, 0.09)),
        #fff;
    box-shadow: 0 6px 18px rgba(35, 42, 62, 0.06);
    color: #182230 !important;
    text-decoration: none !important;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.mzl-selector__wallet-link:hover {
    border-color: rgba(246, 47, 80, 0.46);
    box-shadow: 0 9px 22px rgba(35, 42, 62, 0.1);
    color: #182230 !important;
    transform: translateY(-1px);
}

.mzl-selector__wallet-icon {
    display: grid;
    flex: 0 0 2.15rem;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.62rem;
    background: #f62f50;
    box-shadow: 0 5px 12px rgba(246, 47, 80, 0.22);
    color: #fff;
    font-size: 1.05rem;
    line-height: 1;
    place-items: center;
}

.mzl-selector__wallet-copy {
    display: block;
    min-width: 0;
    line-height: 1.2;
}

.mzl-selector__wallet-copy small,
.mzl-selector__wallet-copy strong {
    display: block;
}

.mzl-selector__wallet-copy small {
    margin-bottom: 0.12rem;
    color: #a20f2d;
    font-size: 0.67rem;
    font-weight: 750;
}

.mzl-selector__wallet-copy strong {
    color: #182230;
    font-size: 0.84rem;
    font-weight: 800;
}

.mzl-selector__wallet-arrow {
    flex: 0 0 auto;
    margin-left: auto;
    color: #f62f50;
    font-size: 1.15rem;
    font-weight: 900;
    transition: transform 160ms ease;
}

.mzl-selector__wallet-link:hover .mzl-selector__wallet-arrow {
    transform: translateX(3px);
}

.mzl-selector__deadline {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid #b2ddff;
    border-radius: 0.65rem;
    background: linear-gradient(120deg, #eff8ff, #f5f8ff);
    color: #1849a9;
}

.mzl-selector__deadline > span {
    display: grid;
    flex: 0 0 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #d1e9ff;
    font-size: 1rem;
    place-items: center;
}

.mzl-selector__deadline small,
.mzl-selector__deadline strong {
    display: block;
    line-height: 1.25;
}

.mzl-selector__deadline small {
    font-size: 0.7rem;
    font-weight: 650;
}

.mzl-selector__deadline strong {
    color: #102a56;
    font-size: 0.9rem;
}

.mzl-selector__deadline--closed {
    border-color: #fda29b;
    background: #fff1f3;
    color: #c01048;
}

.mzl-selector__deadline--closed > span {
    background: #ffe4e8;
}

.mzl-selector__deadline--closed strong {
    color: #89123e;
}

.mzl-color-picker {
    grid-column: 1 / -1;
    min-width: 0;
    margin-bottom: 0.35rem;
}

.mzl-color-picker h3 {
    margin: 0 0 0.55rem;
    color: #344054;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
}

.mzl-color-picker__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.55rem;
}

.mzl-color-ticket {
    --mzl-color-option: #e9edf3;
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) 1.65rem;
    min-width: 0;
    min-height: 3.75rem;
    padding: 0 !important;
    border: 1px solid rgba(16, 24, 40, 0.18) !important;
    border-radius: 0.55rem !important;
    background: var(--mzl-color-option) !important;
    box-shadow:
        0 5px 12px rgba(16, 24, 40, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3) !important;
    color: #182230 !important;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transform: translateY(0) rotate(0);
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease !important;
}

.mzl-color-ticket::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 9px,
            rgba(255, 255, 255, 0.13) 9px,
            rgba(255, 255, 255, 0.13) 10px
        );
    content: "";
    pointer-events: none;
}

.mzl-color-ticket:not(:disabled):hover {
    border-color: rgba(23, 43, 77, 0.45) !important;
    box-shadow:
        0 9px 18px rgba(16, 24, 40, 0.14),
        inset 0 0 0 1px rgba(255, 255, 255, 0.35) !important;
    transform: translateY(-3px) rotate(-0.6deg);
}

.mzl-color-ticket.is-active {
    border-color: #172b4d !important;
    box-shadow:
        0 8px 18px rgba(23, 43, 77, 0.18),
        0 0 0 2px rgba(23, 43, 77, 0.16) !important;
    transform: translateY(-2px);
    animation: mzl-color-selected 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzl-color-ticket.is-unavailable {
    opacity: 0.42;
    cursor: not-allowed;
    filter: grayscale(0.65);
}

.mzl-color-ticket__main,
.mzl-color-ticket__stub {
    position: relative;
    z-index: 1;
}

.mzl-color-ticket__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0.55rem 0.5rem 0.5rem 0.65rem;
}

.mzl-color-ticket__main small {
    color: #475467;
    font-size: 0.48rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

.mzl-color-ticket__main strong {
    overflow: hidden;
    margin-top: 0.2rem;
    color: #182230;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mzl-color-ticket__stub {
    display: grid;
    border-left: 1px dashed rgba(17, 24, 39, 0.42);
    color: #172b4d;
    font-size: 0.92rem;
    font-weight: 900;
    place-items: center;
}

.mzl-ticket-stage {
    min-width: 0;
    max-width: 36rem;
    margin-bottom: 1rem;
}

.mzl-ticket {
    --mzl-ticket-color: #e9edf3;
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) minmax(7.5rem, 0.42fr);
    min-height: 9.5rem;
    border: 1px solid rgba(16, 24, 40, 0.22);
    border-radius: 0.65rem;
    background: var(--mzl-ticket-color);
    color: #111827;
    box-shadow:
        0 14px 25px rgba(16, 24, 40, 0.13),
        inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    transform: rotate(-0.45deg);
    transition:
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.mzl-ticket::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 12px,
            rgba(255, 255, 255, 0.13) 12px,
            rgba(255, 255, 255, 0.13) 13px
        );
    content: "";
    pointer-events: none;
}

.mzl-ticket--pending {
    box-shadow:
        0 14px 25px rgba(16, 24, 40, 0.13),
        0 0 0 3px rgba(37, 99, 235, 0.12);
}

.mzl-ticket--selected {
    box-shadow:
        0 16px 30px rgba(16, 24, 40, 0.16),
        0 0 0 3px rgba(15, 118, 110, 0.2);
    transform: rotate(0) translateY(-2px);
}

.mzl-ticket--added {
    animation: mzl-ticket-added 420ms ease-in-out;
}

.mzl-ticket--preview {
    animation: mzl-ticket-swap 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzl-ticket__main,
.mzl-ticket__stub {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.mzl-ticket__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 1.1rem clamp(1rem, 4vw, 1.8rem);
}

.mzl-ticket__eyebrow {
    margin-bottom: 0.2rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mzl-ticket__title {
    font-size: clamp(1.55rem, 5vw, 2.35rem);
    font-weight: 900;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.mzl-ticket__tagline {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.mzl-ticket__main small {
    margin-top: 0.15rem;
    opacity: 0.72;
}

.mzl-ticket__stub {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0.75rem;
    border-left: 2px dashed rgba(17, 24, 39, 0.45);
    text-align: center;
}

.mzl-ticket__stub::before,
.mzl-ticket__stub::after {
    position: absolute;
    left: -0.62rem;
    width: 1.1rem;
    height: 1.1rem;
    border: 1px solid rgba(16, 24, 40, 0.16);
    border-radius: 50%;
    background: #fff;
    content: "";
}

.mzl-ticket__stub::before {
    top: -0.6rem;
}

.mzl-ticket__stub::after {
    bottom: -0.6rem;
}

.mzl-ticket__stub-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mzl-ticket__number {
    display: block;
    max-width: 100%;
    margin: 0.16rem 0;
    overflow: hidden;
    font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(1.55rem, 5vw, 2.45rem);
    font-weight: 900;
    letter-spacing: 0.025em;
    line-height: 1;
    text-overflow: ellipsis;
    animation: mzl-number-snap 170ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzl-ticket__number--repeat {
    padding-top: 0.32rem;
    border-top: 1px solid rgba(17, 24, 39, 0.35);
}

.mzl-ticket__variation {
    display: block;
    overflow: hidden;
    max-width: 100%;
    font-size: 0.68rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mzl-ticket-stage__hint {
    margin: 0.65rem 0 0;
    color: #667085;
    font-size: 0.8rem;
}

.mzl-selector__controls {
    align-self: center;
}

.mzl-selector__controls label {
    display: block;
    margin-bottom: 0.35rem;
    color: #344054;
    font-size: 0.82rem;
    font-weight: 700;
}

.mzl-selector__input {
    box-sizing: border-box;
    width: 100%;
    min-height: 2.85rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid #cfd5df;
    border-radius: 0.55rem;
    background: #fff;
    color: #182230;
    font-size: 1rem;
    font-weight: 700;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.mzl-selector__input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.mzl-selector__status {
    min-height: 1.45em;
    margin: 0.55rem 0 0;
    color: #475467;
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.4;
}

.mzl-selector__status--success {
    color: #08752c;
}

.mzl-selector__status--error {
    color: #b42318;
}

.mzl-selector__status--warning {
    color: #9a5b13;
}

.mzl-selector__status--updated {
    animation: mzl-status-in 220ms ease-out;
}

.mzl-random-action {
    min-width: 0;
}

.mzl-random-action__button {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 2.15rem minmax(0, 1fr);
    gap: 0.15rem 0.65rem;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.55rem 0.75rem;
    overflow: hidden;
    border: 1px solid #b8c6dc;
    border-radius: 0.7rem;
    background:
        radial-gradient(circle at 92% 15%, rgba(246, 220, 98, 0.42), transparent 27%),
        linear-gradient(135deg, #f5f8ff, #fff);
    box-shadow: 0 7px 16px rgba(23, 43, 77, 0.09);
    color: #172b4d;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
}

.mzl-random-action__button:not(:disabled):hover {
    border-color: #6c83aa;
    box-shadow: 0 11px 22px rgba(23, 43, 77, 0.15);
    transform: translateY(-2px);
}

.mzl-random-action__button:disabled {
    opacity: 0.52;
    cursor: not-allowed;
}

.mzl-random-action__button > span:not(.mzl-random-action__dice) {
    min-width: 0;
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.2;
}

.mzl-random-action__dice {
    display: grid;
    grid-row: 1;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.55rem;
    background: linear-gradient(145deg, #172b4d, #2d568e);
    box-shadow: 0 5px 10px rgba(23, 43, 77, 0.2);
    color: #f6dc62;
    font-size: 1.25rem;
    line-height: 1;
    place-items: center;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzl-random-action__button:not(:disabled):hover .mzl-random-action__dice {
    transform: rotate(10deg) scale(1.06);
}

.mzl-cart-tickets {
    display: flex;
    align-items: flex-start;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 0.4rem 0.65rem;
    padding-top: 0.7rem;
    border-top: 1px solid #e4e7ec;
    color: #475467;
    font-size: 0.76rem;
}

.mzl-cart-tickets__header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.mzl-cart-tickets__header > strong {
    color: #344054;
}

.mzl-cart-tickets__header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.mzl-cart-tickets__total {
    display: inline-flex;
    min-height: 1.9rem;
    align-items: center;
    gap: 0.42rem;
    padding: 0.28rem 0.65rem;
    border: 1px solid #b9d7c9;
    border-radius: 999px;
    background: linear-gradient(145deg, #f4fbf7, #fff);
    color: #344054;
    white-space: nowrap;
}

.mzl-cart-tickets__total > span {
    font-size: 0.67rem;
    font-weight: 700;
}

.mzl-cart-tickets__total > strong {
    color: #087443;
    font-size: 0.78rem;
    font-weight: 850;
}

.mzl-cart-tickets__total > strong,
.mzl-cart-tickets__total .woocommerce-Price-amount {
    animation: mzl-total-update 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzl-cart-tickets > .mzl-cart-tickets__list {
    display: flex;
    flex: 1 1 12rem;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.mzl-cart-tickets__remove-all {
    display: inline-flex;
    min-height: 1.9rem;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    border: 1px solid #f0b9b5;
    border-radius: 999px;
    background: #fff;
    color: #b42318;
    cursor: pointer;
    font: inherit;
    font-size: 0.7rem;
    font-weight: 780;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
    transition:
        border-color 150ms ease,
        background-color 150ms ease,
        color 150ms ease,
        transform 150ms ease;
}

.mzl-cart-tickets__remove-all > span {
    display: inline-grid;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #fee4e2;
    font: 800 0.78rem/1 Arial, sans-serif;
    place-items: center;
}

.mzl-cart-tickets__remove-all:not(:disabled):hover {
    border-color: #e27068;
    background: #fff5f4;
    transform: translateY(-1px);
}

.mzl-cart-tickets__remove-all.is-armed {
    border-color: #d92d20;
    background: #d92d20;
    color: #fff;
    animation: mzl-button-ready 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzl-cart-tickets__remove-all.is-armed > span {
    background: rgba(255, 255, 255, 0.2);
}

.mzl-cart-tickets__remove-all:disabled {
    cursor: wait;
    opacity: 0.65;
}

.mzl-cart-tickets__toggle {
    align-self: center;
    padding: 0.3rem 0.55rem;
    border: 1px solid #cfd5df;
    border-radius: 999px;
    background: #fff;
    color: #344054;
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1.2;
    white-space: nowrap;
}

.mzl-cart-tickets__toggle:hover {
    border-color: #98a2b3;
    background: #f8fafc;
}

.mzl-added-tickets__chip {
    --mzl-chip-color: #e9edf3;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.28rem 0.55rem;
    border: 1px solid rgba(16, 24, 40, 0.13);
    border-radius: 999px;
    background: var(--mzl-chip-color);
    color: #182230;
    font-weight: 750;
    animation: mzl-chip-in 300ms ease-out;
}

.mzl-added-tickets__chip.is-removing {
    opacity: 0.55;
}

.mzl-added-tickets__remove {
    display: inline-grid;
    width: 1.1rem;
    height: 1.1rem;
    margin: 0 -0.18rem 0 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.1);
    color: #182230;
    cursor: pointer;
    font: 800 0.88rem/1 Arial, sans-serif;
    place-items: center;
    transition:
        background-color 140ms ease,
        transform 140ms ease;
}

.mzl-added-tickets__remove:not(:disabled):hover {
    background: rgba(180, 35, 24, 0.16);
    color: #b42318;
    transform: scale(1.08);
}

.mzl-added-tickets__remove:disabled {
    cursor: wait;
}

body.mzl-random-modal-open {
    overflow: hidden;
}

.mzl-random-modal {
    position: fixed;
    z-index: 100000;
    display: grid;
    inset: 0;
    box-sizing: border-box;
    padding: clamp(1rem, 4vw, 2.5rem);
    overflow: auto;
    background: rgba(10, 20, 38, 0.68);
    backdrop-filter: blur(7px);
    place-items: center;
}

.mzl-random-modal__dialog {
    position: relative;
    box-sizing: border-box;
    width: min(100%, 35rem);
    max-height: calc(100dvh - 2rem);
    padding: clamp(1.15rem, 4vw, 1.75rem);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 1.15rem;
    background:
        radial-gradient(circle at 0 0, rgba(169, 216, 235, 0.42), transparent 31%),
        radial-gradient(circle at 100% 0, rgba(246, 220, 98, 0.44), transparent 30%),
        #fff;
    box-shadow:
        0 32px 90px rgba(7, 15, 30, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.72);
    color: #182230;
}

.mzl-random-modal__close {
    position: absolute;
    z-index: 2;
    top: 0.75rem;
    right: 0.75rem;
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #344054;
    cursor: pointer;
    font: 700 1.4rem/1 Arial, sans-serif;
    place-items: center;
    transition:
        background-color 140ms ease,
        transform 140ms ease;
}

.mzl-random-modal__close:not(:disabled):hover {
    background: #fff;
    transform: rotate(5deg) scale(1.05);
}

.mzl-random-modal__hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    margin: -0.1rem 2.5rem 0.65rem;
}

.mzl-random-modal__hero span {
    display: grid;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(23, 43, 77, 0.14);
    border-radius: 0.7rem;
    background: linear-gradient(145deg, #1d3b68, #172b4d);
    box-shadow: 0 10px 20px rgba(23, 43, 77, 0.2);
    color: #f6dc62;
    font-size: 1.5rem;
    place-items: center;
}

.mzl-random-modal__hero span:first-child {
    transform: rotate(-9deg) translateX(0.45rem);
}

.mzl-random-modal__hero span:nth-child(2) {
    z-index: 1;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 50%;
    background: #f6dc62;
    color: #172b4d;
    font-size: 1.05rem;
    transform: translateY(-0.9rem);
}

.mzl-random-modal__hero span:last-child {
    transform: rotate(8deg) translateX(-0.45rem);
}

.mzl-random-modal__eyebrow {
    display: block;
    margin-bottom: 0.25rem;
    color: #31568b;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
}

.mzl-random-modal__dialog h2 {
    margin: 0;
    color: #172033;
    font-size: clamp(1.45rem, 5vw, 2rem);
    letter-spacing: -0.025em;
    line-height: 1.12;
    text-align: center;
}

.mzl-random-modal__dialog > p {
    max-width: 29rem;
    margin: 0.65rem auto 1.15rem;
    color: #566176;
    font-size: 0.84rem;
    line-height: 1.5;
    text-align: center;
}

.mzl-random-modal__choices {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.mzl-random-modal__choice {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 4.3rem;
    padding: 0.5rem 0.25rem;
    border: 1px solid #d0d7e2;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 5px 12px rgba(16, 24, 40, 0.055);
    color: #25324a;
    cursor: pointer;
    font: inherit;
    transition:
        border-color 140ms ease,
        box-shadow 140ms ease,
        transform 140ms ease;
}

.mzl-random-modal__choice strong {
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1;
}

.mzl-random-modal__choice span {
    margin-top: 0.22rem;
    color: #667085;
    font-size: 0.61rem;
    font-weight: 750;
}

.mzl-random-modal__choice:not(:disabled):hover {
    border-color: #7189ad;
    box-shadow: 0 8px 16px rgba(23, 43, 77, 0.11);
    transform: translateY(-2px);
}

.mzl-random-modal__choice.is-selected {
    border-color: #172b4d;
    background: linear-gradient(145deg, #213f6b, #172b4d);
    box-shadow:
        0 9px 20px rgba(23, 43, 77, 0.22),
        0 0 0 2px rgba(49, 86, 139, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.mzl-random-modal__choice.is-selected span {
    color: #dce8fa;
}

.mzl-random-modal__choice:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.mzl-random-modal__dialog .mzl-random-modal__review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.9rem auto;
    color: #08752c;
    font-size: 0.72rem;
    font-weight: 750;
}

.mzl-random-modal__review span {
    display: grid;
    flex: 0 0 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #dcfae6;
    place-items: center;
}

.mzl-random-modal__confirm {
    position: relative;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #de2d43, #f04455);
    box-shadow: 0 10px 22px rgba(222, 45, 67, 0.24);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.2;
    transition:
        box-shadow 150ms ease,
        transform 150ms ease;
}

.mzl-random-modal__confirm:not(:disabled):hover {
    box-shadow: 0 13px 27px rgba(222, 45, 67, 0.31);
    transform: translateY(-1px);
}

.mzl-random-modal__confirm:disabled {
    opacity: 0.62;
    cursor: wait;
}

.mzl-random-modal__confirm.is-loading {
    padding-right: 3rem;
}

.mzl-random-modal__confirm.is-loading::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.9rem;
    height: 0.9rem;
    margin-top: -0.55rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    content: "";
    animation: mzl-spin 650ms linear infinite;
}

.mzl-modal-enter-active,
.mzl-modal-leave-active {
    transition: opacity 190ms ease;
}

.mzl-modal-enter-active .mzl-random-modal__dialog,
.mzl-modal-leave-active .mzl-random-modal__dialog {
    transition:
        opacity 190ms ease,
        transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzl-modal-enter-from,
.mzl-modal-leave-to,
.mzl-modal-enter-from .mzl-random-modal__dialog,
.mzl-modal-leave-to .mzl-random-modal__dialog {
    opacity: 0;
}

.mzl-modal-enter-from .mzl-random-modal__dialog {
    transform: translateY(16px) scale(0.97);
}

.mzl-modal-leave-to .mzl-random-modal__dialog {
    transform: translateY(9px) scale(0.985);
}

.mzl-chip-leave-active {
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.mzl-chip-leave-to {
    opacity: 0;
    transform: scale(0.82);
}

.mzl-ticket-form .quantity {
    display: none !important;
}

.mzl-ticket-form .single_add_to_cart_button {
    position: relative;
    width: 100% !important;
    min-height: 3rem !important;
    margin: 0 !important;
    padding: 0.75rem 1.15rem !important;
    border: 0 !important;
    border-radius: 0.65rem !important;
    background: linear-gradient(135deg, #172b4d, #264a7d) !important;
    box-shadow: 0 8px 18px rgba(23, 43, 77, 0.2) !important;
    color: #fff !important;
    font-size: 0.86rem !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    transition:
        transform 150ms ease,
        box-shadow 150ms ease,
        background-color 150ms ease !important;
}

.mzl-ticket-form .single_add_to_cart_button:not(:disabled):hover {
    box-shadow: 0 11px 22px rgba(23, 43, 77, 0.26) !important;
    transform: translateY(-1px);
}

.mzl-ticket-form .single_add_to_cart_button:disabled,
.mzl-ticket-form .single_add_to_cart_button.disabled {
    background: #c9ced6 !important;
    box-shadow: none !important;
    color: #667085 !important;
    cursor: not-allowed;
}

.mzl-ticket-form .single_add_to_cart_button.mzl-button--loading {
    padding-right: 2.6rem !important;
}

.mzl-ticket-form .single_add_to_cart_button.mzl-button--ready {
    animation: mzl-button-ready 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzl-ticket-form .single_add_to_cart_button.mzl-button--loading::after {
    position: absolute;
    top: 50%;
    right: 0.95rem;
    width: 0.85rem;
    height: 0.85rem;
    margin-top: -0.55rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    content: "";
    animation: mzl-spin 650ms linear infinite;
}

.mzl-cart-ticket-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    object-fit: contain;
}

.mzl-mini-cart-ticket-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin: 0 0 0.75rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid #dfe3ea;
    border-radius: 0.65rem;
    background: #f8fafc;
    color: #344054;
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: left;
}

.mzl-mini-cart-ticket-summary a {
    color: #d92d20;
    font-weight: 750;
    white-space: nowrap;
}

.mzl-order-tickets {
    box-sizing: border-box;
    margin: 1.5rem 0 2rem;
    padding: clamp(1rem, 3vw, 1.6rem);
    border: 1px solid #dfe3ea;
    border-radius: 1rem;
    background:
        radial-gradient(circle at 100% 0, rgba(246, 220, 98, 0.24), transparent 30%),
        #fff;
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.07);
}

.mzl-order-tickets__header {
    margin-bottom: 1.25rem;
}

.mzl-order-tickets__header h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.35rem, 4vw, 1.8rem);
}

.mzl-order-tickets__header p {
    margin: 0;
    color: #475467;
}

.mzl-order-tickets__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 1rem;
}

.mzl-order-ticket-card .mzl-ticket {
    min-height: 9rem;
}

.mzl-order-ticket-card .mzl-ticket__title {
    font-size: clamp(1.35rem, 4vw, 2rem);
}

.mzl-order-ticket-card__product {
    margin: 0.65rem 0 0;
    color: #475467;
    font-size: 0.82rem;
}

body.mzl-ticket-product-page .mzvue-product-detail__media {
    display: none !important;
}

body.mzl-ticket-product-page #nasa-breadcrumb-site,
body.mzl-ticket-product-page .mzs-product-header-context {
    display: none !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__main {
    display: grid !important;
    grid-template-columns: minmax(0, 820px) !important;
    justify-content: center;
}

body.mzl-ticket-product-page .mzvue-product-detail__summary {
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto 9.25rem;
    gap: 0.45rem 1rem;
    width: 100% !important;
    max-width: 820px !important;
    margin: 0 auto !important;
    padding: clamp(1rem, 3vw, 1.7rem) !important;
    border: 1px solid #dde3ec;
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at 100% 0, rgba(242, 178, 195, 0.23), transparent 26%),
        radial-gradient(circle at 0 100%, rgba(169, 216, 235, 0.2), transparent 28%),
        linear-gradient(155deg, #fff 0%, #fbfcff 100%);
    box-shadow:
        0 24px 60px rgba(16, 24, 40, 0.1),
        0 2px 7px rgba(16, 24, 40, 0.04);
    animation: mzl-summary-in 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.mzl-ticket-product-page .mzvue-product-detail__summary > h1 {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin: 0 !important;
    color: #131b2a;
    font-size: clamp(1.8rem, 4vw, 2.7rem) !important;
    letter-spacing: -0.035em;
    line-height: 1.05 !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__badges,
body.mzl-ticket-product-page .mzvue-product-detail__meta,
body.mzl-ticket-product-page .mzvue-product-detail__support,
body.mzl-ticket-product-page .impress-product-content,
body.mzl-ticket-product-page .mre-recommendations,
body.mzl-ticket-product-page .woocommerce-tabs,
body.mzl-ticket-product-page .related,
body.mzl-ticket-product-page .upsells,
body.mzl-ticket-product-page .product_meta,
body.mzl-ticket-product-page .sku_wrapper {
    display: none !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__badges {
    display: block !important;
    align-self: stretch;
    grid-column: 3;
    grid-row: 1;
}

body.mzl-ticket-product-page .mzvue-product-detail__badges > :not(.mzl-product-photo) {
    display: none !important;
}

body.mzl-ticket-product-page .mzl-product-photo {
    position: relative;
    display: block !important;
    width: 100%;
    height: 100%;
    min-height: 4.4rem;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 43, 77, 0.1);
    border-radius: 0.8rem;
    background: #f5f4f2;
    box-shadow: 0 7px 18px rgba(33, 42, 60, 0.07);
}

body.mzl-ticket-product-page .mzl-product-photo::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
    pointer-events: none;
    content: "";
}

body.mzl-ticket-product-page .mzl-product-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 69% center;
    transform: scale(1.28);
    transform-origin: 76% center;
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.mzl-ticket-product-page .mzvue-product-detail__summary:hover .mzl-product-photo img {
    transform: scale(1.32);
}

body.mzl-ticket-product-page .mzvue-product-detail__after {
    display: block !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__after > :not(.mzl-campaign) {
    display: none !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__price,
body.mzl-ticket-product-page .mzvue-product-detail__excerpt {
    margin: 0 !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__price {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    padding: 0.62rem 0.8rem;
    border: 1px solid rgba(222, 45, 67, 0.16);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 7px 18px rgba(33, 42, 60, 0.07);
    text-align: right;
}

body.mzl-ticket-product-page .mzvue-product-detail__price .price {
    margin: 0 !important;
    color: #de2d43;
    font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
    line-height: 1 !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__price .woocommerce-price-suffix {
    display: block;
    margin-top: 0.25rem;
    color: #667085;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.1;
}

body.mzl-ticket-product-page .mzvue-product-detail__excerpt {
    grid-column: 1 / -1;
    grid-row: 2;
    color: #475467;
    font-size: 0.94rem;
}

body.mzl-ticket-product-page .mzvue-product-detail__excerpt p {
    margin: 0 !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__purchase {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0.7rem 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.mzl-ticket-product-page .mzl-ticket-form .reset_variations {
    display: none !important;
}

body.mzl-ticket-product-page .mzl-ticket-form .mwl-btn--single {
    display: none !important;
}

body.mzl-ticket-product-page .mzl-ticket-form .woocommerce-variation-availability {
    display: none !important;
}

body.mzl-ticket-product-page .mzl-ticket-form .mzl-color-row--enhanced {
    display: none !important;
}

body.mzl-ticket-product-page .mzvue-product-detail__purchase form.mzl-ticket-form,
body.mzl-ticket-product-page .mzl-ticket-form .single_variation_wrap,
body.mzl-ticket-product-page .mzl-ticket-form .woocommerce-variation-add-to-cart {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
}

body.mzl-ticket-product-page .mzl-ticket-form.mzl-color-cards-only .variations {
    display: none !important;
}

body.single-product.mzvue-product-detail-page.mzl-ticket-product-page
    .mzvue-product-detail__purchase
    .impress-product-content {
    display: none !important;
}

body.mzl-ticket-product-page .mzl-selector {
    display: grid;
    grid-template-columns: minmax(245px, 0.95fr) minmax(250px, 1.05fr);
    gap: 0.5rem 1rem;
    margin: 0;
}

body.mzl-ticket-product-page .mzl-selector__title {
    grid-column: 1 / -1;
}

body.mzl-ticket-product-page .mzl-selector__deadline {
    grid-column: 1 / -1;
    margin-bottom: 0.15rem;
}

body.mzl-ticket-product-page .mzl-ticket-stage {
    grid-row: span 3;
    margin: 0;
}

body.mzl-ticket-product-page .mzl-selector__status {
    align-self: start;
    grid-column: 2;
    margin: 0;
}

body.mzl-ticket-product-page .mzl-ticket {
    min-height: 8.9rem;
}

body.mzl-ticket-product-page .mzl-campaign {
    box-sizing: border-box;
    width: calc(100% - 2rem);
    max-width: 820px;
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 4rem;
    overflow: hidden;
    border: 1px solid #dfe3ea;
    border-radius: 1.1rem;
    background: #fff;
    box-shadow: 0 16px 42px rgba(16, 24, 40, 0.07);
}

body.mzl-ticket-product-page .mzl-campaign__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    background:
        radial-gradient(circle at 100% 0, rgba(246, 220, 98, 0.34), transparent 42%),
        linear-gradient(135deg, #172b4d, #244877);
    color: #fff;
}

body.mzl-ticket-product-page .mzl-campaign__eyebrow {
    display: block;
    margin-bottom: 0.25rem;
    color: #f6dc62;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.mzl-ticket-product-page .mzl-campaign__header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
}

body.mzl-ticket-product-page .mzl-campaign__price {
    flex: 0 0 auto;
    min-width: 9rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.12);
    text-align: right;
    backdrop-filter: blur(7px);
}

body.mzl-ticket-product-page .mzl-campaign__price > span {
    display: block;
    margin-bottom: 0.15rem;
    color: #f6dc62;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.mzl-ticket-product-page .mzl-campaign__price strong,
body.mzl-ticket-product-page .mzl-campaign__price .price {
    color: #fff;
    font-size: 1.2rem;
}

body.mzl-ticket-product-page .mzl-campaign__content {
    padding: clamp(1rem, 3vw, 1.65rem);
    color: #344054;
    font-size: 0.94rem;
    line-height: 1.65;
}

body.mzl-ticket-product-page .mzl-campaign__copy {
    column-count: 2;
    column-gap: clamp(1.5rem, 4vw, 2.5rem);
    column-rule: 1px solid #eaecf0;
}

body.mzl-ticket-product-page .mzl-campaign__copy > :first-child,
body.mzl-ticket-product-page .mzl-campaign__copy > div > :first-child {
    margin-top: 0;
}

body.mzl-ticket-product-page .mzl-campaign__content h2,
body.mzl-ticket-product-page .mzl-campaign__content h3 {
    color: #182230;
    line-height: 1.25;
}

body.mzl-ticket-product-page .mzl-campaign__content h2 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
}

body.mzl-ticket-product-page .mzl-campaign__content h3 {
    margin-top: 1.65rem;
    font-size: 1.08rem;
}

body.mzl-ticket-product-page .mzl-campaign__content h2,
body.mzl-ticket-product-page .mzl-campaign__content h3,
body.mzl-ticket-product-page .mzl-campaign__content p,
body.mzl-ticket-product-page .mzl-campaign__content ol,
body.mzl-ticket-product-page .mzl-campaign__content ul {
    break-inside: avoid;
}

body.mzl-ticket-product-page .mzl-campaign__content h2,
body.mzl-ticket-product-page .mzl-campaign__content h3 {
    break-after: avoid;
}

body.mzl-ticket-product-page .mzl-campaign__content ol,
body.mzl-ticket-product-page .mzl-campaign__content ul {
    padding-left: 1.25rem;
}

body.mzl-ticket-product-page .mzl-campaign__content li + li {
    margin-top: 0.3rem;
}

@keyframes mzl-status-in {
    from {
        opacity: 0.35;
        transform: translateY(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mzl-summary-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.995);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mzl-color-selected {
    0% {
        transform: translateY(0) scale(0.96);
    }
    65% {
        transform: translateY(-3px) scale(1.025);
    }
    100% {
        transform: translateY(-2px) scale(1);
    }
}

@keyframes mzl-ticket-swap {
    from {
        opacity: 0.68;
        transform: translateX(-7px) rotate(-1.2deg) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(-0.45deg) scale(1);
    }
}

@keyframes mzl-number-snap {
    from {
        opacity: 0.28;
        transform: translateY(4px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mzl-button-ready {
    0% {
        transform: scale(0.985);
    }
    65% {
        transform: scale(1.008);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes mzl-chip-in {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mzl-total-update {
    from {
        opacity: 0.35;
        transform: translateY(2px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mzl-ticket-added {
    0% {
        opacity: 1;
        transform: rotate(0) translateY(-2px) scale(1);
    }
    50% {
        opacity: 0.72;
        transform: rotate(1deg) translateY(-9px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: rotate(0) translateY(-2px) scale(1);
    }
}

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

.mzl-selector input:focus-visible,
.mzl-selector__wallet-link:focus-visible,
.mzl-color-ticket:focus-visible,
.mzl-added-tickets__remove:focus-visible,
.mzl-cart-tickets__remove-all:focus-visible,
.mzl-cart-tickets__toggle:focus-visible,
.mzl-random-action__button:focus-visible,
.mzl-random-modal button:focus-visible,
.mzl-ticket-form .single_add_to_cart_button:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

@media (max-width: 820px) {
    body.mzl-ticket-product-page .mzl-selector {
        grid-template-columns: 1fr;
    }

    body.mzl-ticket-product-page .mzl-selector > *,
    body.mzl-ticket-product-page .mzl-selector__island > * {
        grid-column: 1;
    }

    body.mzl-ticket-product-page .mzl-ticket-stage {
        grid-row: auto;
    }

    body.mzl-ticket-product-page .mzvue-product-detail__summary {
        grid-template-columns: minmax(7.25rem, 0.42fr) minmax(0, 1fr);
    }

    body.mzl-ticket-product-page .mzvue-product-detail__summary > h1,
    body.mzl-ticket-product-page .mzvue-product-detail__excerpt,
    body.mzl-ticket-product-page .mzvue-product-detail__purchase {
        grid-column: 1 / -1;
    }

    body.mzl-ticket-product-page .mzvue-product-detail__summary > h1 {
        grid-row: 1;
    }

    body.mzl-ticket-product-page .mzvue-product-detail__price {
        grid-row: 2;
        grid-column: 2;
        justify-self: stretch;
        text-align: left;
    }

    body.mzl-ticket-product-page .mzvue-product-detail__badges {
        grid-column: 1;
        grid-row: 2;
    }

    body.mzl-ticket-product-page .mzvue-product-detail__excerpt {
        grid-row: 3;
    }

    body.mzl-ticket-product-page .mzvue-product-detail__purchase {
        grid-row: 4;
    }

    body.mzl-ticket-product-page .mzl-campaign__copy {
        column-count: 1;
        column-rule: 0;
    }

    body.mzl-ticket-product-page .mzl-campaign__header {
        align-items: flex-start;
        flex-direction: column;
    }

    body.mzl-ticket-product-page .mzl-campaign__price {
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .mzl-selector {
        margin: 0.75rem 0;
        padding: 0.8rem;
    }

    .mzl-ticket {
        grid-template-columns: minmax(0, 1fr) minmax(6.5rem, 0.48fr);
        min-height: 8.3rem;
    }

    .mzl-ticket__main {
        padding: 0.9rem;
    }

    .mzl-ticket__tagline {
        font-size: 0.72rem;
    }

    .mzl-ticket-stage__hint {
        margin-top: 0.5rem;
    }

    .mzl-color-picker__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mzl-color-ticket {
        min-height: 3.4rem;
    }

    .mzl-cart-tickets {
        display: block;
    }

    .mzl-cart-tickets__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .mzl-cart-tickets__header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .mzl-cart-tickets__remove-all {
        max-width: 11rem;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .mzl-cart-tickets__total {
        flex: 0 0 auto;
    }

    .mzl-cart-tickets > .mzl-cart-tickets__list {
        margin-top: 0.35rem;
    }

    .mzl-random-modal {
        align-items: end;
        padding: 0;
    }

    .mzl-random-modal__dialog {
        width: 100%;
        max-height: min(92dvh, 46rem);
        padding:
            1.1rem
            max(1rem, env(safe-area-inset-right))
            max(1rem, env(safe-area-inset-bottom))
            max(1rem, env(safe-area-inset-left));
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 1.15rem 1.15rem 0 0;
    }

    .mzl-random-modal__hero {
        min-height: 3.35rem;
        margin-bottom: 0.45rem;
    }

    .mzl-random-modal__hero span {
        width: 2.55rem;
        height: 2.55rem;
    }

    .mzl-random-modal__choices {
        gap: 0.4rem;
    }

    .mzl-random-modal__choice {
        min-height: 3.8rem;
        border-radius: 0.65rem;
    }

    .mzl-modal-enter-from .mzl-random-modal__dialog {
        transform: translateY(100%);
    }
}

@media (max-width: 370px) {
    .mzl-ticket {
        grid-template-columns: minmax(0, 1fr) minmax(5.7rem, 0.5fr);
    }

    .mzl-ticket__tagline,
    .mzl-ticket__main small {
        display: none;
    }

    .mzl-ticket__number {
        font-size: 1.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mzl-selector *,
    .mzl-ticket-form .single_add_to_cart_button,
    .mzl-random-modal,
    .mzl-random-modal * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
