/* ============================================================
   Inspera Bilet — kamuya açık bilet sitesi
   ============================================================ */

:root {
    --ink: #101216;
    --ink-soft: #3c4250;
    --muted: #8a8f9c;
    --paper: #f7f6f3;
    --card: #ffffff;
    --line: #e7e5e0;
    --accent: #0d5eff;
    --accent-dark: #0a4ad9;
    --footer-bg: #0e1014;
    --header-h: 76px;
    --radius: 14px;
    --font-display: 'Archivo', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.1;
    margin: 0;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin: 0 0 0.5rem;
}

/* ---------- Butonlar ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.95rem 1.9rem;
    border-radius: 999px;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-dark); }

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.btn-dark {
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
}
.btn-dark:hover { background: #2a2e38; }

.btn-sold-out,
.event-card-cta--sold-out {
    opacity: 0.55;
    pointer-events: none;
    cursor: not-allowed;
}

.event-card-cta--sold-out {
    color: var(--muted);
    font-weight: 700;
}

/* ---------- Header ---------- */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid {
    background: rgba(14, 16, 20, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Hero'suz (açık zeminli) sayfalarda header beyaz, logo mavi */
body:not(.has-hero) .site-header {
    background: #ffffff;
    box-shadow: 0 1px 0 var(--line);
}

body:not(.has-hero) .site-header .brand-logo-light { display: none; }
body:not(.has-hero) .site-header .brand-logo-dark { display: block; }
body:not(.has-hero) .main-nav a { color: var(--ink-soft); }
body:not(.has-hero) .main-nav a:hover { color: var(--ink); }
body:not(.has-hero) .main-nav .nav-cta,
body:not(.has-hero) .main-nav .nav-cta:hover { color: #fff; }
body:not(.has-hero) .nav-toggle {
    background: rgba(16, 18, 22, 0.05);
    border-color: var(--line);
}
body:not(.has-hero) .nav-toggle span { background: var(--ink); }

.header-inner {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 30px;
    width: auto;
}

/* Mavi logo yalnızca açık zeminli header'da gösterilir */
.brand-logo-dark { display: none; }

/* Footer'da logo orijinal boyutunda (200x50) kullanılır */
.brand-footer .brand-logo {
    height: auto;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.18s ease;
}

.main-nav a:hover { color: #fff; }

.main-nav .nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
}
.main-nav .nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(14, 16, 20, 0.97);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.mobile-menu a {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-menu .mobile-cta {
    background: var(--accent);
    padding: 0.8rem 2.2rem;
    border-radius: 999px;
    font-size: 1rem;
}

/* ---------- Hero / Ken Burns slider ---------- */

.hero {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: var(--footer-bg);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease, visibility 0s linear 1.1s;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: opacity 1.1s ease;
    z-index: 1;
}

/* Masaüstü: 1920×1080 — tam oran, kesme yok */
.hero-img-desktop {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    vertical-align: top;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg--desktop { display: none; }
.hero-bg--mobile { display: none; }

.hero-poster-mobile { display: none; }

.hero-slide-tap { display: none; }

.hero-desktop-ui {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-desktop-ui a,
.hero-desktop-ui button {
    pointer-events: auto;
}

@media (min-width: 769px) {
    .hero-dots {
        bottom: 1.25rem;
    }

    .hero-content {
        padding-bottom: clamp(2.5rem, 5vw, 4rem);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 0;
        overflow: hidden;
        background: var(--paper);
    }

    .hero-bg--desktop,
    .hero-bg--mobile { display: none; }

    .hero-img-desktop { display: none; }

    .hero-poster-mobile {
        display: block;
        width: 100%;
        height: auto;
        vertical-align: top;
    }

    /* Aktif slayt yüksekliği belirler; diğerleri üst üste bindirilir */
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .hero-slide.is-active {
        position: relative;
    }

    .hero-desktop-ui { display: none !important; }

    .hero-slide-tap {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 3;
    }

    .hero-dots { display: none !important; }

    .hero-scroll-hint { display: none; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 9, 12, 0.6) 0%, rgba(8, 9, 12, 0.08) 45%, rgba(8, 9, 12, 0.15) 100%),
        linear-gradient(260deg, rgba(8, 9, 12, 0.3) 0%, transparent 55%);
}

.hero-content {
    position: absolute;
    inset: auto 0 0 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem clamp(4.5rem, 10vh, 7.5rem);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #fff;
    background: var(--accent);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    margin-bottom: 1.1rem;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    max-width: 14ch;
}

.hero-tagline {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 52ch;
    margin: 1rem 0 0;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.4rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.2rem 0 1.8rem;
}

.hero-meta i { color: var(--accent); margin-right: 0.35rem; }

.hero-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    z-index: 5;
    display: flex;
    gap: 0.55rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.is-active {
    background: var(--accent);
    transform: scale(1.25);
}

.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    text-decoration: none;
    line-height: 1;
    pointer-events: auto;
    animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 7px); }
}

/* ---------- Etkinlik carousel ---------- */

.events-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.carousel-arrows { display: flex; gap: 0.6rem; }

.arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--card);
    color: var(--ink);
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.arrow-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.arrow-btn:disabled { opacity: 0.35; pointer-events: none; }

.events-track {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0.25rem;
    padding: 0.25rem 0.25rem 1.25rem;
    scrollbar-width: none;
}

.events-track::-webkit-scrollbar { display: none; }

.event-card {
    flex: 0 0 calc((100% - 4.2rem) / 4);
    min-width: 250px;
    scroll-snap-align: start;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(16, 18, 22, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(16, 18, 22, 0.13);
}

.event-card.is-current {
    box-shadow: 0 0 0 2px var(--accent);
}

.page-detail .events-section {
    border-top: 1px solid var(--line);
    margin-top: 0;
}

.event-card-media {
    position: relative;
    aspect-ratio: 546 / 460;
    overflow: hidden;
}

.event-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-media img { transform: scale(1.06); }

.event-card-tag {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #fff;
    background: var(--accent);
    padding: 0.32rem 0.7rem;
    border-radius: 4px;
}

.event-card-body {
    padding: 1.15rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.event-card-body h3 {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 0;
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.event-card-venue {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.event-card-meta i,
.event-card-venue i { color: var(--accent); margin-right: 0.25rem; }

.event-card-cta {
    margin-top: auto;
    padding-top: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.event-card:hover .event-card-cta i { transform: translateX(4px); }
.event-card-cta i { transition: transform 0.2s ease; }

.events-empty { color: var(--muted); }

/* ---------- Inspera People WhatsApp CTA ---------- */

.wa-cta-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem clamp(3rem, 6vw, 4.5rem);
}

.wa-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 1.1fr) minmax(260px, 0.9fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    padding: clamp(2rem, 4.5vw, 3rem);
    box-shadow: 0 10px 40px rgba(16, 18, 22, 0.07);
    overflow: hidden;
}

.wa-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25d366 0%, #20bd5a 45%, var(--accent) 100%);
}

.wa-cta-content {
    position: relative;
    z-index: 1;
}

.wa-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #128c7e;
    margin: 0 0 0.85rem;
}

.wa-cta-eyebrow i {
    font-size: 1rem;
}

.wa-cta-content h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.wa-cta-lead {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 1.35rem;
    max-width: 38rem;
}

.wa-cta-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.wa-cta-perks li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--ink-soft);
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
}

