@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

@font-face {
    font-family: "Franchise Free";
    src: url("../fonts/franchise-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =====================================================
   TICKETS LIVE - DESIGNER THEME
   Load this file AFTER the current site.css/app.css.
===================================================== */

:root {
    /* Values later supplied from CUSTOMER in MainLayout */
    --primary-color: #356DF3;
    --secondary-color: #101828;
    --brand-color: var(--primary-color);
    --brand-secondary-color: var(--secondary-color);
    --page-background-color: #FFFFFF;
    --page-text-color: #101828;
    --hero-background-color: #111827;
    --hero-text-color: #FFFFFF;
    --footer-background-color: #000000;
    --footer-text-color: #FFFFFF;
    /* Semantic design tokens */
    --background: var(--page-background-color);
    --foreground: var(--page-text-color);
    --card: #FFFFFF;
    --card-foreground: var(--brand-secondary-color);
    --surface: #F8FAFC;
    --muted: #F2F4F7;
    --muted-foreground: color-mix(in srgb, var(--brand-secondary-color) 62%, #FFFFFF 38%);
    --primary: var(--brand-color);
    --primary-foreground: #FFFFFF;
    --accent-blue: var(--brand-color);
    --border: #E4E7EC;
    --input: #D0D5DD;
    --ring: color-mix(in srgb, var(--brand-color) 35%, transparent);
    --success: #16A36A;
    --warning: #D97706;
    --danger: #D92D20;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 16px 40px -16px rgba(16, 24, 40, 0.14);
    --shadow-card-hover: 0 8px 26px rgba(16, 24, 40, 0.13);
    --shadow-button: 0 10px 24px color-mix(in srgb, var(--brand-color) 24%, transparent);
    --container-width: 1024px;
    --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

#app,
.tls-theme {
    min-height: 100vh;
}

.tls-theme {
    --brand-color: var(--primary-color, #356DF3);
    --brand-secondary-color: var(--secondary-color, #101828);
    display: flex;
    flex-direction: column;
    background: var(--background);
    color: var(--foreground);
}

.tls-container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
}

/* =====================================================
   GLOBAL TYPOGRAPHY
===================================================== */

.tls-main-wrapper {
    flex: 1 0 auto;
    min-height: 1px;
    background: var(--background);
    color: var(--foreground);
}

    .tls-main-wrapper h1,
    .tls-main-wrapper h2,
    .tls-main-wrapper h3,
    .tls-main-wrapper h4,
    .tls-main-wrapper h5,
    .tls-main-wrapper h6,
    .tls-main-wrapper p,
    .tls-main-wrapper label,
    .tls-main-wrapper caption,
    .tls-main-wrapper figcaption,
    .tls-main-wrapper small,
    .tls-main-wrapper .form-label,
    .tls-main-wrapper .caption {
        color: var(--brand-secondary-color);
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.65;
}

.tls-muted,
.event-subtitle,
.eventpage-subtitle,
.order-summary-event-date,
.form-text,
.text-muted,
.text-muted-foreground {
    color: var(--brand-secondary-color) !important;
    opacity: 0.66;
}

.tls-main-wrapper a:not(.btn):not(.event-cta):not(.eventpage-cta):not(.checkout-cta) {
    color: var(--brand-color);
    text-decoration-color: color-mix(in srgb, var(--brand-color) 45%, transparent);
    text-underline-offset: 3px;
    transition: color 160ms ease, opacity 160ms ease;
}

    .tls-main-wrapper a:not(.btn):not(.event-cta):not(.eventpage-cta):not(.checkout-cta):hover {
        color: var(--brand-color);
        opacity: 0.8;
    }

/* =====================================================
   NAVIGATION - DESIGNER HEADER
===================================================== */

.tls-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    background: #000000;
    border-bottom: 2px solid #F97316;
}

.tls-nav-inner {
    width: 100%;
    max-width: var(--container-width);
    height: 80px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tls-nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
    white-space: nowrap;
}

.tls-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

    .tls-logo img {
        display: block;
        width: auto;
        height: 48px;
        max-width: 220px;
        object-fit: contain;
    }

.tls-nav-back,
.tls-nav-back:visited {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 160ms ease;
}

    .tls-nav-back:hover {
        color: #FFFFFF;
    }

.tls-cart,
.tls-cart:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

    .tls-cart i,
    .tls-cart svg {
        width: 17px;
        height: 17px;
        font-size: 17px;
    }

.tls-cart-badge {
    position: static;
    min-width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* =====================================================
   HERO
===================================================== */

.hero-blue {
    position: relative;
    isolation: isolate;
    min-height: 280px;
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--hero-background-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--hero-text-color);
    text-align: center;
}

    .hero-blue.hero-has-image::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: rgba(0, 0, 0, 0.58);
    }

    .hero-blue h1 {
        max-width: 980px;
        margin: 0 0 12px;
        color: inherit;
        font-size: clamp(36px, 6vw, 68px);
        font-weight: 800;
        line-height: 1.03;
        letter-spacing: -0.035em;
    }

    .hero-blue p {
        max-width: 760px;
        margin: 0;
        color: inherit;
        font-size: clamp(16px, 2.2vw, 24px);
        line-height: 1.45;
        opacity: 0.96;
    }

.hero-title-fx {
    font-family: "Franchise Free", "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 12vw, 100px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background-image: linear-gradient(180deg, #FDBA74 0%, #F97316 35%, #DC2626 75%, #B91C1C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2.5px #D4AF37;
    text-shadow: 1px 1px 0 #7F1D1D, 2px 2px 0 #7F1D1D, 3px 3px 0 #7F1D1D, 4px 4px 0 #7F1D1D, 5px 5px 0 #7F1D1D, 6px 6px 0 #7F1D1D, 8px 10px 14px rgba(0, 0, 0, 0.55);
}

.event-hero-title {
    font-family: "Franchise Free", "Bebas Neue", sans-serif;
    font-size: clamp(2.75rem, 7vw, 5.25rem);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: 0.015em;
    color: #FFF7ED;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* =====================================================
   BUTTONS AND LINKS
===================================================== */

.tls-btn,
.event-cta,
.eventpage-cta,
.checkout-cta,
.btn-primary {
    min-height: 46px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--brand-color);
    border-radius: var(--radius-lg);
    background: var(--brand-color);
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-button);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease;
}

    .tls-btn:hover,
    .event-cta:hover,
    .eventpage-cta:hover,
    .checkout-cta:hover,
    .btn-primary:hover,
    .btn-primary:focus {
        border-color: var(--brand-color);
        background: var(--brand-color);
        color: #FFFFFF !important;
        filter: brightness(0.94);
        transform: translateY(-2px);
        box-shadow: 0 14px 30px color-mix(in srgb, var(--brand-color) 30%, transparent);
    }

    .tls-btn:active,
    .event-cta:active,
    .eventpage-cta:active,
    .checkout-cta:active,
    .btn-primary:active {
        transform: translateY(0);
    }

    .tls-btn:disabled,
    .event-cta:disabled,
    .eventpage-cta:disabled,
    .checkout-cta:disabled,
    .btn-primary:disabled {
        opacity: 0.45;
        pointer-events: none;
        box-shadow: none;
    }

    .tls-btn-secondary,
    .btn-secondary,
    .eventpage-cta.secondary {
        min-height: 44px;
        padding: 11px 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        background: #FFFFFF;
        color: var(--brand-secondary-color) !important;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
        transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

        .tls-btn-secondary:hover,
        .btn-secondary:hover,
        .eventpage-cta.secondary:hover {
            border-color: var(--brand-color);
            background: var(--surface);
            color: var(--brand-secondary-color) !important;
        }

/* =====================================================
   CARDS
===================================================== */

.tls-card,
.event-card,
.eventpage-card,
.checkout-card,
.order-summary-card,
.thankyou-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--card);
    color: var(--card-foreground);
    box-shadow: var(--shadow-card);
}

.event-card,
.eventpage-card {
    overflow: hidden;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

    .event-card:hover,
    .eventpage-card:hover {
        border-color: color-mix(in srgb, var(--brand-color) 32%, var(--border));
        transform: translateY(-2px);
        box-shadow: var(--shadow-card-hover);
    }

.event-card-image,
.eventpage-image {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.event-card-content,
.eventpage-body {
    padding: 20px;
}

.organiser-name,
.eventpage-title,
.checkout-title,
.order-summary-event-name {
    color: var(--brand-secondary-color);
    font-weight: 700;
    letter-spacing: -0.015em;
}

.eventpage-price-amount,
.ga-price-amount {
    color: var(--brand-color);
    font-weight: 700;
}

/* =====================================================
   FORMS
===================================================== */

.tls-form-label,
.form-label,
.checkout-card label,
.checkout-card label span:first-child {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-secondary-color);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tls-input,
.form-control,
.form-select,
.checkout-card input,
.checkout-card select,
.checkout-card textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--input);
    border-radius: var(--radius-md);
    outline: none;
    background: var(--surface);
    color: var(--brand-secondary-color);
    font-size: 14px;
    box-shadow: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

    .tls-input::placeholder,
    .form-control::placeholder,
    .checkout-card input::placeholder,
    .checkout-card textarea::placeholder {
        color: var(--brand-secondary-color);
        opacity: 0.42;
    }

    .tls-input:focus,
    .form-control:focus,
    .form-select:focus,
    .checkout-card input:focus,
    .checkout-card select:focus,
    .checkout-card textarea:focus {
        border-color: var(--brand-color);
        background: #FFFFFF;
        box-shadow: 0 0 0 3px var(--ring);
    }

.validation-message,
.text-danger,
.field-validation-error {
    color: var(--danger) !important;
    font-size: 13px;
}

/* =====================================================
   ORGANISER / EVENT LIST
===================================================== */

.organiser-section,
.eventpage-wrapper {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 40px 16px 80px;
}

.organiser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.event-card-image {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .event-card-image img {
        width: 100%;
        height: 100%;
        padding: 24px;
        object-fit: contain;
    }

.organiser-name {
    margin: 0 0 8px;
    font-size: 18px;
}

.event-footer {
    margin-top: auto;
    padding-top: 18px;
}

.event-cta {
    width: 100%;
}

.eventpage-wrapper {
    max-width: var(--container-width);
}

.eventpage-card {
    margin-bottom: 16px;
}

.eventpage-image {
    height: 300px;
}

    .eventpage-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.eventpage-body {
    gap: 24px;
}

/* =====================================================
   TRUST BADGES
===================================================== */

.trust-section,
.eventpage-trusted,
.eventpage-secure {
    min-height: 320px;
    padding: 56px 20px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-top: 1px solid var(--border);
}

.trust-grid,
.eventpage-secure-grid {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    text-align: center;
}

.trust-item,
.eventpage-secure-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .trust-item i,
    .eventpage-secure-item i {
        margin-bottom: 16px;
        color: var(--brand-color);
        font-size: 32px;
        font-weight: 400;
    }

    .trust-item h4,
    .eventpage-secure-item h4 {
        margin: 0 0 6px;
        color: var(--brand-secondary-color);
        font-size: 16px;
        font-weight: 700;
    }

    .trust-item p,
    .eventpage-secure-item p {
        max-width: 220px;
        margin: 0;
        color: var(--brand-secondary-color);
        font-size: 14px;
        line-height: 1.55;
        opacity: 0.62;
    }

/* =====================================================
   FAQ
===================================================== */

.faq-section {
    padding: 64px 16px 80px;
    background: var(--surface);
}

.faq-title {
    margin: 0 0 32px;
    color: var(--brand-secondary-color);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.faq-section details {
    max-width: 900px;
    margin: 0 auto 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}

.faq-section summary {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--brand-secondary-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

    .faq-section summary::after {
        color: var(--brand-color);
    }

.faq-section details p {
    padding: 0 20px 18px;
    color: var(--brand-secondary-color);
    font-size: 14px;
    opacity: 0.68;
}

/* =====================================================
   FOOTER - DESIGNER FOOTER
===================================================== */

.footer {
    flex: 0 0 auto;
    margin-top: 80px;
    padding: 48px 16px 32px;
    background: var(--footer-background-color);
    color: var(--footer-text-color);
    text-align: left;
}

.footer-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 32px;
    max-width: 220px;
    margin: 0 0 16px;
    object-fit: contain;
}

.footer-text {
    max-width: 360px;
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.6;
}

.footer-links-title {
    margin: 0 0 16px;
    color: inherit;
    font-size: 14px;
    font-weight: 700;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-links li {
        margin-bottom: 8px;
        color: inherit;
        font-size: 14px;
        opacity: 0.6;
    }

    .footer-links a,
    .footer-links a:visited {
        color: inherit;
        text-decoration: none;
    }

        .footer-links a:hover {
            opacity: 1;
        }

.footer-bottom {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid color-mix(in srgb, var(--footer-text-color) 10%, transparent);
    color: inherit;
    font-size: 12px;
    opacity: 0.42;
}

.socials {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 20px 0;
}

    .socials i {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: color-mix(in srgb, var(--footer-text-color) 9%, transparent);
        color: inherit;
        transition: transform 160ms ease, background-color 160ms ease;
    }

        .socials i:hover {
            background: color-mix(in srgb, var(--footer-text-color) 16%, transparent);
            transform: translateY(-2px);
        }

/* =====================================================
   FEEDBACK STATES
===================================================== */

.tls-success {
    color: var(--success) !important;
}

.tls-warning {
    color: var(--warning) !important;
}

.tls-danger {
    color: var(--danger) !important;
}

.tls-spinner {
    color: var(--brand-color) !important;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 767.98px) {
    .tls-nav-inner {
        height: 72px;
    }

    .tls-nav-left {
        gap: 12px;
    }

    .tls-logo img {
        height: 40px;
        max-width: 170px;
    }

    .tls-nav-back {
        max-width: 130px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-blue {
        min-height: 240px;
        padding: 48px 18px;
    }

    .hero-title-fx {
        -webkit-text-stroke-width: 1.5px;
        text-shadow: 1px 1px 0 #7F1D1D, 2px 2px 0 #7F1D1D, 3px 3px 0 #7F1D1D, 5px 7px 12px rgba(0, 0, 0, 0.5);
    }

    .organiser-section,
    .eventpage-wrapper {
        padding-top: 28px;
        padding-bottom: 56px;
    }

    .organiser-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .eventpage-image {
        height: 220px;
    }

    .eventpage-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-section,
    .eventpage-trusted,
    .eventpage-secure {
        min-height: auto;
        padding: 48px 20px;
    }

    .trust-grid,
    .eventpage-secure-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        margin-top: 56px;
        padding-top: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 420px) {
    .tls-cart {
        font-size: 13px;
    }

    .tls-nav-back {
        display: none;
    }
}

/* =====================================================
   EVENT DETAILS / SEAT MAP PAGE
===================================================== */

.event-detail-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: #111827;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.event-detail-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.20) 100%);
}

.event-detail-hero-content {
    position: relative;
    padding-top: 120px;
    padding-bottom: 48px;
    color: #FFFFFF;
}

    .event-detail-hero-content .selling-fast-badge {
        position: static;
        width: fit-content;
        margin-bottom: 18px;
        padding: 7px 12px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.40);
        color: #FFFFFF;
        font-size: 12px;
        font-weight: 700;
        backdrop-filter: blur(8px);
    }

.selling-fast-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--warning);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.18);
}

.event-detail-meta {
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

    .event-detail-meta i {
        font-size: 15px;
    }

.event-detail-meta-divider {
    margin: 0 2px;
    opacity: 0.62;
}

.event-detail-hero .event-hero-title {
    max-width: 850px;
    margin: 0;
    color: #FFF7ED;
}

.event-detail-subtitle {
    max-width: 650px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.80) !important;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
}

.event-map-section {
    padding: 40px 0 24px;
    background: var(--background);
}

.event-map-container {
    position: relative;
}

.event-map-heading {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
}

.event-map-kicker,
.modal-kicker {
    margin: 0 0 7px;
    color: var(--brand-color) !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.event-map-heading h2,
.ga-section-heading h2 {
    margin: 0 0 9px;
    color: var(--brand-secondary-color);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 750;
    letter-spacing: -0.035em;
}

.event-map-heading > p:last-child {
    margin: 0;
    color: var(--muted-foreground) !important;
    font-size: 14px;
}

.event-map-panel {
    min-height: 300px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
}

    .event-map-panel .map-wrapper {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        overflow-x: auto;
    }

    .event-map-panel .svg-sectors,
    .event-map-panel .svg-seats {
        width: 100%;
    }

        .event-map-panel .svg-sectors svg,
        .event-map-panel .svg-seats svg {
            display: block;
            max-width: 100%;
            margin: 0 auto;
        }

.event-map-state {
    min-height: 260px;
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .event-map-state.compact {
        min-height: 150px;
    }

    .event-map-state > i {
        margin-bottom: 14px;
        color: var(--brand-color);
        font-size: 38px;
    }

    .event-map-state h4 {
        margin: 0 0 6px;
        font-size: 18px;
    }

    .event-map-state p {
        margin: 10px 0 0;
        color: var(--muted-foreground) !important;
        font-size: 14px;
    }

.event-map-panel .seat-legend-wrapper {
    margin-top: 22px;
}

.event-map-panel .seat-legend {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 11px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--brand-secondary-color);
    font-size: 12px;
    font-weight: 600;
}

.event-map-panel .legend-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.event-map-panel .legend-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
}

.ga-section {
    padding: 64px 0 20px;
}

.ga-section-heading {
    margin-bottom: 24px;
    text-align: left;
}

.ga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.ga-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
}

    .ga-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: var(--brand-color);
    }

