:root {
    --bg: #e6eaf1;
    --primary: #fc4a03;
    --primary-dark: #d63b00;
    --text: #000000;
    --muted: #5d6470;
    --white: #ffffff;
    --border: #cfd5df;
    --soft: #f5f7fb;
    --shadow: 0 18px 50px rgba(0,0,0,.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.lt-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.lt-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lt-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.lt-logo {
    display: flex;
    align-items: center;
    font-weight: 1000;
    letter-spacing: -0.06em;
    font-size: 1.65rem;
    margin-right: auto;
}

.lt-logo-live {
    background: var(--primary);
    color: var(--white);
    padding: 8px 10px;
    line-height: 1;
}

.lt-logo-tickets {
    color: var(--text);
    padding-left: 4px;
}

.lt-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 800;
    color: #222;
}

.lt-menu a:hover {
    color: var(--primary);
}

.lt-langs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lt-langs a,
.lt-mobile-langs a {
    font-size: .78rem;
    font-weight: 900;
    padding: 8px 10px;
    border-radius: 999px;
}

.lt-langs a.active {
    background: var(--primary);
    color: var(--white);
}

.lt-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 10px;
    font-size: 1.4rem;
    cursor: pointer;
}

.lt-mobile-langs {
    display: none;
}

.lt-hero-selling {
    padding: 52px 0 42px;
    background:
        radial-gradient(circle at right top, rgba(252,74,3,.18), transparent 35%),
        var(--bg);
    border-bottom: 1px solid var(--border);
}

.lt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 42px;
    align-items: center;
}

.lt-kicker {
    display: inline-flex;
    background: var(--text);
    color: var(--white);
    padding: 8px 12px;
    font-size: .78rem;
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 18px;
}

.lt-hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 5vw, 5.1rem);
    line-height: .92;
    letter-spacing: -.07em;
    max-width: 780px;
}

.lt-hero-copy p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 620px;
}

.lt-search {
    display: flex;
    width: min(640px, 100%);
    background: var(--white);
    border: 2px solid var(--text);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 0 rgba(0,0,0,.08);
}

.lt-search input {
    flex: 1;
    border: 0;
    padding: 17px 18px;
    font-size: 1rem;
    outline: none;
    background: var(--white);
}

.lt-search button {
    border: 0;
    background: var(--primary);
    color: var(--white);
    padding: 0 24px;
    font-weight: 1000;
    cursor: pointer;
}

.lt-featured-box {
    background: var(--white);
    border: 2px solid var(--text);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 12px 12px 0 rgba(0,0,0,.12);
}

.lt-featured-img {
    position: relative;
    aspect-ratio: 16/9;
    background: #ddd;
}

.lt-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-featured-img span,
.lt-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 7px 10px;
    font-size: .74rem;
    font-weight: 1000;
    border-radius: 999px;
    text-transform: uppercase;
}

.lt-featured-content {
    padding: 22px;
}

.lt-featured-content h2 {
    margin: 0 0 8px;
    font-size: 1.7rem;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.lt-meta {
    color: var(--muted);
    margin: 0 0 12px;
    font-size: .92rem;
}

.lt-price-line strong {
    display: inline-flex;
    font-size: 1.3rem;
    margin: 4px 0 18px;
}

.lt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 1000;
    border: 2px solid var(--text);
    transition: .15s ease;
}

.lt-btn:hover {
    transform: translateY(-2px);
}

.lt-btn-primary {
    background: var(--primary);
    color: var(--white);
    /*box-shadow: 5px 5px 0 var(--text);*/
}

.lt-btn-light {
    background: var(--white);
    color: var(--text);
}

.lt-section {
    padding: 48px 0;
}

.lt-section-soft {
    background: var(--soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lt-section-alert {
    background: #000;
    color: #fff;
}

.lt-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.lt-section-head h2,
.lt-how h2,
.lt-faq h2,
.lt-organizers h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.lt-section-head a {
    font-weight: 1000;
    color: var(--primary);
}

.lt-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.lt-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 14px;
    scroll-snap-type: x mandatory;
}

.lt-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transition: .15s ease;
}

.lt-row .lt-card {
    flex: 0 0 286px;
    scroll-snap-align: start;
}

.lt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.lt-card-img {
    position: relative;
    aspect-ratio: 16/9;
    background: #d9dde5;
}

.lt-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-card-body {
    padding: 16px;
}

.lt-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.lt-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.lt-card-bottom strong {
    color: var(--primary);
}