.wa-cta-perks i {
    color: #25d366;
    font-size: 0.9rem;
}

.btn-wa {
    background: #25d366;
    color: #fff;
}

.btn-wa:hover {
    background: #1da851;
}

.wa-cta-note {
    margin: 0.85rem 0 0;
    font-size: 0.78rem;
    color: var(--muted);
}

.wa-cta-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

.wa-cta-mockup::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.14) 0%, rgba(13, 94, 255, 0.06) 55%, transparent 72%);
    pointer-events: none;
}

.wa-mockup-phone {
    position: relative;
    width: min(100%, 300px);
    background: #e7f8ee;
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 22px;
    padding: 1rem;
    box-shadow: 0 18px 36px rgba(16, 18, 22, 0.12);
    transform: rotate(-2deg);
}

.wa-mockup-top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(18, 140, 126, 0.15);
}

.wa-mockup-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.wa-mockup-top strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.wa-mockup-top span {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
}

.wa-mockup-chat {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.wa-mockup-bubble {
    max-width: 88%;
    font-size: 0.76rem;
    line-height: 1.45;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
}

.wa-mockup-bubble small {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    opacity: 0.75;
}

.wa-mockup-bubble--in {
    align-self: flex-start;
    background: #fff;
    color: var(--ink-soft);
    border-top-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(16, 18, 22, 0.06);
}

.wa-mockup-bubble--in small {
    color: #128c7e;
}

.wa-mockup-bubble--out {
    align-self: flex-end;
    background: #dcf8c6;
    color: var(--ink);
    border-top-right-radius: 4px;
}

/* ---------- Inspera Hakkında ---------- */

.about-section {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    margin-top: 0;
}

.about-bg-word {
    position: absolute;
    left: -0.08em;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
}

.about-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}

