        :root {
            --ef-color-primary: hsla(42,92.04%,44.31%,1);
            --ef-color-primary-hover: hsla(42,92.04%,38.5%,1);
            --ef-color-surface: hsla(4,6%,96%,1);
            --ef-color-primary-soft: hsla(35,87%,91%,1);
            --ef-color-surface-raised: #ffffff;
            --ef-color-accent: hsla(266,74%,67%,1);
            --ef-color-text: #1f2937;
            --ef-color-text-soft: #475467;
            --ef-color-text-muted: #667085;
            --ef-color-warning: #5f4b1f;
            --ef-color-danger: #b42318;
            --ef-color-border: #ececec;
            --ef-color-border-strong: #c9ced6;
            --ef-color-border-soft: #d0d7de;
            --ef-color-seat-outline: #8c96a5;
            --ef-space-3xs: clamp(0.45rem, 0.18vw + 0.42rem, 0.6rem);
            --ef-space-2xs: clamp(0.7rem, 0.24vw + 0.65rem, 0.88rem);
            --ef-space-xs: clamp(0.9rem, 0.32vw + 0.84rem, 1.08rem);
            --ef-space-s: clamp(1.1rem, 0.45vw + 1.01rem, 1.35rem);
            --ef-space-m: clamp(1.35rem, 0.7vw + 1.2rem, 1.8rem);
            --ef-space-l: clamp(1.7rem, 1vw + 1.5rem, 2.4rem);
            --ef-space-xl: clamp(2.1rem, 1.4vw + 1.8rem, 3rem);
            --ef-text-xs: 12px;
            --ef-text-sm: 14px;
            --ef-text-base: 16px;
            --ef-text-md: clamp(18px, 1rem + 0.55vw, 20px);
            --ef-text-lg: clamp(20px, 1.05rem + 1vw, 22px);
            --ef-text-xl: clamp(22px, 1.1rem + 1.45vw, 24px);
            --ef-text-2xl: clamp(24px, 1.2rem + 1.8vw, 26px);
            --ef-text-display: clamp(24px, 1.15rem + 2vw, 26px);
            --ef-control-sm: clamp(2rem, 0.5vw + 1.9rem, 2.35rem);
            --ef-control-md: clamp(2.5rem, 0.7vw + 2.35rem, 2.9rem);
            --ef-help-inline: clamp(4.5rem, 18vw, 8.75rem);
            --ef-shadow-button: 0 8px 20px rgba(18, 29, 44, 0.10);
            --ef-shadow-button-hover: 0 12px 26px rgba(18, 29, 44, 0.14);
        }
        .ef-section {
            margin-top: 0;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid var(--ef-color-border);
            border-radius: 14px;
            background: var(--ef-color-surface);
            overflow: hidden;
            max-width: 768px;
        }
        .ef-steps-section {
            margin: 0 0 var(--ef-space-s);
            padding: var(--ef-space-xs);
            border: 1px solid var(--ef-color-border);
            border-radius: 14px;
            background: var(--ef-color-surface-raised);
        }
        .ef-section__header {
            padding: var(--ef-space-s) var(--ef-space-m);
        }
        .ef-section__header {
            border-bottom: 1px solid var(--ef-color-border);
        }
        .ef-section__body {
            padding: var(--ef-space-s);
            background: var(--ef-color-surface);
        }
        .ef-steps {
            display: flex;
            gap: var(--ef-space-s);
            align-items: center;
            justify-content: space-between;
            margin-top: 0;
            padding: 0;
            border-radius: 18px;
            flex-wrap: wrap;
        }
        .ef-ticket-table {
            width: 100%;
            border-collapse: collapse;
        }
        .ef-ticket-table th,
        .ef-ticket-table td {
            border-bottom: 1px solid var(--ef-color-border);
            padding: var(--ef-space-2xs) var(--ef-space-s);
            text-align: left;
            vertical-align: top;
            background: var(--ef-color-surface);
        }
        .ef-ticket-table th {
            font-size: var(--ef-text-base);
            font-weight: 600;
            text-transform: none;
            color: var(--ef-color-text);
        }
        .ef-ticket-table tbody tr:nth-child(odd) td,
        .ef-ticket-table tbody tr:nth-child(odd) th {
            background-color: var(--ef-color-surface-raised);
        }
        .ef-ticket-table td:last-child {
            text-align: right;
        }
        .ef-ticket-table td:first-child {
            width: 100%;
        }
        .ef-ticket-price,
        .ef-ticket-table th:nth-child(2) {
            text-align: right;
        }
        .ef-ticket-price > span {
            display: block;
            width: 100%;
            text-align: right;
        }
        .ef-qty-control {
            display: inline-flex;
            align-items: center;
            gap: var(--ef-space-xs);
            justify-content: flex-end;
        }
        .ef-qty-btn {
            width: 32px;
            height: 32px;
            border: 1px solid var(--ef-color-border-soft);
            background: var(--ef-color-primary);
            border-radius: 8px;
            cursor: pointer;
            font-size: var(--ef-text-lg);
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--ef-color-surface-raised);
            outline: 0;
            box-shadow: var(--ef-shadow-button);
            transition: all 0.25s ease-in-out;
        }
        .ef-qty-btn:hover,
        .ef-qty-btn:focus,
        .ef-qty-btn:focus-visible {
            background: var(--ef-color-primary-hover);
            border-color: var(--ef-color-primary-hover);
            transform: translateY(-0.1rem);
            box-shadow: var(--ef-shadow-button-hover);
        }
        .ef-qty-btn:focus,
        .ef-qty-btn:focus-visible {
            outline: 4px solid var(--ef-color-primary);
            outline-offset: 2px;
        }
        .ef-qty-btn i {
            color: var(--ef-color-surface-raised);
            font-size: var(--ef-text-base);
            line-height: 1;
        }
        .ef-qty-btn[hidden] {
            display: inline-flex !important;
            visibility: hidden;
            pointer-events: none;
        }
        .ef-qty-input {
            width: 56px !important;
            text-align: center;
            appearance: textfield;
            -moz-appearance: textfield;
        }
        .ef-qty-input::-webkit-outer-spin-button,
        .ef-qty-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        .ef-step-summary {
            margin-top: 14px;
            display: flex;
            gap: var(--ef-space-l);
            flex-wrap: wrap;
        }
        .ef-step-summary .ef-summary-tickets {
            font-size: var(--ef-text-base);
            display: inline-flex;
            padding: var(--ef-space-xs);
            border-radius: 10px;
            background: var(--ef-color-primary-soft);
        }
        .ef-step--2 {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: var(--ef-color-surface-raised);
            padding: 0;
            height: 100vh;
            height: 100dvh;
        }
        .ef-seatmap-shell {
            position: relative;
            width: 100vw;
            height: 100vh;
            height: 100dvh;
        }
        .ef-seatmap-toolbar {
            display: none;
        }
        .ef-seatmap-stage {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: var(--ef-color-surface-raised);
            touch-action: none;
        }
        .ef-seatmap-svg {
            width: 100%;
            height: 100%;
            display: block;
            user-select: none;
            touch-action: none;
        }
        .ef-seatmap-topbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 3;
            display: block;
            padding: calc(10px + env(safe-area-inset-top, 0px)) 10px 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88), transparent);
            color: var(--ef-color-text-soft);
            font-size: var(--ef-text-base);
            line-height: 1.4;
        }
        .ef-seatmap-help {
            text-align: center;
            color: var(--ef-color-text);
            font-weight: 400;
            font-size: var(--ef-text-xs);
            width: 100%;
            max-width: 720px;
            margin: 0 auto;
            padding: 0 var(--ef-help-inline);
        }
        .ef-seatmap-side {
            position: absolute;
            top: calc(10px + env(safe-area-inset-top, 0px));
            right: 10px;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: var(--ef-space-xs);
        }
        .ef-seatmap-legend-wrap {
            position: relative;
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }
        .ef-seatmap-legend-trigger {
            min-width: var(--ef-control-sm);
            min-height: var(--ef-control-sm);
            padding: 0;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: var(--ef-text-xl);
            line-height: 1;
        }
        .ef-seatmap-legend-popover {
            position: absolute;
            top: 0;
            right: calc(100% + 8px);
            min-width: 160px;
            padding: var(--ef-space-xs) var(--ef-space-2xs);
            border: 1px solid rgba(140, 150, 165, 0.35);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 28px rgba(18, 29, 44, 0.12);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(4px);
            transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
        }
        .ef-seatmap-legend-wrap:hover .ef-seatmap-legend-popover,
        .ef-seatmap-legend-wrap:focus-within .ef-seatmap-legend-popover,
        .ef-seatmap-legend-wrap.is-open .ef-seatmap-legend-popover {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }
        .ef-seatmap-legend {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--ef-space-xs);
        }
        .ef-seatmap-legend-item {
            display: flex;
            align-items: center;
            gap: var(--ef-space-2xs);
        }
        .ef-seatmap-legend-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 1px solid var(--ef-color-seat-outline);
            flex: 0 0 auto;
        }
        .ef-seatmap-legend-dot--available {
            background: var(--ef-color-surface-raised);
        }
        .ef-seatmap-legend-dot--unavailable {
            background: var(--ef-color-seat-outline);
            border-color: var(--ef-color-seat-outline);
        }
        .ef-seatmap-legend-dot--selected {
            background: var(--ef-color-primary);
            border-color: var(--ef-color-primary);
        }
        .ef-zoom {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: var(--ef-space-xs);
        }
        .ef-zoom .button {
            min-width: var(--ef-control-sm);
            min-height: var(--ef-control-sm);
            padding: 0;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: var(--ef-text-xl);
            line-height: 1;
        }
        .ef-seatmap-footer {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 3;
            padding: 0 var(--ef-space-xs) calc(var(--ef-space-xs) + env(safe-area-inset-bottom, 0px));
            background: linear-gradient(to top, rgba(255,255,255,0.98), rgba(255,255,255,0.85), transparent);
        }
        .ef-seatmap-footer__inner {
            max-width: 768px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--ef-space-s);
            padding-top: 18px;
        }
        .ef-seatmap-footer .button {
            min-width: clamp(7rem, 12vw, 8.75rem);
            min-height: var(--ef-control-md);
        }
        .ef-step--2 .ef-category-prices {
            display: none;
        }
        .ef-seatmap-bg {
            pointer-events: none;
        }
        .ef-annotation {
            pointer-events: none;
        }
        .ef-annotation-text {
            dominant-baseline: middle;
            text-rendering: geometricPrecision;
        }
        .ef-seat circle {
            fill: var(--ef-color-surface-raised);
            stroke: var(--ef-color-seat-outline);
            stroke-width: 1px;
            transition: opacity .15s ease;
            cursor: inherit;
            vector-effect: non-scaling-stroke;
        }
        .ef-seat--available {
            cursor: pointer;
        }
        .ef-seat--available:hover circle {
            opacity: .85;
        }
        .ef-seat--available circle {
            fill: var(--ef-color-surface-raised);
            stroke: var(--ef-color-seat-outline);
        }
        .ef-seat--unavailable circle {
            fill: var(--ef-color-seat-outline);
            stroke: var(--ef-color-seat-outline);
        }
        .ef-seat--selected circle {
            fill: var(--ef-color-primary);
            stroke: var(--ef-color-primary);
        }
        .ef-seat.is-inactive {
            opacity: .2;
            cursor: inherit;
        }
        .ef-selected-list {
            width: 100%;
        }
        .ef-overview-hold {
            margin: var(--ef-space-xs) 0 0;
            font-size: var(--ef-text-base);
            font-weight: 600;
            color: var(--ef-color-warning);
        }
        .ef-overview-error {
            margin: var(--ef-space-2xs) 0 0;
            font-size: var(--ef-text-base);
            font-weight: 600;
            color: var(--ef-color-danger);
        }
        .ef-basket-table {
            width: 100%;
            border-collapse: collapse;
        }
        .ef-basket-table th,
        .ef-basket-table td {
            padding: var(--ef-space-xs);
            border-bottom: 1px solid var(--ef-color-border);
            text-align: left;
            vertical-align: middle;
			min-width:60px;
        }
        .ef-basket-table td:first-child {
            width: 100%;
        }
        .ef-basket-table thead th {
            font-size: var(--ef-text-base);
            font-weight: 600;
            text-transform: none;
            letter-spacing: normal;
            color: var(--ef-color-text);
        }
        .ef-basket-table .ef-basket-header th {
            padding: var(--ef-space-xs);
            color: var(--ef-color-text);
            font-size: var(--ef-text-base);
            font-weight: 600;
            letter-spacing: normal;
            text-transform: none;
        }
        .ef-basket-table td:last-child,
        .ef-basket-table th:last-child {
            text-align: right;
        }
        .ef-basket-table th:nth-child(3),
        .ef-basket-table td:nth-child(3) {
            text-align: right;
        }
        .ef-basket-meta {
            display: grid;
            gap: var(--ef-space-2xs);
        }
        .ef-cat-title {
            margin: 0;
            letter-spacing:0;
            text-transform: unset;
            font-size: var(--ef-text-base);
            font-weight: 600;
        }
		.ef-basket-category{
			font-weight: 400!important;
		}
        .ef-basket-seat {
            display: inline-block;
            font-size: var(--ef-text-base);
        }
        .ef-ticket-price > span,
        .ef-basket-price > span {
            font-size: var(--ef-text-base);
        }
        .ef-basket-price {
            white-space: nowrap;
            font-weight: 400;
        }
        .ef-basket-price > span {
            display: inline-block;
            width: 100%;
            text-align: right;
        }
        .ef-basket-discounts {
            font-size: var(--ef-text-sm);
            display: block;
        }
        .ef-basket-discount-applied {
            display: inline-flex;
            align-items: center;
            gap: var(--ef-space-3xs);
            flex-wrap: wrap;
        }
        .ef-basket-discounts--applied {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--ef-space-3xs);
        }
        .ef-discount-toggle {
            appearance: none;
            border: 0;
            background: transparent;
            padding: 0;
            color: var(--ef-color-primary);
            text-decoration: underline;
            cursor: pointer;
            font: inherit;
        }
        .ef-discount-toggle:hover {
            color: var(--ef-color-text);
        }
        .ef-discount-toggle.is-active {
            color: var(--ef-color-text);
            text-decoration: none;
        }
        .ef-discount-remove {
            color: var(--ef-color-primary);
            text-decoration: underline;
        }
        .ef-basket-remove {
            min-width: auto;
            padding: var(--ef-space-3xs) var(--ef-space-xs);
            border-radius: 6px;
            background: var(--ef-color-surface-raised);
            border: 1px solid var(--ef-color-border-soft);
            transition: background-color .2s ease, border-color .2s ease;
        }
        .ef-basket-remove:hover {
            background: var(--ef-color-surface);
            border-color: var(--ef-color-seat-outline);
        }
        .ef-basket-remove i {
            font-size: var(--ef-text-base);
            line-height: 1;
        }
        .ef-basket-total th {
            border-top: 2px solid var(--ef-color-border-strong);
            background: var(--ef-color-surface);
            font-size: var(--ef-text-base);
            font-weight: 700;
        }
        .ef-basket-total .ef-basket-price {
            font-weight: 700;
            border-top:2px solid;
        }
        .ef-basket-total-label {
            text-align: left;
        }
        .ef-basket-total-value {
            text-align: right !important;
        }
        .ef-basket-empty {
            padding: var(--ef-space-m) var(--ef-space-m);
            color: var(--ef-color-text-muted);
            border: 1px solid var(--ef-color-border);
            border-radius: 8px;
            background: var(--ef-color-surface-raised);
        }
        .ef-basket-discount-note {
            margin: var(--ef-space-xs) 0 0;
            font-size: var(--ef-text-sm);
            color: var(--ef-color-text-muted);
        }
        .ef-basket-discount-warning {
            margin: 0;
            font-size: var(--ef-text-xs);
            color: var(--ef-color-text-muted);
        }
        .ef-section__title {
            margin: 0;
        }
        .ef-section__subtitle {
            font-size: var(--ef-text-md);
			text-transform:unset;
			font-weight:500;
        }
        .ef-section__performance {
			font-size: var(--ef-text-md);
        }
        .ef-section__footer {
            margin-top: 16px;
            margin-left: auto;
            margin-right: auto;
            padding: 0;
            background: transparent;
            border: 0;
            max-width: 768px;
        }
        .ef-footer-actions {
            display: flex;
            gap: var(--ef-space-xs);
            align-items: center;
            justify-content: space-between;
        }
        .ef-button-primary,
        .ef-button-secondary,
        .ef-nav-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--ef-space-xs);
            padding: var(--ef-space-2xs) var(--ef-space-s);
            font-size: var(--ef-text-sm);
            font-weight: 600;
            text-decoration: none;
            border: 1px solid transparent;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            font-family: inherit;
            line-height: 1;
            outline: 0;
            box-shadow: var(--ef-shadow-button);
            transition: all 0.25s ease-in-out;
        }
        .ef-button-primary,
        .ef-nav-btn--next {
            border-radius: 10px;
            background: var(--ef-color-primary);
            border-color: var(--ef-color-primary);
            color: var(--ef-color-surface-raised);
        }
        .ef-button-secondary,
        .ef-nav-btn--back {
            border-radius: 6px;
            background: var(--ef-color-surface-raised);
            border: 1px solid var(--ef-color-border-soft);
            color: var(--ef-color-text);
        }
        .ef-button-secondary:hover,
        .ef-button-secondary:focus-visible,
        .ef-nav-btn--back:hover,
        .ef-nav-btn--back:focus-visible {
            background: var(--ef-color-surface);
            border-color: var(--ef-color-seat-outline);
            color: var(--ef-color-text);
            transform: translateY(-0.1rem);
            box-shadow: var(--ef-shadow-button-hover);
        }
        .ef-button-primary:hover,
        .ef-button-primary:focus-visible,
        .ef-nav-btn--next:hover,
        .ef-nav-btn--next:focus-visible {
            background: var(--ef-color-primary-hover);
            border-color: var(--ef-color-primary-hover);
            color: var(--ef-color-surface-raised);
            transform: translateY(-0.1rem);
            box-shadow: var(--ef-shadow-button-hover);
        }
        .ef-button-primary:focus,
        .ef-button-primary:focus-visible,
        .ef-button-secondary:focus,
        .ef-button-secondary:focus-visible,
        .ef-nav-btn:focus,
        .ef-nav-btn:focus-visible {
            outline: 4px solid var(--ef-color-primary);
            outline-offset: 2px;
        }
        .ef-nav-btn__icon {
            font-size: var(--ef-text-base);
            line-height: 1;
        }
        .ef-cat-title {
            margin: 0;
            letter-spacing:0;
            text-transform: unset;
            font-size: var(--ef-text-base);
            font-weight: 600;
        }
        .ef-cat-desc {
            font-size: var(--ef-text-sm);
        }
        .ef-low-stock {
            font-size: var(--ef-text-xs);
        }
        .ef-step--2 .ef-step-summary {
            display: none;
        }
        .ef-step--2[hidden] {
            display: none !important;
        }
        @media (max-width: 767px) {
            .ef-steps {
                gap: var(--ef-space-xs);
                padding: var(--ef-space-xs);
                justify-content: flex-start;
            }
            .ef-step-indicator {
                display: none;
            }
            .ef-step-indicator.is-active {
                display: flex;
                width: 100%;
                padding: var(--ef-space-2xs) var(--ef-space-s);
            }
            .ef-step--2 {
                padding: 0;
            }
            .ef-seatmap-topbar {
                padding: calc(16px + env(safe-area-inset-top, 0px)) 16px 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: var(--ef-space-xs);
            }
            .ef-seatmap-help {
                max-width: 100%;
                padding: 0 clamp(2.75rem, 10vw, 4.5rem);
                text-align: center;
            }
            .ef-seatmap-side {
                position: relative;
                top: auto;
                right: auto;
                width: auto;
                gap: var(--ef-space-xs);
                margin-left: auto;
                align-items: flex-end;
            }
            .ef-seatmap-legend-popover {
                top: calc(100% + 8px);
                right: 0;
            }
            .ef-seatmap-legend {
                width: auto;
                flex-direction: column;
                flex-wrap: nowrap;
                justify-content: flex-start;
                align-items: flex-start;
            }
            .ef-seatmap-footer {
                padding: 0 var(--ef-space-2xs) calc(var(--ef-space-m) + env(safe-area-inset-bottom, 0px));
            }
            .ef-seatmap-footer .button {
                min-width: clamp(6.4rem, 10vw, 7.5rem);
            }
            .ef-footer-actions {
                flex-wrap: wrap;
            }
            .ef-button-primary,
            .ef-button-secondary,
            .ef-nav-btn {
                flex: 0 0 auto;
            }
            .ef-basket-table {
                display: block;
                overflow-x: auto;
            }
        }