.ga-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.ga-title {
    margin: 0 0 7px;
    color: var(--brand-secondary-color);
    font-size: 20px;
    font-weight: 750;
}

.ga-description {
    margin: 0;
    color: var(--muted-foreground) !important;
    font-size: 13px;
    line-height: 1.55;
}

.ga-availability {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--success) 10%, #FFFFFF);
    color: var(--success);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.ga-card-bottom {
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.ga-from {
    display: block;
    margin-bottom: 2px;
    color: var(--muted-foreground);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ga-price-amount {
    display: block;
    font-size: 25px;
    line-height: 1;
}

.ga-card .eventpage-cta,
.ga-card .tls-btn-secondary {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.event-detail-trust {
    min-height: auto;
    margin: 64px -16px 0;
    padding: 56px 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.checkout-bottom {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: auto;
    z-index: 1040;
    transform: none;
}

    .checkout-bottom .checkout-cta {
        min-width: 230px;
        padding: 14px 22px;
        border-radius: 999px;
        box-shadow: 0 16px 38px color-mix(in srgb, var(--brand-color) 34%, transparent);
    }

.tls-modal {
    overflow: hidden;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-2xl) !important;
    background: #FFFFFF;
    box-shadow: 0 28px 80px rgba(16, 24, 40, 0.25) !important;
}

    .tls-modal .modal-header {
        padding: 22px 24px 18px;
        align-items: flex-start;
        border-bottom: 1px solid var(--border);
        background: #FFFFFF;
    }

    .tls-modal .modal-title {
        margin: 0;
        color: var(--brand-secondary-color);
        font-size: 22px;
        font-weight: 750;
    }

    .tls-modal .modal-body {
        padding: 18px;
        background: var(--surface);
    }

.ticket-category-option {
    width: 100%;
    margin-bottom: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    color: var(--brand-secondary-color);
    text-align: left;
    cursor: pointer;
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

    .ticket-category-option:last-child {
        margin-bottom: 0;
    }

    .ticket-category-option:hover {
        border-color: color-mix(in srgb, var(--brand-color) 45%, var(--border));
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
    }

.ticket-category-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .ticket-category-copy strong {
        font-size: 14px;
        font-weight: 750;
    }

    .ticket-category-copy small {
        color: var(--muted-foreground);
        font-size: 11px;
    }

.ticket-category-price {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    color: var(--brand-color);
    font-size: 16px;
    font-weight: 800;
}

.tls-modal .modal-footer {
    padding: 14px 18px 18px;
    border-top: 1px solid var(--border);
    background: #FFFFFF;
}

@media (min-width: 768px) {
    .event-detail-hero {
        min-height: 560px;
    }

    .event-detail-hero-content {
        padding-bottom: 58px;
    }
}

@media (max-width: 767.98px) {
    .event-detail-hero {
        min-height: 430px;
    }

    .event-detail-hero-content {
        padding-top: 90px;
        padding-bottom: 34px;
    }

    .event-detail-meta {
        font-size: 11px;
    }

    .event-map-section {
        padding-top: 30px;
    }

    .event-map-panel {
        padding: 12px;
        border-radius: var(--radius-xl);
    }

        .event-map-panel .seat-legend {
            border-radius: var(--radius-lg);
            gap: 10px 14px;
        }

    .ga-section {
        padding-top: 48px;
    }

    .ga-card-top,
    .ga-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .ga-card .eventpage-cta,
    .ga-card .tls-btn-secondary {
        width: 100%;
    }

    .event-detail-trust {
        margin-top: 48px;
    }

    .checkout-bottom {
        right: 0;
        bottom: 0;
        left: 0;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid var(--border);
        backdrop-filter: blur(14px);
    }

        .checkout-bottom .checkout-cta {
            width: 100%;
            min-width: 0;
            border-radius: var(--radius-lg);
        }
}


/* =====================================================
   EVENT PAGE - GENERAL ADMISSION / DESIGNER STYLE
   Numbered seat map styles are intentionally untouched.
===================================================== */

.ga-designer-section {
    max-width: 1000px;
    margin: 64px auto 0;
    padding: 0 16px;
}

.ga-designer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: 56px;
}

.ga-designer-intro {
    padding-top: 10px;
}

.ga-designer-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ga-designer-intro h2 {
    margin: 0 0 12px;
    color: var(--brand-secondary-color);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.ga-designer-intro > p {
    max-width: 520px;
    margin: 0;
    color: var(--muted-foreground) !important;
    font-size: 14px;
    line-height: 1.7;
}

.ga-designer-note {
    max-width: 520px;
    margin-top: 24px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid color-mix(in srgb, var(--brand-color) 22%, var(--border));
    border-radius: 12px;
    background: color-mix(in srgb, var(--brand-color) 5%, #ffffff);
    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.5;
}

    .ga-designer-note i {
        margin-top: 1px;
        color: var(--brand-color);
        font-size: 15px;
    }

.ga-ticket-box {
    position: sticky;
    top: 92px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 16px 40px -16px rgba(16, 24, 40, 0.14);
}

.ga-ticket-box-header {
    padding: 22px 22px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border);
}

    .ga-ticket-box-header h3 {
        margin: 0 0 3px;
        color: var(--brand-secondary-color);
        font-size: 19px;
        font-weight: 750;
        letter-spacing: -0.02em;
    }

    .ga-ticket-box-header p {
        margin: 0;
        color: var(--muted-foreground) !important;
        font-size: 11px;
    }

.ga-ticket-box-badge {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted-foreground);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ga-ticket-list {
    padding: 4px 22px;
}

.ga-ticket-row {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--border);
}

    .ga-ticket-row:last-child {
        border-bottom: 0;
    }

.ga-ticket-copy {
    min-width: 0;
    flex: 1;
}

    .ga-ticket-copy.is-sold-out {
        opacity: 0.48;
    }

.ga-ticket-title-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

    .ga-ticket-title-line h4 {
        margin: 0;
        color: var(--brand-secondary-color);
        font-size: 14px;
        font-weight: 750;
        line-height: 1.3;
    }

.ga-ticket-availability {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--success);
    font-size: 10px;
    font-weight: 750;
}

    .ga-ticket-availability > span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--success);
    }