.about-visual {
    position: relative;
}

.about-visual-accent {
    position: absolute;
    top: -1.2rem;
    left: -1.2rem;
    width: 55%;
    height: 70%;
    background: var(--accent);
    opacity: 0.85;
    z-index: 0;
}

.about-visual-frame {
    position: relative;
    z-index: 1;
    margin: 0;
    clip-path: polygon(0 0, 100% 4%, 94% 100%, 0 96%);
    overflow: hidden;
}

.about-slider {
    position: relative;
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.25);
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.65s ease;
    pointer-events: none;
}

.about-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.about-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-copy {
    padding: 0.5rem 0;
}

.about-eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 1rem;
}

.about-copy h2 {
    font-size: clamp(1.75rem, 3.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1rem;
}

.about-copy p {
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.5rem;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.about-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.55rem 1rem;
    border-radius: 999px;
}

.about-highlights i {
    color: var(--accent);
    font-size: 0.95rem;
}

/* ---------- Etkinlik detay ---------- */

body.page-detail main { padding-top: var(--header-h); }

.detail-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.breadcrumb-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.breadcrumb-bar a:hover { color: var(--ink); }
.breadcrumb-bar .current { color: var(--ink-soft); }

.detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: clamp(1.8rem, 4vw, 3.5rem);
    align-items: start;
}

.detail-poster {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    padding: 0.9rem;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 640 / 1024;
    object-fit: cover;
    border-radius: calc(var(--radius) - 6px);
}

.detail-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    border: 1.5px solid currentColor;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.detail-info h1 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1.1rem;
}

.detail-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.6rem;
    padding: 0;
    margin: 0 0 1.6rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.detail-meta i { color: var(--accent); margin-right: 0.4rem; }

.detail-buy {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.detail-description p {
    line-height: 1.4;
    color: var(--ink-soft);
    margin: 0 0 0.75rem;
    text-align: left;
    word-break: normal;
    overflow-wrap: break-word;
}

.detail-event-rules {
    padding: 1rem 1.1rem;
    margin: 0 0 1.25rem;
    background: #f0f4ff;
    border: 1px solid #d6e2ff;
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.detail-event-rules-title {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.detail-event-rules ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.detail-event-rules li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.45;
}

.detail-event-rules i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.detail-credits {
    list-style: none;
    padding: 1.2rem 1.4rem;
    margin: 1.4rem 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.detail-notes {
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-note {
    display: flex;
    gap: 0.6rem;
    font-size: 0.84rem;
    color: var(--muted);
    margin: 0;
}

.detail-note i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.detail-note-link {
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    cursor: pointer;
}

.detail-note-link:hover { color: var(--accent-dark); }

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.site-modal[hidden] { display: none; }

.site-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 18, 22, 0.55);
    backdrop-filter: blur(2px);
}

.site-modal-panel {
    position: relative;
    width: min(560px, 100%);
    max-height: min(80vh, 640px);
    overflow-y: auto;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2rem);
    box-shadow: 0 24px 60px rgba(16, 18, 22, 0.18);
}

.site-modal-panel h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.site-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-modal-close:hover {
    background: var(--line);
    color: var(--ink);
}

body.modal-open { overflow: hidden; }

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 75ch;
}

.rules-list li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.65;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.rules-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

/* ---------- Kurumsal politikalar ---------- */