.lt-card-bottom span {
    font-weight: 1000;
    font-size: .86rem;
}

.lt-empty {
    color: var(--muted);
}

.lt-how {
    background: var(--white);
    padding: 54px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lt-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.lt-how-grid div {
    padding: 24px;
    border: 2px solid var(--text);
    border-radius: 20px;
    background: var(--bg);
    box-shadow: 7px 7px 0 rgba(0,0,0,.12);
}

.lt-how-grid strong {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 14px;
}

.lt-how-grid h3 {
    margin: 0 0 8px;
}

.lt-how-grid p {
    margin: 0;
    color: var(--muted);
}

.lt-grid-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lt-news {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.lt-news img {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
}

.lt-news div {
    padding: 16px;
}

.lt-news span {
    color: var(--primary);
    font-weight: 1000;
    font-size: .78rem;
}

.lt-news h3 {
    margin: 8px 0;
}

.lt-news p {
    color: var(--muted);
}

.lt-organizers {
    padding: 56px 0;
}

.lt-organizers-box {
    background: #000;
    color: #fff;
    border-radius: 26px;
    padding: clamp(26px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.lt-organizers p {
    color: #d5d5d5;
    max-width: 700px;
}

.lt-faq {
    background: var(--white);
    padding: 54px 0;
    border-top: 1px solid var(--border);
}

.lt-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.lt-faq article {
    background: var(--soft);
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.lt-faq h3 {
    margin: 0 0 8px;
}

.lt-faq p {
    margin: 0;
    color: var(--muted);
}

.lt-footer {
    margin-top: 70px;
    background: #000;
    color: #fff;
    padding: 54px 0 30px;
}

.lt-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr .8fr;
    gap: 42px;
    align-items: start;
}

.lt-footer-brand img {
    height: 58px;
    width: auto;
    display: block;
    margin-bottom: 18px;
}

.lt-footer-brand p {
    margin: 0;
    max-width: 420px;
    color: rgba(255,255,255,.68);
    font-size: .98rem;
    line-height: 1.55;
}

.lt-footer-col h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.lt-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lt-payment-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 8px 12px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;

    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);

    font-size: .78rem;
    font-weight: 900;
}

.lt-footer-links {
    display: grid;
    gap: 10px;
}

.lt-footer-links a {
    color: rgba(255,255,255,.68);
    font-weight: 700;
}

.lt-footer-links a:hover {
    color: var(--primary);
}

.lt-footer-bottom {
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);

    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;

    color: rgba(255,255,255,.52);
    font-size: .9rem;
}

@media (max-width: 860px) {
    .lt-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lt-footer-brand img {
        height: 48px;
    }

    .lt-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width:760px){

    .lt-footer-inner,
    .lt-footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}

@media (max-width: 760px) {

    .lt-footer {
        padding: 24px 0;
    }

    .lt-footer-links {
        flex-wrap: wrap;
        gap: 14px;
    }

}

.lt-footer p {
    color: #ccc;
}

@media (max-width: 980px) {
    .lt-hero-grid {
        grid-template-columns: 1fr;
    }

    .lt-grid-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lt-how-grid,
    .lt-grid-news,
    .lt-faq-grid {
        grid-template-columns: 1fr;
    }

    .lt-organizers-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .lt-nav {
        min-height: 66px;
    }

    .lt-menu-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .lt-menu {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 66px;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 9999;
    }

    .lt-menu.open {
        display: flex;
    }

    .lt-menu a {
        padding: 17px 22px;
        border-bottom: 1px solid var(--border);
    }

    .lt-langs {
        display: none;
    }

    .lt-mobile-langs {
        display: flex;
        gap: 10px;
        padding: 16px 22px;
    }

    .lt-mobile-langs a {
        border: 1px solid var(--border);
    }

    .lt-hero-selling {
        padding: 34px 0;
    }

    .lt-search {
        flex-direction: column;
    }

    .lt-search button {
        min-height: 48px;
    }

    .lt-grid-cards {
        grid-template-columns: 1fr;
    }

    .lt-row .lt-card {
        flex-basis: 250px;
    }
}
.lt-featured-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ddd;
}