.ga-ticket-copy > p {
    margin: 3px 0 0;
    color: var(--muted-foreground) !important;
    font-size: 11px;
    line-height: 1.45;
}

.ga-ticket-price {
    display: block;
    margin-top: 7px;
    color: var(--brand-color);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}

.ga-ticket-copy > small {
    display: block;
    margin-top: 5px;
    color: var(--muted-foreground);
    font-size: 9px;
}

.ga-ticket-add {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--brand-secondary-color);
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

    .ga-ticket-add:hover {
        border-color: var(--brand-color);
        background: var(--brand-color);
        color: #ffffff;
        transform: translateY(-1px);
    }

    .ga-ticket-add i {
        font-size: 15px;
    }

.ga-ticket-sold-out {
    flex: 0 0 auto;
    color: var(--danger);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.ga-ticket-box-footer {
    padding: 16px 22px 18px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

    .ga-ticket-box-footer > div {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        color: var(--muted-foreground);
        font-size: 10px;
    }

        .ga-ticket-box-footer > div strong {
            color: var(--brand-secondary-color);
            font-weight: 700;
        }

    .ga-ticket-box-footer > p {
        margin: 13px 0 0;
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--success) !important;
        font-size: 10px;
        font-weight: 700;
    }

        .ga-ticket-box-footer > p i {
            font-size: 13px;
        }

.ga-category-modal {
    overflow: hidden;
    border: 1px solid var(--border) !important;
    border-radius: 18px !important;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(16, 24, 40, 0.25) !important;
}

    .ga-category-modal .modal-header {
        padding: 22px 24px 18px;
        align-items: flex-start;
        border-bottom: 1px solid var(--border);
        background: #ffffff;
    }

    .ga-category-modal .modal-title {
        margin: 0;
        color: var(--brand-secondary-color);
        font-size: 22px;
        font-weight: 750;
        letter-spacing: -0.025em;
    }

.ga-modal-subtitle {
    margin: 5px 0 0;
    color: var(--muted-foreground) !important;
    font-size: 12px;
}

.ga-category-modal .modal-body {
    padding: 18px;
    background: var(--surface);
}

.ga-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ga-category-row {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--brand-secondary-color);
    text-align: left;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

    .ga-category-row:hover {
        border-color: color-mix(in srgb, var(--brand-color) 50%, var(--border));
        box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
        transform: translateY(-1px);
    }

.ga-category-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .ga-category-copy strong {
        font-size: 14px;
        font-weight: 750;
    }

    .ga-category-copy small {
        color: var(--muted-foreground);
        font-size: 10px;
    }

.ga-category-action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .ga-category-action > strong {
        color: var(--brand-color);
        font-size: 16px;
        font-weight: 800;
    }

.ga-category-plus {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--brand-secondary-color);
}