.policies-head h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.policies-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.policies-toc a {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--card);
    border: 1px solid var(--line);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.policies-toc a:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.policy-section {
    max-width: 78ch;
    padding: 1.8rem 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.policy-section h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.policy-section p {
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1.8rem;
    font-size: 0.86rem;
    line-height: 1.5;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-contact i { color: var(--accent); }
.footer-contact a:hover { color: #fff; }

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.18s ease;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-policy-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-policy-link:hover { color: #fff; border-color: #fff; }

.footer-bottom {
    background: #ffffff;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.pay-img {
    height: 26px;
    width: auto;
    display: block;
}

/* ---------- Yukarı çık ---------- */

.back-to-top {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 80;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--ink);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover { background: var(--accent); }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
    .event-card { flex-basis: calc((100% - 2.8rem) / 3); }
}

@media (max-width: 860px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
    .event-card { flex-basis: calc((100% - 1.4rem) / 2); }
}

@media (max-width: 720px) {
    .detail-grid { grid-template-columns: 1fr; }
    .detail-poster {
        position: static;
        width: min(100%, 360px);
        max-width: 360px;
        margin: 0 auto 1.5rem;
    }
    .detail-description p {
        line-height: 1.32;
        margin: 0 0 0.4rem;
    }
    .hero-dots { right: auto; left: 1.5rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-right { align-items: flex-start; }
    .footer-contact { flex-direction: column; }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-bg-word {
        top: 12%;
        transform: none;
        font-size: 4.5rem;
    }

    .about-visual-accent {
        top: -0.8rem;
        left: -0.8rem;
        width: 45%;
        height: 55%;
    }

    .wa-cta-card {
        grid-template-columns: 1fr;
    }

    .wa-cta-mockup {
        display: none;
    }
}

@media (max-width: 540px) {
    .event-card { flex-basis: 84%; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .hero-meta { gap: 0.8rem; font-size: 0.85rem; }
}

/* ── Checkout / Payment ── */
.page-checkout .checkout-wrap,
.page-checkout-success .checkout-wrap,
.page-checkout-fail .checkout-wrap,
.page-ticket .checkout-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6.5rem 1.25rem 4rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
}

.checkout-summary-card,
.checkout-panel-card,
.checkout-result-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.checkout-summary-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}

.checkout-summary-body,
.checkout-panel-card {
    padding: 1.35rem 1.5rem 1.5rem;
}

.checkout-summary-body h1 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0.35rem 0 0.85rem;
}

.checkout-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.checkout-meta i { color: var(--accent); margin-right: 0.35rem; }

.checkout-panel-card h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 0.35rem;
}

.checkout-lead {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin: 0 0 1.25rem;
}

.checkout-form { display: grid; gap: 1rem; }

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.checkout-field input,
.checkout-field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.72rem 0.85rem;
    font: inherit;
    background: #fff;
}

.checkout-field input:focus,
.checkout-field select:focus {
    outline: 2px solid rgba(47, 84, 235, 0.25);
    border-color: var(--accent);
}

.checkout-error { color: #b42318; font-size: 0.8rem; }

.checkout-alert {
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.checkout-alert--error {
    background: #fef3f2;
    border: 1px solid #fecdca;
    color: #912018;
}

.checkout-submit { width: 100%; justify-content: center; margin-top: 0.25rem; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.72rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 0.55rem 1rem; font-size: 0.88rem; }

.checkout-wrap--pay { max-width: 820px; }

.checkout-pay-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.checkout-pay-header h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 0 0.35rem;
}

.checkout-pay-header p { color: var(--ink-soft); margin: 0; }

.checkout-iframe-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem;
    min-height: 420px;
}

.checkout-pay-note {
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.88rem;
    margin-top: 1rem;
}

.checkout-wrap--success { max-width: 760px; }

.checkout-result-card {
    padding: 2rem 1.5rem;
    text-align: center;
}