.lt-featured-img img,
.lt-featured-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}
@media (max-width: 760px) {
    .lt-hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lt-featured-box {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .lt-featured-img {
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: 240px;
    }

    .lt-featured-img img,
    .lt-featured-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .lt-hero-copy h1 {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }
}
.lt-logo-img {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.lt-logo-img img {
    display: block;
    height: 46px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 760px) {
    .lt-logo-img img {
        height: 38px;
    }
}
.lt-logo-img {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.lt-logo-img img {
    height: 46px;
    width: auto;
    display: block;
}

.event-page {
    background: var(--bg);
}

.event-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0;
}
.event-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: var(--event-bg);
    background-size: cover;
    background-position: center;

    filter: blur(1px);
    transform: scale(1.08);

    opacity: 1;

    pointer-events: none;
}

.event-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(230,234,241,.82) 0%,
            rgba(230,234,241,.68) 45%,
            rgba(230,234,241,.42) 100%
        );

    pointer-events: none;
}

.event-hero > * {
    position: relative;
    z-index: 2;
}

.event-hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 42px;
    align-items: center;
}

.event-hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: .9;
    letter-spacing: -.075em;
}

.event-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.event-facts div {
    background: var(--white);
    border: 2px solid var(--text);
    border-radius: 16px;
    padding: 16px;
}

.event-facts small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 5px;
}

.event-facts strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}

.event-media-card {
    background: var(--white);
    border: 2px solid var(--text);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 12px 12px 0 rgba(0,0,0,.12);
}

.event-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ddd;
}

.event-media img,
.event-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-buy-strip {
    position: sticky;
    top: 78px;
    z-index: 800;
    background: #000;
    color: #fff;
    padding: 12px 0;
}

.event-buy-strip-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.event-buy-strip-inner strong {
    margin-right: auto;
}

.event-buy-strip-inner span {
    color: var(--primary);
    font-weight: 1000;
}

.event-content {
    padding: 54px 0;
}

.event-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 34px;
    align-items: start;
}

.event-main-text {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: clamp(24px, 4vw, 42px);
}

.event-main-text h2 {
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: -.05em;
}

.event-main-text p {
    color: var(--muted);
    font-size: 1.05rem;
}

.event-checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}

.event-checklist li {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 15px;
    font-weight: 800;
}

.event-checklist li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 1000;
    margin-right: 8px;
}

.event-side-card {
    position: sticky;
    top: 150px;
    background: var(--white);
    border: 2px solid var(--text);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 8px 8px 0 rgba(0,0,0,.1);
}

.event-side-card h3 {
    margin: 0 0 16px;
    font-size: 1.25rem;
}

.event-side-card a {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    font-weight: 1000;
    color: var(--primary);
}

@media (max-width: 980px) {
    .event-hero-grid,
    .event-content-grid {
        grid-template-columns: 1fr;
    }

    .event-facts {
        grid-template-columns: 1fr;
    }

    .event-side-card {
        position: static;
    }

    .event-buy-strip {
        top: 66px;
    }
}

@media (max-width: 760px) {
    .lt-logo-img img {
        height: 38px;
    }

    .event-hero {
        padding: 34px 0;
    }

    .event-media {
        max-height: 240px;
    }

    .event-buy-strip-inner {
        flex-wrap: wrap;
    }

    .event-buy-strip-inner .lt-btn {
        width: 100%;
    }
}
.agenda-page {
    background: var(--bg);
}

.agenda-hero {
    padding: 52px 0 38px;
    background:
        radial-gradient(circle at right top, rgba(252,74,3,.18), transparent 34%),
        var(--bg);
    border-bottom: 1px solid var(--border);
}

.agenda-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .9;
    letter-spacing: -.075em;
}

.agenda-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 1.16rem;
    max-width: 720px;
}

.agenda-section {
    padding: 46px 0;
}

.agenda-vod-section {
    background: var(--soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.agenda-live-section {
    background: #000;
    color: #fff;
}

.agenda-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.agenda-section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.agenda-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transition: .16s ease;
}

.agenda-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.agenda-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #d9dde5;
}

.agenda-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease;
}

.agenda-card:hover .agenda-card-media img {
    transform: scale(1.04);
}

.agenda-card-media span {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.agenda-card-body {
    padding: 18px;
}

.agenda-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.agenda-meta {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.agenda-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.agenda-card-footer strong {
    color: var(--primary);
    font-size: 1.05rem;
}

.agenda-card-footer div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.agenda-link {
    font-weight: 900;
    color: var(--text);
}

.agenda-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--text);
    border-radius: 12px;
    padding: 9px 12px;
    font-weight: 1000;
    font-size: .88rem;
}