.ga-category-modal .modal-footer {
    padding: 14px 18px 18px;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

@media (max-width: 900px) {
    .ga-designer-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ga-ticket-box {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .ga-designer-section {
        margin-top: 44px;
        padding: 0;
    }

    .ga-ticket-box-header,
    .ga-ticket-list,
    .ga-ticket-box-footer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .ga-ticket-box-badge {
        display: none;
    }

    .ga-category-row {
        align-items: flex-start;
    }

    .ga-category-action {
        gap: 8px;
    }
}

/* =====================================================
   EVENTS LIST PAGE - DESIGNER LAYOUT
   Restores /shop/events after the GA patch.
===================================================== */

.events-page-loading,
.events-page-empty {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    text-align: center;
}

    .events-page-empty h1 {
        margin: 0 0 8px;
        color: var(--brand-secondary-color);
        font-size: 30px;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .events-page-empty p {
        margin: 0 0 24px;
        color: var(--muted-foreground) !important;
    }

.events-designer-hero {
    position: relative;
    height: 435px;
    overflow: hidden;
    background: var(--surface);
}

.events-designer-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.events-designer-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
}

.events-designer-hero-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    color: #ffffff;
    text-align: center;
}

    .events-designer-hero-content .hero-title-fx {
        margin: 0;
        line-height: 1;
    }

    .events-designer-hero-content > p {
        margin: 16px 0 0;
        color: #ffffff !important;
        font-size: 24px;
        line-height: 1.4;
    }

.events-designer-section {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 16px 80px;
}

.events-designer-heading {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .events-designer-heading h2 {
        margin: 0;
        color: var(--brand-secondary-color);
        font-size: 24px;
        font-weight: 800;
        letter-spacing: -0.025em;
        line-height: 1.2;
    }

.events-designer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.events-designer-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    color: var(--brand-secondary-color);
    text-decoration: none;
    transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

    .events-designer-card:hover {
        border-color: color-mix(in srgb, var(--brand-color) 24%, var(--border));
        color: var(--brand-secondary-color);
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(16, 24, 40, 0.10);
        transform: translateY(-1px);
    }

.events-designer-card {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
}

.events-designer-card-image {
    min-height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
}

    .events-designer-card-image img {
        width: 100%;
        height: 100%;
        min-height: 150px;
        display: block;
    }

    .events-designer-card-image img.event-card-photo {
        object-fit: cover;
    }

    .events-designer-card-image.is-logo {
        background: var(--brand-secondary-color, #101828);
    }

    .events-designer-card-image img.event-card-logo {
        padding: 18px 22px;
        object-fit: contain;
        background: transparent;
    }

.events-designer-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: grid;
    place-items: center;
    color: var(--muted-foreground);
    font-size: 34px;
}

.events-designer-card-content {
    min-width: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

    .events-designer-card-content h3 {
        margin: 0 0 4px;
        color: var(--brand-secondary-color);
        font-size: 18px;
        font-weight: 800;
        line-height: 1.25;
    }

.events-designer-meta,
.events-designer-description {
    color: var(--muted-foreground) !important;
    font-size: 14px;
    line-height: 1.5;
}

.events-designer-meta {
    margin: 0 0 8px;
}

.events-designer-description {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.events-designer-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.events-designer-price span {
    display: block;
    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.2;
}

.events-designer-price strong {
    display: block;
    margin-top: 2px;
    color: var(--brand-color);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.events-designer-link {
    margin-left: auto;
    color: var(--brand-color);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.events-designer-trust {
    border-top: 1px solid var(--border);
}

.events-designer-trust-inner {
    width: 100%;
    max-width: 1024px;
    min-height: 320px;
    margin: 0 auto;
    padding: 56px 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 32px;
    text-align: center;
}

.events-designer-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .events-designer-trust-item i {
        margin-bottom: 16px;
        color: var(--brand-color);
        font-size: 32px;
        line-height: 1;
    }

    .events-designer-trust-item h3 {
        margin: 0 0 6px;
        color: var(--brand-secondary-color);
        font-size: 16px;
        font-weight: 800;
    }

    .events-designer-trust-item p {
        max-width: 220px;
        margin: 0;
        color: var(--muted-foreground) !important;
        font-size: 14px;
        line-height: 1.5;
    }

@media (max-width: 767.98px) {
    .events-designer-hero {
        height: 360px;
    }

    .events-designer-hero-content > p {
        font-size: 18px;
    }

    .events-designer-card {
        grid-template-columns: 1fr;
    }

    .events-designer-card-image {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .events-designer-trust-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 575.98px) {
    .events-designer-hero {
        height: 320px;
    }

    .events-designer-section {
        padding-top: 32px;
        padding-bottom: 56px;
    }

    .events-designer-card-content {
        padding: 20px;
    }
}
/* =====================================================
   EVENT DETAILS - DESIGNER GA-ONLY PAGE
   Numbered seat selection is hidden in ShopEventMap.razor.
===================================================== */

.designer-page-container {
    width: min(100% - 32px, 1024px);
    margin: 0 auto;
}

.designer-event-loading {
    min-height: 360px;
    display: grid;
    place-items: center;
    background: #ffffff;
}

.designer-event-hero {
    --event-hero-text-color: #fff7ed;
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: #111827;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.designer-event-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.20) 100%);
}

.designer-event-hero-content {
    padding-bottom: 36px;
    color: #ffffff;
}

.designer-event-meta {
    margin: 0 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

    .designer-event-meta i {
        font-size: 15px;
    }

.designer-event-meta-divider {
    margin: 0 2px;
    opacity: 0.65;
}

.designer-event-title {
    max-width: 880px;
    margin: 0;
    font-family: "Franchise Free", "Bebas Neue", "Inter", sans-serif;
    font-size: clamp(3rem, 8vw, 5.25rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    color: var(--event-hero-text-color) !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.50);
}

.designer-event-subtitle {
    max-width: 640px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.80) !important;
    font-size: 15px;
    line-height: 1.65;
}

.designer-event-content {
    padding: 38px 0 48px;
    background: #ffffff;
}

.designer-event-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 40px;
}

.designer-event-info {
    min-width: 0;
}

.designer-event-overview {
    margin-bottom: 30px;
}

    .designer-event-overview h2,
    .designer-event-location h2,
    .designer-event-notice h2 {
        margin: 0 0 10px;
        color: var(--brand-secondary-color);
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -0.015em;
    }

    .designer-event-overview p,
    .designer-event-location > p {
        max-width: 620px;
        margin: 0;
        color: var(--muted-foreground) !important;
        font-size: 14px;
        line-height: 1.7;
    }

.designer-event-facts {
    margin-bottom: 30px;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.designer-event-fact span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted-foreground);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.designer-event-fact strong {
    display: block;
    color: var(--brand-secondary-color);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.designer-event-location {
    margin-bottom: 30px;
}

    .designer-event-location > p {
        margin-bottom: 14px;
    }

.designer-event-map-frame {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

    .designer-event-map-frame iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }

.designer-event-notice {
    padding: 20px;
    border: 1px solid color-mix(in srgb, var(--warning) 30%, var(--border));
    border-radius: 12px;
    background: color-mix(in srgb, var(--warning) 10%, #ffffff);
}

    .designer-event-notice h2 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .designer-event-notice h2 i {
            color: var(--warning);
            font-size: 16px;
        }

    .designer-event-notice ul {
        margin: 0;
        padding-left: 20px;
        color: var(--muted-foreground);
        font-size: 13px;
        line-height: 1.6;
    }

    .designer-event-notice li + li {
        margin-top: 6px;
    }

.designer-ticket-panel {
    min-width: 0;
}

.designer-ticket-panel-inner {
    position: sticky;
    top: 80px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 16px 40px -16px rgba(16, 24, 40, 0.14);
}

.designer-ticket-panel h3 {
    margin: 0 0 3px;
    color: var(--brand-secondary-color);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.designer-ticket-date {
    margin: 0 0 20px;
    color: var(--muted-foreground) !important;
    font-size: 11px;
}

.designer-ticket-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.designer-ticket-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.designer-ticket-copy {
    min-width: 0;
    flex: 1;
}

    .designer-ticket-copy.is-sold-out {
        opacity: 0.48;
    }

.designer-ticket-name-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

    .designer-ticket-name-line h4 {
        margin: 0;
        color: var(--brand-secondary-color);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.35;
    }

.designer-ticket-availability {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--success);
    font-size: 10px;
    font-weight: 700;
}

    .designer-ticket-availability > span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--success);
    }

.designer-ticket-copy > p {
    margin: 3px 0 0;
    color: var(--muted-foreground) !important;
    font-size: 11px;
    line-height: 1.45;
}

.designer-ticket-price {
    display: block;
    margin-top: 7px;
    color: var(--brand-color);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}

.designer-ticket-copy > small {
    display: block;
    margin-top: 5px;
    color: var(--muted-foreground);
    font-size: 9px;
}

.designer-ticket-add {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--brand-secondary-color);
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

    .designer-ticket-add:hover {
        border-color: var(--brand-color);
        background: var(--brand-color);
        color: #ffffff;
        transform: translateY(-1px);
    }

    .designer-ticket-add i {
        font-size: 14px;
    }

.designer-ticket-sold-out {
    flex: 0 0 auto;
    color: var(--danger);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.designer-ticket-summary {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

    .designer-ticket-summary > div {
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        color: var(--muted-foreground);
        font-size: 11px;
    }

        .designer-ticket-summary > div strong {
            color: var(--brand-secondary-color);
            font-weight: 700;
        }

.designer-checkout-button {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    background: var(--brand-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-color) 24%, transparent);
    transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

    .designer-checkout-button:hover {
        color: #ffffff;
        opacity: 0.92;
        transform: translateY(-1px);
        box-shadow: 0 14px 30px color-mix(in srgb, var(--brand-color) 30%, transparent);
    }

.designer-ticket-summary > p {
    margin: 11px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--muted-foreground) !important;
    font-size: 10px;
    text-align: center;
}

    .designer-ticket-summary > p i {
        color: var(--success);
        font-size: 13px;
    }

.designer-ticket-empty {
    padding: 28px 10px 12px;
    text-align: center;
}

    .designer-ticket-empty > i {
        color: var(--brand-color);
        font-size: 30px;
    }

    .designer-ticket-empty h4 {
        margin: 10px 0 5px;
        font-size: 15px;
    }

    .designer-ticket-empty p {
        margin: 0;
        color: var(--muted-foreground) !important;
        font-size: 11px;
        line-height: 1.5;
    }

.designer-event-trust {
    padding: 58px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
}

.designer-event-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}

.designer-event-trust-item {
    text-align: center;
}

    .designer-event-trust-item > i {
        display: block;
        margin-bottom: 10px;
        color: var(--brand-color);
        font-size: 22px;
    }

    .designer-event-trust-item h4 {
        margin: 0 0 6px;
        color: var(--brand-secondary-color);
        font-size: 13px;
        font-weight: 700;
    }

    .designer-event-trust-item p {
        max-width: 190px;
        margin: 0 auto;
        color: var(--muted-foreground) !important;
        font-size: 10px;
        line-height: 1.5;
    }

.designer-mobile-checkout {
    display: none;
}

.designer-category-modal {
    overflow: hidden;
    border: 1px solid var(--border) !important;
    border-radius: 18px !important;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(16, 24, 40, 0.25) !important;
}

    .designer-category-modal .modal-header {
        padding: 22px 24px 18px;
        align-items: flex-start;
        border-bottom: 1px solid var(--border);
        background: #ffffff;
    }

.designer-modal-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-color);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.designer-category-modal .modal-title {
    margin: 0;
    color: var(--brand-secondary-color);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.designer-modal-subtitle {
    margin: 5px 0 0;
    color: var(--muted-foreground) !important;
    font-size: 12px;
}

.designer-category-modal .modal-body {
    padding: 18px;
    background: var(--surface);
}

.designer-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.designer-category-row {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--brand-secondary-color);
    text-align: left;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

    .designer-category-row:hover {
        border-color: color-mix(in srgb, var(--brand-color) 50%, var(--border));
        box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
        transform: translateY(-1px);
    }

.designer-category-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .designer-category-copy strong {
        font-size: 14px;
        font-weight: 700;
    }

    .designer-category-copy small {
        color: var(--muted-foreground);
        font-size: 10px;
    }

.designer-category-action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .designer-category-action > strong {
        color: var(--brand-color);
        font-size: 16px;
        font-weight: 800;
    }

.designer-category-plus {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--brand-secondary-color);
}

.designer-category-modal .modal-footer {
    padding: 14px 18px 18px;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.designer-modal-cancel {
    min-height: 40px;
    padding: 9px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--brand-secondary-color);
    font-size: 13px;
    font-weight: 700;
}

    .designer-modal-cancel:hover {
        background: var(--surface);
    }

@media (min-width: 640px) {
    .designer-event-hero {
        height: 480px;
    }

    .designer-event-hero-content {
        padding-bottom: 46px;
    }
}

@media (min-width: 768px) {
    .designer-event-hero {
        height: 560px;
    }

    .designer-event-hero-content {
        padding-bottom: 56px;
    }
}

@media (max-width: 900px) {
    .designer-event-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .designer-ticket-panel-inner {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .designer-event-content {
        padding-top: 30px;
        padding-bottom: 92px;
    }

    .designer-event-facts {
        padding-top: 8px;
        padding-bottom: 8px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .designer-event-fact {
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

        .designer-event-fact + .designer-event-fact {
            border-top: 1px solid var(--border);
        }

        .designer-event-fact span {
            margin: 0;
        }

        .designer-event-fact strong {
            text-align: right;
        }

    .designer-event-trust-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .designer-mobile-checkout {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1040;
        padding: 12px 16px;
        display: block;
        border-top: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -12px 30px rgba(16, 24, 40, 0.10);
        backdrop-filter: blur(14px);
    }

    .designer-ticket-summary .designer-checkout-button {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .designer-page-container {
        width: min(100% - 24px, 1024px);
    }

    .designer-event-hero {
        height: 430px;
    }

    .designer-event-hero-content {
        padding-bottom: 32px;
    }

    .designer-event-meta {
        font-size: 10px;
    }

    .designer-ticket-panel-inner {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .designer-category-row {
        align-items: flex-start;
    }

    .designer-category-action {
        gap: 8px;
    }
}

/* =====================================================
   GENERAL ADMISSION CART SUMMARY
   Append this block to the end of designer.css
===================================================== */

.ga-order-summary {
    padding: 18px 20px 20px;
    border-top: 1px solid var(--border, #e4e7ec);
    background: #ffffff;
}

.ga-order-summary-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

    .ga-order-summary-title > span {
        color: var(--brand-secondary-color, #101828);
        font-size: 14px;
        font-weight: 700;
    }

    .ga-order-summary-title small {
        color: #667085;
        font-size: 12px;
        font-weight: 500;
    }

.ga-order-empty {
    padding: 14px 0 4px;
    color: #98a2b3;
    font-size: 13px;
    text-align: center;
}

.ga-selected-list {
    display: grid;
    gap: 0;
}

.ga-selected-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #eaecf0;
}

.ga-selected-copy {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2px;
}

    .ga-selected-copy strong {
        overflow: hidden;
        color: var(--brand-secondary-color, #101828);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ga-selected-copy small,
    .ga-selected-copy span {
        color: #667085;
        font-size: 11px;
        line-height: 1.35;
    }

.ga-selected-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

    .ga-selected-actions > strong {
        min-width: 62px;
        color: var(--brand-color, #356df3);
        font-size: 13px;
        font-weight: 700;
        text-align: right;
        font-variant-numeric: tabular-nums;
    }

.ga-quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .ga-quantity-control button {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 1px solid #d0d5dd;
        border-radius: 50%;
        background: #ffffff;
        color: var(--brand-secondary-color, #101828);
        font-size: 12px;
        line-height: 1;
        transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
    }

        .ga-quantity-control button:hover {
            border-color: var(--brand-color, #356df3);
            background: color-mix(in srgb, var(--brand-color, #356df3) 7%, #ffffff);
            color: var(--brand-color, #356df3);
            transform: translateY(-1px);
        }

    .ga-quantity-control span {
        min-width: 14px;
        color: var(--brand-secondary-color, #101828);
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        font-variant-numeric: tabular-nums;
    }

.ga-subtotal-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-top: 17px;
}

    .ga-subtotal-row span {
        color: #667085;
        font-size: 13px;
        font-weight: 600;
    }

    .ga-subtotal-row strong {
        color: var(--brand-color, #356df3);
        font-size: 19px;
        font-weight: 800;
        font-variant-numeric: tabular-nums;
    }

.ga-booking-fee-note {
    margin: 5px 0 14px;
    color: #98a2b3 !important;
    font-size: 10px !important;
    line-height: 1.4;
}

.ga-continue-button {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: 0;
    border-radius: 10px;
    background: var(--brand-color, #356df3);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--brand-color, #356df3) 24%, transparent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

    .ga-continue-button:hover {
        color: #ffffff;
        filter: brightness(0.95);
        transform: translateY(-1px);
        box-shadow: 0 12px 24px color-mix(in srgb, var(--brand-color, #356df3) 30%, transparent);
    }

    .ga-continue-button i {
        font-size: 12px;
    }

@media (max-width: 575.98px) {
    .ga-selected-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .ga-selected-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* =====================================================
   EVENT DETAILS - DESIGNER TRUST BADGES
   Append this block to the END of designer.css
===================================================== */

.event-detail-trust-section {
    width: 100vw;
    margin-top: 16px;
    margin-left: calc(50% - 50vw);
    border-top: 1px solid var(--border, #e4e7ec);
    background: #ffffff;
}

.event-detail-trust-inner {
    width: 100%;
    max-width: 1024px;
    min-height: 320px;
    margin: 0 auto;
    padding: 56px 16px;
    display: flex;
    align-items: center;
}

.event-detail-trust-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    text-align: center;
}

.event-detail-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .event-detail-trust-item i {
        margin-bottom: 16px;
        color: var(--brand-color, #356df3);
        font-size: 32px;
        font-weight: 400;
        line-height: 1;
    }

    .event-detail-trust-item h3 {
        margin: 0 0 6px;
        color: var(--brand-secondary-color, #101828);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.3;
    }

    .event-detail-trust-item p {
        max-width: 220px;
        margin: 0;
        color: var(--muted-foreground, #667085) !important;
        font-size: 14px;
        line-height: 1.55;
    }

/* Old event-detail bottom sections are no longer rendered. */
.eventpage-trusted,
.eventpage-secure {
    display: none !important;
}

@media (max-width: 767.98px) {
    .event-detail-trust-inner {
        min-height: 0;
        padding: 56px 20px;
    }

    .event-detail-trust-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

/* =====================================================
   EVENT DETAIL PAGE - TLX FINAL OVERRIDES
   Matches ShopEventMap_texts_like_designer.razor.
===================================================== */

.tlx-event-page {
    width: 100%;
    background: #ffffff;
    color: var(--brand-secondary-color, #101828);
}

.tlx-event-container {
    width: min(100% - 32px, 1024px);
    margin-right: auto;
    margin-left: auto;
}

.tlx-event-loading {
    min-height: 420px;
    display: grid;
    place-items: center;
    background: #ffffff;
}

.tlx-event-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 430px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #101828;
}

.tlx-event-hero-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.tlx-event-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.22) 100%);
}

.tlx-event-hero-inner {
    padding-bottom: 46px;
    color: #ffffff;
}

.tlx-event-meta {
    margin: 0 0 14px !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

    .tlx-event-meta i {
        font-size: 13px;
    }

.tlx-event-meta-divider {
    opacity: 0.65;
}

.tlx-event-hero-title {
    max-width: 760px;
    margin: 0;
    color: #fff7ed !important;
    font-family: "Franchise Free", "Bebas Neue", "Inter", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.tlx-event-hero-subtitle {
    max-width: 620px;
    margin: 12px 0 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 14px;
    line-height: 1.55;
}

.tlx-event-content {
    padding: 40px 0 50px;
    background: #ffffff;
}

.tlx-event-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 38px;
}

.tlx-event-main {
    min-width: 0;
}

.tlx-event-overview,
.tlx-event-location,
.tlx-event-important,
.tlx-event-faq,
.tlx-event-terms {
    margin: 0 0 28px;
}

    .tlx-event-overview h2,
    .tlx-event-location h2,
    .tlx-event-important h2,
    .tlx-event-faq h2 {
        margin: 0 0 10px;
        color: var(--brand-secondary-color, #101828);
        font-size: 15px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .tlx-event-overview > p,
    .tlx-event-location > p,
    .tlx-event-read-more p,
    .tlx-event-faq details p,
    .tlx-event-terms p {
        margin: 0;
        color: #667085 !important;
        font-size: 12px;
        line-height: 1.7;
    }

.tlx-event-read-more {
    margin-top: 10px;
}

    .tlx-event-read-more summary {
        width: fit-content;
        color: var(--brand-color, #356df3);
        font-size: 11px;
        font-weight: 700;
        cursor: pointer;
        list-style: none;
    }

        .tlx-event-read-more summary::-webkit-details-marker {
            display: none;
        }

    .tlx-event-read-more[open] summary {
        margin-bottom: 10px;
    }

    .tlx-event-read-more p + p {
        margin-top: 10px;
    }

.tlx-event-facts {
    margin: 0 0 28px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    border: 1px solid var(--border, #e4e7ec);
    border-radius: 12px;
    background: #f8fafc;
}

.tlx-event-fact span {
    display: block;
    margin-bottom: 5px;
    color: #667085;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tlx-event-fact strong {
    display: block;
    color: var(--brand-secondary-color, #101828);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.tlx-event-location > p {
    margin-bottom: 12px;
}

.tlx-event-map-frame {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border: 1px solid var(--border, #e4e7ec);
    border-radius: 12px;
    background: #f8fafc;
}

    .tlx-event-map-frame iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }

.tlx-event-important {
    padding: 18px 20px;
    border: 1px solid #f2c46d;
    border-radius: 12px;
    background: #fff7e6;
}

    .tlx-event-important h2 {
        display: flex;
        align-items: center;
        gap: 7px;
    }

        .tlx-event-important h2 i {
            color: #d97706;
            font-size: 14px;
        }

    .tlx-event-important ul {
        margin: 0;
        padding-left: 18px;
        color: #667085;
        font-size: 11px;
        line-height: 1.65;
    }

    .tlx-event-important li + li {
        margin-top: 4px;
    }

.tlx-event-faq details {
    border-bottom: 1px solid var(--border, #e4e7ec);
}

.tlx-event-faq summary,
.tlx-event-terms summary {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--brand-secondary-color, #101828);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

    .tlx-event-faq summary::-webkit-details-marker,
    .tlx-event-terms summary::-webkit-details-marker {
        display: none;
    }

    .tlx-event-faq summary::after,
    .tlx-event-terms summary::after {
        content: "+";
        color: #667085;
        font-size: 14px;
        font-weight: 400;
    }

.tlx-event-faq details[open] summary::after,
.tlx-event-terms[open] summary::after {
    content: "-";
}

.tlx-event-faq details p {
    padding: 0 0 12px;
}

.tlx-event-terms {
    overflow: hidden;
    border: 1px solid var(--border, #e4e7ec);
    border-radius: 10px;
}

    .tlx-event-terms summary {
        padding: 12px 14px;
    }

    .tlx-event-terms p {
        padding: 0 14px 14px;
    }

.tlx-ticket-panel {
    min-width: 0;
}

.tlx-ticket-panel-inner {
    position: sticky;
    top: 92px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--border, #e4e7ec);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 16px 40px -16px rgba(16, 24, 40, 0.14);
}

.tlx-ticket-panel h3 {
    margin: 0 0 3px;
    color: var(--brand-secondary-color, #101828);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tlx-ticket-date {
    margin: 0 0 18px !important;
    color: #667085 !important;
    font-size: 10px;
}

.tlx-ticket-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tlx-ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tlx-ticket-copy {
    min-width: 0;
    flex: 1;
}

    .tlx-ticket-copy.is-sold-out {
        opacity: 0.48;
    }

.tlx-ticket-name-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

    .tlx-ticket-name-line h4 {
        margin: 0;
        color: var(--brand-secondary-color, #101828);
        font-size: 12px;
        font-weight: 700;
        line-height: 1.35;
    }

.tlx-ticket-availability {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #16a36a;
    font-size: 8px;
    font-weight: 700;
}

    .tlx-ticket-availability > span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #16a36a;
    }

    .tlx-ticket-availability.selling-fast {
        color: #d97706;
    }

        .tlx-ticket-availability.selling-fast > span {
            background: #d97706;
        }

.tlx-ticket-copy > p {
    margin: 2px 0 0 !important;
    color: #667085 !important;
    font-size: 9px;
    line-height: 1.35;
}

.tlx-ticket-price {
    display: block;
    margin-top: 5px;
    color: var(--brand-color, #356df3);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.tlx-ticket-quantity {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

    .tlx-ticket-quantity button {
        width: 27px;
        height: 27px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 1px solid #d0d5dd;
        border-radius: 50%;
        background: #ffffff;
        color: var(--brand-secondary-color, #101828);
        font-size: 13px;
        line-height: 1;
        cursor: pointer;
    }

        .tlx-ticket-quantity button:hover:not(:disabled) {
            border-color: var(--brand-color, #356df3);
            color: var(--brand-color, #356df3);
        }

        .tlx-ticket-quantity button:disabled {
            opacity: 0.35;
            cursor: default;
        }

    .tlx-ticket-quantity span {
        min-width: 12px;
        color: var(--brand-secondary-color, #101828);
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

.tlx-ticket-sold-out {
    color: #d92d20;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.tlx-ticket-summary {
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid var(--border, #e4e7ec);
}

    .tlx-ticket-summary > div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
    }

        .tlx-ticket-summary > div span {
            color: #667085;
            font-size: 10px;
            font-weight: 600;
        }

        .tlx-ticket-summary > div strong {
            color: var(--brand-color, #356df3);
            font-size: 16px;
            font-weight: 800;
        }

.tlx-ticket-fee-note {
    margin: 4px 0 12px !important;
    color: #98a2b3 !important;
    font-size: 8px !important;
    line-height: 1.4;
}

.tlx-checkout-button {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 10px;
    background: var(--brand-color, #356df3);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--brand-color, #356df3) 24%, transparent);
    cursor: pointer;
}

    .tlx-checkout-button:disabled {
        opacity: 0.45;
        box-shadow: none;
        cursor: default;
    }

.tlx-ticket-secure {
    margin: 10px 0 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #667085 !important;
    font-size: 8px;
    text-align: center;
}

    .tlx-ticket-secure i {
        color: #16a36a;
        font-size: 11px;
    }

.tlx-ticket-empty {
    padding: 20px 8px 8px;
    text-align: center;
}

    .tlx-ticket-empty > i {
        color: var(--brand-color, #356df3);
        font-size: 26px;
    }

    .tlx-ticket-empty h4 {
        margin: 8px 0 4px;
        font-size: 13px;
    }

    .tlx-ticket-empty p {
        margin: 0;
        color: #667085 !important;
        font-size: 10px;
    }

.tlx-event-trust {
    border-top: 1px solid var(--border, #e4e7ec);
    background: #ffffff;
}

.tlx-event-trust-grid {
    min-height: 220px;
    padding-top: 46px;
    padding-bottom: 46px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 32px;
}

.tlx-event-trust-item {
    text-align: center;
}

    .tlx-event-trust-item > i {
        display: block;
        margin-bottom: 9px;
        color: var(--brand-color, #356df3);
        font-size: 21px;
    }

    .tlx-event-trust-item h3 {
        margin: 0 0 5px;
        color: var(--brand-secondary-color, #101828);
        font-size: 12px;
        font-weight: 700;
    }

    .tlx-event-trust-item p {
        max-width: 190px;
        margin: 0 auto;
        color: #667085 !important;
        font-size: 9px;
        line-height: 1.5;
    }

@media (min-width: 768px) {
    .tlx-event-hero {
        height: 520px;
    }
}

@media (max-width: 900px) {
    .tlx-event-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tlx-ticket-panel-inner {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .tlx-event-container {
        width: min(100% - 24px, 1024px);
    }

    .tlx-event-hero {
        height: 420px;
    }

    .tlx-event-hero-inner {
        padding-bottom: 30px;
    }

    .tlx-event-content {
        padding-top: 30px;
    }

    .tlx-event-facts {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tlx-event-fact {
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

        .tlx-event-fact + .tlx-event-fact {
            border-top: 1px solid var(--border, #e4e7ec);
        }

        .tlx-event-fact span {
            margin: 0;
        }

    .tlx-event-trust-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}
/* =====================================================
   CHECKOUT - DESIGNER LAYOUT
   Append this block to the end of designer.css
===================================================== */

.checkout-designer-page {
    min-height: calc(100vh - 80px);
    padding: 34px 16px 90px;
    background: #f5f7fb;
}

.checkout-designer-container {
    width: min(100%, 1024px);
    margin: 0 auto;
}

.checkout-designer-loading,
.checkout-designer-empty {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.checkout-designer-empty {
    width: min(100% - 32px, 560px);
    margin: 0 auto;
    padding: 44px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

    .checkout-designer-empty > i {
        margin-bottom: 14px;
        color: var(--brand-color);
        font-size: 38px;
    }

    .checkout-designer-empty h4 {
        margin: 0 0 6px;
        font-size: 22px;
    }

    .checkout-designer-empty p {
        margin: 0 0 22px;
        color: var(--muted-foreground) !important;
    }

.checkout-designer-progress {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.checkout-designer-progress-left {
    display: flex;
    align-items: center;
    min-width: 0;
}

.checkout-designer-step {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #98a2b3;
    white-space: nowrap;
}

    .checkout-designer-step span {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border: 1px solid #d0d5dd;
        border-radius: 50%;
        background: #fff;
        font-size: 12px;
        font-weight: 700;
    }

    .checkout-designer-step strong {
        font-size: 13px;
        font-weight: 600;
    }

    .checkout-designer-step.active {
        color: var(--brand-secondary-color);
    }

        .checkout-designer-step.active span {
            border-color: var(--brand-color);
            background: var(--brand-color);
            color: #fff;
        }

    .checkout-designer-step.completed span {
        border-color: var(--brand-color);
        background: color-mix(in srgb, var(--brand-color) 10%, #fff);
        color: var(--brand-color);
    }

.checkout-designer-progress-line {
    width: 64px;
    height: 1px;
    margin: 0 14px;
    background: #d0d5dd;
}

.checkout-designer-progress-copy {
    color: #667085;
    font-size: 12px;
    font-weight: 500;
}

.checkout-designer-reservation {
    width: fit-content;
    margin-bottom: 22px;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #d0d5dd;
    border-radius: 999px;
    background: #fff;
    color: #475467;
    font-size: 11px;
    font-weight: 500;
}

.checkout-designer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 26px;
}

.checkout-designer-form-card,
.checkout-designer-summary-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 18px 42px -20px rgba(16, 24, 40, .18);
}

.checkout-designer-form-card {
    padding: 28px;
}

.checkout-designer-summary-card {
    position: sticky;
    top: 96px;
    overflow: hidden;
}

.checkout-designer-card-heading {
    margin-bottom: 22px;
}

    .checkout-designer-card-heading h1 {
        margin: 0 0 5px;
        color: var(--brand-secondary-color);
        font-size: 24px;
        font-weight: 800;
    }

    .checkout-designer-card-heading p {
        margin: 0;
        color: #667085 !important;
        font-size: 13px;
    }

.checkout-designer-payment-heading {
    position: relative;
    padding-top: 30px;
}

.checkout-designer-back {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand-color);
    font-size: 12px;
    font-weight: 600;
}

.checkout-designer-validation {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #fda29b;
    border-radius: 10px;
    background: #fef3f2;
    color: #b42318;
    font-size: 12px;
}

    .checkout-designer-validation:empty {
        display: none;
    }

.checkout-designer-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
}

.checkout-designer-field-full {
    grid-column: 1 / -1;
}

.checkout-designer-field label,
.checkout-designer-payment-box label {
    display: block;
    margin: 0 0 6px;
    color: #475467;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

    .checkout-designer-field label span {
        color: var(--brand-color);
    }

.checkout-designer-field .form-control {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #f8fafc;
    color: var(--brand-secondary-color);
    font-size: 13px;
}

    .checkout-designer-field .form-control:focus {
        border-color: var(--brand-color);
        background: #fff;
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-color) 12%, transparent);
    }

.checkout-designer-primary {
    min-height: 48px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 11px;
    background: var(--brand-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-color) 24%, transparent);
}

    .checkout-designer-primary:hover {
        color: #fff;
        filter: brightness(.96);
        transform: translateY(-1px);
    }

    .checkout-designer-primary:disabled {
        opacity: .55;
        transform: none;
    }

.checkout-designer-continue,
.checkout-designer-pay {
    width: 100%;
    margin-top: 22px;
}

.checkout-designer-payment-box {
    margin-top: 8px;
}

.checkout-designer-stripe {
    min-height: 48px;
    padding: 14px 13px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #f8fafc;
}

.checkout-designer-error {
    margin: 16px 0 0;
    font-size: 12px;
}

.checkout-designer-mpaisa {
    width: 100%;
    min-height: 50px;
    margin-top: 12px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 11px;
    background: var(--brand-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

    .checkout-designer-mpaisa img {
        width: auto;
        height: 30px;
    }

.checkout-designer-secure-copy {
    margin: 15px 0 0;
    color: #667085 !important;
    font-size: 11px;
    text-align: center;
}

    .checkout-designer-secure-copy i {
        color: #12b76a;
    }

.checkout-designer-event-image {
    position: relative;
    height: 150px;
    padding: 18px 22px 38px;
    box-sizing: border-box;
    overflow: hidden;
    background: #101828;
}

    .checkout-designer-event-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center;
    }

    .checkout-designer-event-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.05));
    }

.checkout-designer-event-image-overlay {
    position: absolute;
    right: 18px;
    bottom: 16px;
    left: 18px;
    z-index: 1;
    color: #fff;
}

    .checkout-designer-event-image-overlay strong {
        display: block;
        font-size: 15px;
        line-height: 1.3;
    }

.checkout-designer-event-meta {
    padding: 15px 18px;
    display: grid;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

    .checkout-designer-event-meta > div {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #667085;
        font-size: 11px;
    }

    .checkout-designer-event-meta i {
        color: #98a2b3;
        font-size: 13px;
    }

.checkout-designer-summary-items {
    padding: 4px 18px;
}

.checkout-designer-summary-item {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.checkout-designer-summary-qty {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
    color: #475467;
    font-size: 10px;
    font-weight: 700;
}

.checkout-designer-summary-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .checkout-designer-summary-copy strong {
        overflow: hidden;
        color: var(--brand-secondary-color);
        font-size: 12px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .checkout-designer-summary-copy span {
        color: #667085;
        font-size: 10px;
    }

.checkout-designer-summary-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .checkout-designer-summary-price strong {
        color: var(--brand-secondary-color);
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
    }

    .checkout-designer-summary-price button {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border: 1px solid #eaecf0;
        border-radius: 8px;
        background: #fff;
        color: #98a2b3;
        font-size: 11px;
    }

        .checkout-designer-summary-price button:hover {
            border-color: #fda29b;
            background: #fef3f2;
            color: #d92d20;
        }

.checkout-designer-totals {
    padding: 16px 18px 4px;
}

    .checkout-designer-totals > div {
        margin-bottom: 11px;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        color: #667085;
        font-size: 12px;
    }

    .checkout-designer-totals strong {
        color: var(--brand-secondary-color);
        font-weight: 700;
    }

    .checkout-designer-totals .checkout-designer-total {
        margin: 4px -18px 0;
        padding: 15px 18px 12px;
        border-top: 1px solid var(--border);
        color: var(--brand-secondary-color);
        font-size: 14px;
        font-weight: 800;
    }

        .checkout-designer-totals .checkout-designer-total strong {
            font-size: 18px;
        }

.checkout-designer-summary-secure {
    margin: 0;
    padding: 0 18px 17px;
    color: #039855 !important;
    font-size: 10px;
    text-align: center;
}

@media (max-width: 900px) {
    .checkout-designer-grid {
        grid-template-columns: 1fr;
    }

    .checkout-designer-summary-card {
        position: static;
        order: -1;
    }
}

@media (max-width: 575.98px) {
    .checkout-designer-page {
        padding: 24px 12px 64px;
    }

    .checkout-designer-progress-copy {
        display: none;
    }

    .checkout-designer-progress-line {
        width: 34px;
        margin: 0 9px;
    }

    .checkout-designer-step strong {
        font-size: 11px;
    }

    .checkout-designer-form-card {
        padding: 22px 16px;
    }

    .checkout-designer-fields {
        grid-template-columns: 1fr;
    }

    .checkout-designer-field-full {
        grid-column: auto;
    }
}

/* =====================================================
   GLOBAL CART RESERVATION TIMER
   Added at the end so no existing styles are removed.
===================================================== */
.tls-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex: 0 0 auto;
}

.tls-timer {
    min-height: 34px;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

    .tls-timer i {
        color: #f97316;
        font-size: 14px;
    }

.tls-timer-label {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
}

.tls-timer strong {
    min-width: 36px;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    text-align: right;
}

.tls-timer.is-warning {
    border-color: rgba(248, 113, 113, 0.58);
    background: rgba(185, 28, 28, 0.30);
}

    .tls-timer.is-warning i,
    .tls-timer.is-warning strong {
        color: #fecaca;
    }

@media (max-width: 640px) {
    .tls-actions {
        gap: 9px;
    }

    .tls-timer {
        padding: 7px 9px;
    }

    .tls-timer-label {
        display: none;
    }
}

@media (max-width: 420px) {
    .tls-timer {
        min-height: 32px;
        padding: 6px 8px;
        font-size: 11px;
    }
}

/* =========================================================
   SHOP CART V2 - MOVED FROM ShopCart.razor
   ========================================================= */

.cart-page-v2 {
    min-height: 640px;
    padding: 42px 0 88px;
    background: #ffffff;
}

.cart-container-v2 {
    width: min(100% - 32px, 1024px);
    margin: 0 auto;
}

.cart-loading-v2 {
    min-height: 420px;
    display: grid;
    place-items: center;
}

.cart-header-v2 {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

    .cart-header-v2 h1 {
        margin: 14px 0 6px;
        color: var(--brand-secondary-color, #101828);
        font-size: 34px;
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

    .cart-header-v2 p {
        margin: 0;
        color: #667085 !important;
        font-size: 14px;
    }

.cart-back-v2,
.cart-link-v2 {
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: #667085;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    transition: color 150ms ease;
}

    .cart-back-v2:hover,
    .cart-link-v2:hover {
        color: var(--brand-color, #356df3);
    }

.cart-count-v2 {
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #e4e7ec;
    border-radius: 999px;
    background: #ffffff;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.cart-layout-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 28px;
}

.cart-tickets-card-v2,
.cart-summary-card-v2,
.cart-empty-v2 {
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 18px 44px -28px rgba(16, 24, 40, 0.25);
}

.cart-tickets-card-v2 {
    overflow: hidden;
}

.cart-tickets-card-header-v2 {
    padding: 22px 24px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #eaecf0;
}

.cart-kicker-v2 {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-color, #356df3);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.cart-tickets-card-header-v2 h2,
.cart-summary-card-v2 h2 {
    margin: 0;
    color: var(--brand-secondary-color, #101828);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.cart-reservation-note-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

    .cart-reservation-note-v2 i {
        color: #f79009;
    }

.cart-ticket-list-v2 {
    padding: 0 24px;
}

.cart-ticket-row-v2 {
    padding: 22px 0;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 20px;
    border-bottom: 1px solid #eaecf0;
}

    .cart-ticket-row-v2:last-child {
        border-bottom: 0;
    }

.cart-ticket-image-v2 {
    width: 130px;
    height: 96px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 11px;
    background: #f2f4f7;
}

    .cart-ticket-image-v2 img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .cart-ticket-image-v2 img.cart-ticket-photo-v2 {
        object-fit: cover;
    }

    .cart-ticket-image-v2.is-logo {
        background: var(--brand-secondary-color, #101828);
    }

    .cart-ticket-image-v2 img.cart-ticket-logo-v2 {
        padding: 10px 12px;
        object-fit: contain;
        background: transparent;
    }

    .cart-ticket-image-v2 > i {
        color: #98a2b3;
        font-size: 28px;
    }

.cart-ticket-body-v2 {
    min-width: 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.cart-ticket-copy-v2 {
    min-width: 0;
    flex: 1;
}

    .cart-ticket-copy-v2 h3 {
        margin: 0 0 5px;
        color: var(--brand-secondary-color, #101828);
        font-size: 16px;
        font-weight: 800;
        line-height: 1.3;
    }

.cart-ticket-date-v2 {
    margin: 0 0 15px;
    color: #667085 !important;
    font-size: 11px;
}

    .cart-ticket-date-v2 i {
        margin-right: 4px;
    }

.cart-ticket-facts-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

    .cart-ticket-facts-v2 div {
        min-width: 0;
    }

    .cart-ticket-facts-v2 span {
        display: block;
        margin-bottom: 3px;
        color: #98a2b3;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .cart-ticket-facts-v2 strong {
        display: block;
        overflow: hidden;
        color: #344054;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.35;
        text-overflow: ellipsis;
    }

.cart-ticket-price-v2 {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

    .cart-ticket-price-v2 > strong {
        color: var(--brand-secondary-color, #101828);
        font-size: 17px;
        font-weight: 800;
        font-variant-numeric: tabular-nums;
    }

    .cart-ticket-price-v2 > small {
        color: #98a2b3;
        font-size: 9px;
        line-height: 1.45;
    }

.cart-remove-v2 {
    margin-top: auto;
    padding: 6px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: #d92d20;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

    .cart-remove-v2:hover {
        color: #b42318;
    }

    .cart-remove-v2:disabled,
    .cart-link-v2:disabled,
    .cart-primary-v2:disabled {
        opacity: 0.5;
        pointer-events: none;
    }

.cart-add-more-v2 {
    padding: 17px 24px 20px;
    border-top: 1px solid #eaecf0;
    background: #fcfcfd;
}

.cart-summary-card-v2 {
    position: sticky;
    top: 96px;
    padding: 24px;
}

    .cart-summary-card-v2 h2 {
        margin-bottom: 24px;
    }

.cart-summary-row-v2,
.cart-summary-total-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cart-summary-row-v2 {
    margin-bottom: 12px;
    color: #667085;
    font-size: 13px;
}

    .cart-summary-row-v2 strong {
        color: #344054;
        font-size: 13px;
        font-weight: 700;
        font-variant-numeric: tabular-nums;
    }

.cart-summary-total-v2 {
    margin-top: 19px;
    padding-top: 19px;
    border-top: 1px solid #e4e7ec;
    color: var(--brand-secondary-color, #101828);
    font-size: 15px;
    font-weight: 800;
}

    .cart-summary-total-v2 strong {
        color: var(--brand-color, #356df3);
        font-size: 23px;
        font-weight: 800;
        font-variant-numeric: tabular-nums;
    }

.cart-primary-v2 {
    min-height: 47px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--brand-color, #356df3);
    border-radius: 11px;
    background: var(--brand-color, #356df3);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-color, #356df3) 24%, transparent);
    transition: filter 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

    .cart-primary-v2:hover {
        color: #ffffff;
        filter: brightness(0.95);
        transform: translateY(-1px);
        box-shadow: 0 14px 28px color-mix(in srgb, var(--brand-color, #356df3) 30%, transparent);
    }

.cart-checkout-v2 {
    width: 100%;
    margin-top: 24px;
}

.cart-secure-v2 {
    margin: 13px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #667085 !important;
    font-size: 10px;
    text-align: center;
}

    .cart-secure-v2 i,
    .cart-summary-benefit-v2 i {
        color: #16a36a;
    }

.cart-summary-divider-v2 {
    margin: 20px 0 16px;
    border-top: 1px solid #eaecf0;
}

.cart-summary-benefit-v2 {
    margin-top: 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
}

.cart-empty-v2 {
    max-width: 520px;
    margin: 48px auto 0;
    padding: 58px 34px;
    text-align: center;
}

.cart-empty-icon-v2 {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-color, #356df3) 9%, #ffffff);
    color: var(--brand-color, #356df3);
    font-size: 26px;
}

.cart-empty-v2 h1 {
    margin: 0 0 8px;
    color: var(--brand-secondary-color, #101828);
    font-size: 26px;
    font-weight: 800;
}

.cart-empty-v2 p {
    margin: 0 0 24px;
    color: #667085 !important;
    font-size: 14px;
}

@media (max-width: 860px) {
    .cart-layout-v2 {
        grid-template-columns: 1fr;
    }

    .cart-summary-card-v2 {
        position: static;
    }
}

@media (max-width: 680px) {
    .cart-page-v2 {
        padding-top: 28px;
    }

    .cart-header-v2 {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-tickets-card-header-v2 {
        flex-direction: column;
    }

    .cart-ticket-row-v2 {
        grid-template-columns: 1fr;
    }

    .cart-ticket-image-v2 {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .cart-ticket-body-v2 {
        flex-direction: column;
    }

    .cart-ticket-facts-v2 {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .cart-ticket-price-v2 {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .cart-remove-v2 {
        margin-top: 12px;
    }
}

/* =====================================================
   SHOP EVENTS - CUSTOMER THEME
   Values are supplied by ShopEvents.razor.
===================================================== */

.events-designer-page {
    --brand-color: var(--primary-color, #F97316);
    --brand-secondary-color: var(--secondary-color, #111827);
    --background: var(--page-background-color, #FFFFFF);
    --foreground: var(--page-text-color, #111827);
    --muted-foreground: color-mix(in srgb, var(--page-text-color, #111827) 62%, var(--page-background-color, #FFFFFF) 38%);
    min-height: 100%;
    background: var(--page-background-color, #FFFFFF);
    color: var(--page-text-color, #111827);
}

    .events-designer-page .events-page-empty,
    .events-designer-page .events-designer-section,
    .events-designer-page .events-designer-trust {
        background: var(--page-background-color, #FFFFFF);
    }

    .events-designer-page .events-designer-hero {
        background-color: var(--hero-background-color, #111827);
    }

    .events-designer-page .events-designer-heading h2,
    .events-designer-page .events-designer-card,
    .events-designer-page .events-designer-card-content h3,
    .events-designer-page .events-designer-trust-item h3,
    .events-designer-page .events-page-empty h1 {
        color: var(--secondary-color, #111827);
    }

    .events-designer-page .events-page-empty p,
    .events-designer-page .events-designer-meta,
    .events-designer-page .events-designer-description,
    .events-designer-page .events-designer-price span,
    .events-designer-page .events-designer-trust-item p {
        color: var(--muted-foreground) !important;
    }

    .events-designer-page .tls-btn,
    .events-designer-page .events-designer-price strong,
    .events-designer-page .events-designer-link,
    .events-designer-page .events-designer-trust-item i {
        border-color: var(--primary-color, #F97316);
        color: var(--primary-color, #F97316);
    }

    .events-designer-page .tls-btn {
        background: var(--primary-color, #F97316);
        color: #FFFFFF !important;
    }

    .events-designer-page .events-designer-card:hover {
        border-color: color-mix(in srgb, var(--primary-color, #F97316) 30%, var(--border));
    }

/* =====================================================
   SHOP EVENT MAP - CUSTOMER + EVENT THEME
   Values are supplied by ShopEventMap.razor.
===================================================== */

.tlx-event-page {
    --brand-color: var(--primary-color, #F97316);
    --brand-secondary-color: var(--secondary-color, #111827);
    --background: var(--page-background-color, #FFFFFF);
    --foreground: var(--page-text-color, #111827);
    --muted-foreground: color-mix(in srgb, var(--secondary-color, #111827) 64%, var(--page-background-color, #FFFFFF) 36%);
    width: 100%;
    min-height: 100%;
    background: var(--page-background-color, #FFFFFF);
    color: var(--page-text-color, #111827);
}

    .tlx-event-page .tlx-event-hero {
        background-color: var(--hero-background-color, #111827);
    }

    .tlx-event-page .tlx-event-hero-title {
        color: var(--event-hero-text-color, #FFF7ED) !important;
    }

    .tlx-event-page .tlx-event-meta,
    .tlx-event-page .tlx-event-hero-subtitle {
        color: var(--event-hero-text-color, #FFF7ED) !important;
        opacity: 0.84;
    }

    .tlx-event-page .tlx-event-content,
    .tlx-event-page .tlx-event-trust {
        background: var(--page-background-color, #FFFFFF);
    }

    .tlx-event-page .tlx-event-overview h2,
    .tlx-event-page .tlx-event-location h2,
    .tlx-event-page .tlx-event-important h2,
    .tlx-event-page .tlx-event-faq h2,
    .tlx-event-page .tlx-event-fact strong,
    .tlx-event-page .tlx-ticket-panel h3,
    .tlx-event-page .tlx-ticket-name-line h4,
    .tlx-event-page .tlx-ticket-quantity span,
    .tlx-event-page .tlx-event-faq summary,
    .tlx-event-page .tlx-event-terms summary,
    .tlx-event-page .tlx-event-trust-item h3 {
        color: var(--secondary-color, #111827);
    }

    .tlx-event-page .tlx-event-overview > p,
    .tlx-event-page .tlx-event-location > p,
    .tlx-event-page .tlx-event-read-more p,
    .tlx-event-page .tlx-event-faq details p,
    .tlx-event-page .tlx-event-terms p,
    .tlx-event-page .tlx-ticket-date,
    .tlx-event-page .tlx-ticket-copy > p,
    .tlx-event-page .tlx-ticket-summary > div span,
    .tlx-event-page .tlx-ticket-fee-note,
    .tlx-event-page .tlx-ticket-secure,
    .tlx-event-page .tlx-event-trust-item p {
        color: var(--muted-foreground) !important;
    }

    .tlx-event-page .tlx-event-read-more summary,
    .tlx-event-page .tlx-ticket-price,
    .tlx-event-page .tlx-ticket-summary > div strong,
    .tlx-event-page .tlx-event-trust-item i {
        color: var(--primary-color, #F97316);
    }

    .tlx-event-page .tlx-checkout-button {
        background: var(--primary-color, #F97316);
        box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-color, #F97316) 24%, transparent);
    }

    .tlx-event-page .tlx-ticket-quantity button:hover:not(:disabled) {
        border-color: var(--primary-color, #F97316);
        color: var(--primary-color, #F97316);
    }

    .tlx-event-page .tlx-event-facts,
    .tlx-event-page .tlx-event-map-frame,
    .tlx-event-page .tlx-ticket-panel-inner,
    .tlx-event-page .tlx-event-terms {
        border-color: color-mix(in srgb, var(--secondary-color, #111827) 14%, transparent);
    }

    .tlx-event-page .tlx-event-facts {
        background: color-mix(in srgb, var(--page-background-color, #FFFFFF) 94%, var(--secondary-color, #111827) 6%);
    }
