/* ===== TICKETSHOW GALLERY ===== */
.ticketshow-gallery-section {
    font-family: 'Montserrat', sans-serif;
    /*max-width: 1440px;*/
    margin: 0 auto;
    padding: 0px !important;
    box-sizing: border-box;
}
/* ── GRID WRAPPER ── */
.ticketshow-grid {
    display: flex;
    gap: 6px;
    /*height: 500px;*/
}

/* ── LEFT: single large image ── */
.ticketshow-grid-main {
    flex: 0 0 calc(50% - 3px);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background: #111;
}

.ticketshow-grid-main img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ticketshow-grid-main:hover img {
    transform: scale(1.03);
    opacity: 0.88;
}

/* ── RIGHT: 2×2 grid of 4 thumbs ── */
.ticketshow-grid-thumbs {
    flex: 0 0 calc(50% - 3px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
}

.ticketshow-grid-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    background: #111;
}

.ticketshow-grid-thumb img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ticketshow-grid-thumb:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* "+N more" overlay on last visible thumb */
.ticketshow-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    pointer-events: none;
    border-radius: 5px;
}

/* ── LIGHTBOX BACKDROP ── */
.ticketshow-lightbox-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 8, 12, 0.93);
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.ticketshow-lightbox-backdrop.active {
    display: flex;
}

.ticketshow-lightbox-container {
    position: relative;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Close button */
.ticketshow-lb-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.ticketshow-lb-close:hover {
    opacity: 1;
}
.ticketshow-lb-close svg {
    width: 28px;
    height: 28px;
}

/* Image area */
.ticketshow-lb-img-wrap {
    position: relative;
    width: 100%;
    background: #0d0d10;
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.ticketshow-lb-img-wrap img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    transition: opacity 0.22s ease;
}

.ticketshow-lb-img-wrap img.ts-fading {
    opacity: 0;
}

/* Prev / Next */
.ticketshow-lb-prev,
.ticketshow-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.20);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    z-index: 2;
    padding: 0;
}
.ticketshow-lb-prev:hover,
.ticketshow-lb-next:hover {
    background: rgba(0,184,204,0.5);
    border-color: #00b8cc;
}
.ticketshow-lb-prev {
    left: 12px;
}
.ticketshow-lb-next {
    right: 12px;
}
.ticketshow-lb-prev svg,
.ticketshow-lb-next svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Disabled — hard stop, no wrap */
.ticketshow-lb-prev.ts-disabled,
.ticketshow-lb-next.ts-disabled {
    opacity: 0.18;
    pointer-events: none;
}

/* Counter & dots */
.ticketshow-lb-counter {
    margin-top: 11px;
    color: rgba(255,255,255,0.5);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ticketshow-lb-dots {
    display: flex;
    gap: 7px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.ticketshow-lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.ticketshow-lb-dot.ts-active {
    background: #00b8cc;
    transform: scale(1.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .ticketshow-grid {
        height: auto;
        flex-direction: column;
        gap: 5px;
    }

    .ticketshow-grid-main {
        flex: unset;
        width: 100%;
        height: 220px;
    }

    .ticketshow-grid-thumbs {
        flex: unset;
        width: 100%;
        height: 160px;
    }

    .ticketshow-lb-prev {
        left: 4px;
    }
    .ticketshow-lb-next {
        right: 4px;
    }
    .ticketshow-lb-prev,
    .ticketshow-lb-next {
        width: 36px;
        height: 36px;
    }
}


@media (max-width: 769px) {
    .ticketshow-slider{
        width:100%;
        overflow:hidden;
        position:relative;
    }

    .ticketshow-track{
        display:flex;
        transition:transform .3s ease;
        touch-action: pan-y;
    }

    .ticketshow-slide{
        min-width:100%;
    }

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

    /* ===== CENTER ARROWS ===== */
    .ticketshow-nav{
        position:absolute;
        top:50%;
        width:100%;
        transform:translateY(-50%);
        display:flex;
        justify-content:space-between;
        padding:0 10px;
        box-sizing:border-box;
        pointer-events:none;
    }

    .ticketshow-prev,
    .ticketshow-next{
        width:40px;
        height:40px;
        background:rgba(0,0,0,0.5);
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        cursor:pointer;
        pointer-events:auto;
    }

    .ticketshow-prev svg,
    .ticketshow-next svg{
        width:22px;
        height:22px;
        fill:none;
        stroke:#fff;
        stroke-width:2;
    }

    .ticketshow-disabled{
        opacity:0.3;
        pointer-events:none;
    }

    /* ===== DOTS INSIDE ===== */
    .ticketshow-dots{
        position:absolute;
        bottom:10px;
        left:0;
        width:100%;
        text-align:center;
        z-index:2;
    }

    .ticketshow-dot{
        display:inline-block;
        width:10px;
        height:10px;
        margin:0 4px;
        border-radius:50%;
        background:rgba(255,255,255,0.5);
        cursor:pointer;
        border: 1px solid #c5b8b8;
    }

    .ticketshow-dot.active{
        background:black;
    }
}

.pr_tc_container {
    display: flex;
    gap: 20px;
    width: 100%;
}

.pr_left {
    width: 70%;
}

.pr_right {
    width: 30%;
}

.pr_tc_box {
    padding: 20px;
}

.pr_tc_box2,
.pr_tc_box4 {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
}

.pr_tc_box4 {
    margin-top: 20px;
}

/* Responsive */
@media (max-width:768px) {

    .pr_tc_container {
        flex-direction: column;
    }

    .pr_left,
    .pr_right {
        width: 100%;
    }

    .pr_tc_box4 {
        margin-top: 20px;
    }
}