@media (max-width: 980px) {
    .agenda-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .agenda-hero {
        padding: 36px 0 30px;
    }

    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .agenda-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .agenda-card-footer div {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .agenda-buy,
    .agenda-link {
        width: 100%;
        text-align: center;
    }
}

.checkout-page {
    background: var(--bg);
}

.checkout-wrap {
    padding: 46px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 34px;
    align-items: start;
}

.checkout-summary {
    background: var(--white);
    border: 2px solid var(--text);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 10px 10px 0 rgba(0,0,0,.1);
    position: sticky;
    top: 108px;
}

.checkout-summary img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.checkout-summary-body {
    padding: 22px;
}

.checkout-summary h1 {
    margin: 12px 0 10px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.055em;
}

.checkout-price {
    display: block;
    color: var(--primary);
    font-size: 1.7rem;
    margin-top: 14px;
}

.checkout-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(22px, 4vw, 38px);
}

.checkout-box h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: .95;
    letter-spacing: -.07em;
}

.checkout-box > p {
    color: var(--muted);
    margin: 0 0 24px;
}

.checkout-errors {
    background: #fff0ec;
    border: 1px solid rgba(252,74,3,.35);
    color: #9b2400;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 22px;
    font-weight: 800;
}

.checkout-errors p {
    margin: 4px 0;
}

.checkout-block {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: 24px;
}

.checkout-block h3 {
    margin: 0 0 14px;
    font-size: 1.25rem;
}

.checkout-ticket-options,
.checkout-payment-options {
    display: grid;
    gap: 12px;
}

.checkout-ticket-options label,
.checkout-payment-options label {
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    background: var(--soft);
}

.checkout-ticket-options label:has(input:checked),
.checkout-payment-options label:has(input:checked) {
    border-color: var(--primary);
    background: #fff5f0;
}

.checkout-ticket-options span {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 14px;
}

.checkout-ticket-options em {
    color: var(--primary);
    font-style: normal;
    font-weight: 1000;
}

.checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.checkout-fields label {
    display: grid;
    gap: 7px;
    font-weight: 900;
}

.checkout-fields input {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 1rem;
    background: #fff;
}

.checkout-fields input:focus {
    border-color: var(--primary);
    outline: none;
}

.checkout-fields small {
    color: var(--muted);
    font-weight: 500;
}

.checkout-submit {
    width: 100%;
    margin-top: 28px;
    border: 2px solid var(--text);
    border-radius: 16px;
    background: var(--primary);
    color: #fff;
    font-weight: 1000;
    font-size: 1.05rem;
    padding: 17px 20px;
    cursor: pointer;
}

.checkout-submit:hover {
    filter: brightness(.96);
}

@media (max-width: 960px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}
@media (max-width: 640px) {

    .checkout-summary img,
    .checkout-summary .lt-kicker,
    .checkout-summary .lt-meta,
    .checkout-price {
        display: none;
    }

    .checkout-summary {
        position: static;
        box-shadow: none;
        border: 2px solid var(--text);
        border-radius: 18px;
        background: var(--white);
        margin-bottom: 0px;
        margin-top:0px;
    }

    .checkout-summary-body {
        padding: 16px 18px;
    }

    .checkout-summary h1 {
        font-size: 1.65rem;
        line-height: 1;
        margin: 0;
        letter-spacing: -.05em;
    }
}

.lt-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,.62);
}

.lt-modal.is-open {
    display: flex;
}

.lt-modal-card {
    width: min(460px, 100%);
    background: #fff;
    border: 2px solid var(--text);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 14px 14px 0 rgba(0,0,0,.22);
}

.lt-modal-card h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.lt-modal-card p {
    color: var(--muted);
    font-weight: 700;
    margin: 0 0 20px;
}

.lt-modal-field {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.lt-modal-field input {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    font-size: 1rem;
}

.lt-modal-field input:focus {
    border-color: var(--primary);
    outline: none;
}

.lt-modal-submit {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--text);
    border-radius: 14px;
    font-weight: 1000;
    cursor: pointer;
    text-align: center;
}

.lt-modal-reset {
    display: block;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 900;
    text-align: center;
}

@media (max-width: 640px) {

    .lt-modal {
        padding: 10px;
        align-items: flex-start;
    }

    .lt-modal-card {
        margin-top: 10px;
        border-radius: 22px;
        padding: 24px 20px;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
    }

}
.lt-modal-card {
    position: relative;
}

.lt-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 999px;

    background: #f3f4f6;
    color: #000;

    font-size: 24px;
    font-weight: 900;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
}
.checkout-quantity {
    margin-top: 16px;
    background: var(--soft);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.checkout-quantity label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.checkout-quantity select {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 13px 14px;
    background: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.checkout-quantity small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}