.checkout-result-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.checkout-result-icon--success { color: #16a34a; }
.checkout-result-icon--pending { color: #ca8a04; }
.checkout-result-icon--error { color: #dc2626; }

.checkout-result-card h1 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    margin: 0 0 0.65rem;
}

.checkout-result-lead {
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0 auto 1.5rem;
    max-width: 34rem;
}

.checkout-tickets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-ticket {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    background: #fafbff;
}

.checkout-ticket-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.checkout-ticket-code {
    font-family: ui-monospace, monospace;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.checkout-ticket-qr {
    display: block;
    margin: 0 auto 0.75rem;
    border-radius: 8px;
}

.checkout-ticket-download { width: 100%; }

.checkout-resend {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.checkout-resend p { margin: 0 0 0.65rem; color: var(--ink-soft); font-size: 0.9rem; }

.checkout-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.checkout-spinner {
    width: 36px;
    height: 36px;
    margin: 0 auto 1rem;
    border: 3px solid #e5e7eb;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: checkout-spin 0.8s linear infinite;
}

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

.checkout-ticket-view .checkout-ticket-status {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.checkout-ticket-status.is-valid { background: #dcfce7; color: #166534; }
.checkout-ticket-status.is-invalid { background: #fee2e2; color: #991b1b; }

/* ── Digital ticket card ── */
.checkout-wrap--ticket { max-width: 720px; }

.ticket-page-head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.ticket-page-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.ticket-page-head h1 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    margin: 0 0 0.45rem;
}

.ticket-page-lead {
    color: var(--ink-soft);
    margin: 0;
    font-size: 0.92rem;
}

.ticket-page-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.digital-ticket {
    text-align: left;
}

.digital-ticket--horizontal {
    display: grid;
    gap: 0.85rem;
}

.digital-ticket__sheet {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 2px);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.digital-ticket__layout {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    align-items: stretch;
    min-height: 160px;
}

.digital-ticket__poster {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    background: #0f172a;
}

.digital-ticket__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.digital-ticket__poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.digital-ticket__brand {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.55rem;
    z-index: 1;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    padding: 0 0.4rem;
}

.digital-ticket__info {
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--line);
    border-right: 1px dashed #d1d5db;
}

.digital-ticket__status {
    display: inline-block;
    align-self: flex-start;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.digital-ticket__status.is-valid { background: #dcfce7; color: #166534; }
.digital-ticket__status.is-invalid { background: #fee2e2; color: #991b1b; }

.digital-ticket__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.55rem;
    line-height: 1.2;
}

.digital-ticket__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.32rem;
    font-size: 0.84rem;
    color: var(--ink-soft);
}

.digital-ticket__meta i { color: var(--accent); margin-right: 0.3rem; }

.digital-ticket__gate {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem 1rem 1rem;
    background: #fafbff;
}

.digital-ticket__qr {
    display: block;
    width: 108px;
    height: 108px;
    flex-shrink: 0;
    border-radius: 6px;
    background: #fff;
}

.digital-ticket__code span {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 0.25rem;
}

.digital-ticket__code strong {
    font-family: ui-monospace, monospace;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    word-break: break-all;
    line-height: 1.3;
}

.digital-ticket__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.digital-ticket__action-status {
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.digital-ticket__action-status.is-ok { color: #166534; }
.digital-ticket__action-status.is-error { color: #991b1b; }
.digital-ticket__action-status.is-pending { color: var(--ink-soft); }

.digital-ticket__scanned {
    margin: 0.55rem 0 0;
    font-size: 0.78rem;
    color: var(--ink-soft);
}

.checkout-tickets--cards {
    grid-template-columns: 1fr;
    text-align: left;
}

.checkout-tickets--cards .digital-ticket {
    margin: 0 auto;
    max-width: 720px;
    width: 100%;
}

@media (max-width: 700px) {
    .digital-ticket__layout {
        grid-template-columns: 120px minmax(0, 1fr);
        grid-template-rows: auto auto;
    }

    .digital-ticket__poster {
        width: 120px;
        height: 120px;
        grid-row: span 2;
    }

    .digital-ticket__info {
        border-right: none;
    }

    .digital-ticket__gate {
        grid-column: 2;
        border-top: 1px dashed #d1d5db;
        background: #fff;
        padding-top: 0.85rem;
    }
}

@media (max-width: 480px) {
    .digital-ticket__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .digital-ticket__poster {
        width: 100%;
        height: 140px;
        grid-row: auto;
    }

    .digital-ticket__info {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--line);
    }

    .digital-ticket__gate {
        grid-column: 1;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
}

@media print {
    @page {
        size: A6 landscape;
        margin: 8mm;
    }

    html, body {
        background: #fff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .site-header,
    .site-footer,
    .back-to-top,
    .ticket-page-head,
    .ticket-page-actions,
    .no-print,
    .digital-ticket__actions {
        display: none !important;
    }

    .page-ticket .checkout-wrap,
    .page-checkout-success .checkout-wrap {
        padding: 0 !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .checkout-result-card {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .checkout-result-icon,
    .checkout-result-card > h1,
    .checkout-result-lead,
    .checkout-resend,
    .checkout-result-actions {
        display: none !important;
    }

    .checkout-tickets--cards {
        display: block !important;
    }

    .digital-ticket__sheet {
        box-shadow: none !important;
        border: 1px solid #bbb !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .digital-ticket__layout {
        grid-template-columns: 130px minmax(0, 1fr) auto !important;
    }

    .digital-ticket__poster {
        width: 130px !important;
        height: 130px !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .digital-ticket__poster img {
        visibility: visible !important;
        opacity: 1 !important;
    }

    .digital-ticket__brand {
        color: #fff !important;
    }

    .cash-print-tickets .digital-ticket + .digital-ticket {
        break-before: page;
        page-break-before: always;
    }
}

@media (max-width: 860px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-form-grid { grid-template-columns: 1fr; }
    .page-checkout .checkout-wrap,
    .page-checkout-success .checkout-wrap,
    .page-checkout-fail .checkout-wrap,
    .page-ticket .checkout-wrap {
        padding-top: 5.5rem;
    }
}
