/* ═══════════════════════════════════════════
   CDJ EVENT SITE — style.css
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --teal:   #00c5cc;
    --orange: #f76f00;
    --black:  #000000;
    --dark:   #0d0d0d;
    --white:  #ffffff;
    --gray:   #888888;
    --red:    #ff0000;
    /* ── Set per page ── */
    --hero-bg:  none;
    --about-bg: none;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--black); color: var(--white); font-family: 'Open Sans', sans-serif; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }

/* ── Utility ── */
.text-teal   { color: var(--teal); }
.text-orange { color: var(--orange); }
.font-bold   { font-weight: 700; }

/* ═══════════════════════════════════════════
   BOLETOS SIDE TAB
═══════════════════════════════════════════ */

#boletos-container {
    position: fixed;
    left: -240px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    align-items: stretch;
    transition: left 0.35s cubic-bezier(.4, 0, .2, 1);
}

#boletos-container.open { left: 0; }

#boletos-panel {
    position: relative;
    width: 240px;
    background: #111;
    border-right: 3px solid var(--teal);
    padding: 2.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: 6px 0 24px rgba(0, 0, 0, .7);
}

#boletos-panel .panel-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 0.75rem;
    margin-bottom: 0.4rem;
}

#panel-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}
#panel-close:hover { color: var(--white); }

#boletos-panel a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--white);
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    writing-mode: initial;
    transform: none;
    letter-spacing: 0;
}
#boletos-panel a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--black);
}

#boletos-trigger {
    background: linear-gradient(to bottom, var(--teal), var(--teal));
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.88rem;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 1.5rem 0.55rem;
    border: none;
    border-radius: 8px 0px 0px 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
#boletos-trigger:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */

#site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,.85), transparent);
    transition: background 0.3s;
}

#site-header.scrolled {
    background: rgba(0, 0, 0, .96);
    border-bottom: 1px solid #1a1a1a;
}

.logo img { height: 56px; width: auto; }

#main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-links .nav-btn-boletos {
    background: var(--red);
    padding: 0.35rem 1.1rem;
    border-radius: 4px;
    color: var(--white) !important;
    transition: background 0.2s !important;
}
.nav-links .nav-btn-boletos:hover { background: #d97000; }

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.social-icons a { color: var(--white); font-size: 0.95rem; transition: color 0.2s; }
.social-icons a:hover { color: var(--teal); }

#mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
#mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
   NAV — TICKETS / BOLETOS DROPDOWN
═══════════════════════════════════════════ */

.has-dropdown { position: relative; }

.nav-chevron {
    display: inline-block;
    font-size: 0.65rem;
    margin-left: 0.25rem;
    transition: transform 0.22s ease;
    vertical-align: middle;
}
.has-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    min-width: 210px;
    background: rgba(10, 10, 10, .98);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    list-style: none;
    padding: 0.4rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1100;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .7);
}

.has-dropdown.open .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.nav-links .nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: none;
    border-radius: 0;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-links .nav-dropdown a:hover {
    background: var(--teal);
    color: var(--black);
}

.nav-links .nav-dropdown a i {
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .has-dropdown { width: 100%; }

    .nav-dropdown {
        position: static;
        transform: none !important;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        background: rgba(255, 255, 255, .06);
        border: none;
        border-radius: 6px;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        transition: opacity 0.2s, max-height 0.3s ease, padding 0.2s;
    }

    .has-dropdown.open .nav-dropdown {
        opacity: 1;
        max-height: 300px;
        pointer-events: all;
        padding: 0.4rem 0;
        margin-top: 0.4rem;
    }

    .nav-links .nav-btn-boletos {
        width: 100%;
        justify-content: space-between;
    }
}

/* ═══════════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════════ */

#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.20) 0%,
        rgba(0,0,0,.50) 55%,
        rgba(0,0,0,.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    margin-top: 10vh;
    width: 100%;
    max-width: 1600px;
}

.lema-graphic {
    max-width: 1256px;
    width: 88%;
    margin: 0 auto 2rem;
}

.event-date { text-align: center; }

.date-main {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 6.5vw, 4.8rem);
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.date-venue {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: clamp(1.3rem, 4.5vw, 3.5rem);
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-top: 0.2rem;
}

.date-address {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(0.68rem, 2.2vw, 1.87rem);
    color: rgb(255, 255, 255);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.date-time {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 3vw, 2.4rem);
    color: var(--white);
    letter-spacing: 0.1em;
    margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════
   SEPARATOR
═══════════════════════════════════════════ */

.separator {
    display: block;
    width: 100%;
    line-height: 0;
}
.separator img {
    width: 100%;
    height: auto;
    display: block;
}

/* ═══════════════════════════════════════════
   SECTION 2 — ABOUT
═══════════════════════════════════════════ */

#about {
    position: relative;
    background-image: var(--about-bg);
    background-size: cover;
    background-position: center right;
    padding: 5rem 0 0;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.92) 50%,
        rgba(0,0,0,.35) 100%
    );
}

.about-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 5rem 3.5rem;
}

.about-text { max-width: 60%; }

.about-text .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.44rem);
    line-height: 1.25;
    color: #ccc;
    margin-bottom: 1.1rem;
}

.about-text p strong { color: var(--white); }

.lema-quote {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.4rem, 2vw, 2.6rem);
    color: var(--orange);
}

/* ── Slideshow strip ── */
.slideshow-wrapper {
    position: relative;
    z-index: 2;
    padding: 1.2rem 3rem;
    background: rgba(0, 0, 0, .55);
}

.slideshow-viewport { overflow: hidden; }

.slides-track {
    display: flex;
    gap: 8px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.slide-item {
    flex: 0 0 calc((100% - 32px) / 5);
    aspect-ratio: 4 / 2.6;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.slide-btn:hover   { background: var(--teal); border-color: var(--teal); color: var(--black); }
.slide-btn.prev    { left:  0.5rem; }
.slide-btn.next    { right: 0.5rem; }

/* ═══════════════════════════════════════════
   SECTION 3 — SPEAKERS
═══════════════════════════════════════════ */

#speakers {
    background: var(--black);
    padding: 5rem 2rem;
    text-align: center;
}

#speakers .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

#speakers .section-intro {
    max-width: 820px;
    margin: 0 auto 3.5rem;
    font-size: 0.88rem;
    line-height: 1.85;
    color: #999;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.speaker-photo-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--orange);
    flex-shrink: 0;
    transition: border-color 0.3s;
}
.speaker-card:hover .speaker-photo-wrap { border-color: var(--teal); }

.speaker-photo { width: 100%; height: 100%; object-fit: cover; }

.speaker-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    margin-top: 0.4rem;
}

.speaker-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: center;
}

.speaker-city {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

/* ═══════════════════════════════════════════
   SECTION 4 — VIDEO
═══════════════════════════════════════════ */

#video-section {
    background: var(--dark);
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
}

.video-wrap {
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 14px;
    overflow: hidden;
}

.video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    padding-left: 6px;
}

/* ═══════════════════════════════════════════
   SECTION 5 — GALLERY
═══════════════════════════════════════════ */

#gallery {
    background: var(--black);
    padding: 5rem 2rem;
}

#gallery .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 3px;
    cursor: zoom-in;        /* ← signals clickable */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gallery-item img:hover { transform: scale(1.06); }

/* ═══════════════════════════════════════════
   SPEAKER MODAL
═══════════════════════════════════════════ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.modal.active { opacity: 1; pointer-events: all; }

.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.85); }

.modal-content {
    position: relative;
    z-index: 1;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    max-width: 580px;
    width: 90%;
    padding: 2.5rem 2rem;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }

.modal-body { display: flex; gap: 1.5rem; align-items: flex-start; }

.modal-body img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #333;
}

.modal-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

#modal-speaker-title { color: var(--orange); font-size: 0.83rem; font-weight: 600; margin-bottom: 0.2rem; }
#modal-location      { color: var(--teal);   font-size: 0.8rem;  margin-bottom: 0.8rem; }
#modal-bio           { font-size: 0.88rem; line-height: 1.75; color: #bbb; }

/* ═══════════════════════════════════════════
   GALLERY LIGHTBOX
═══════════════════════════════════════════ */

#gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

#gallery-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .93);
    cursor: zoom-out;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .8);
    display: block;
    transition: opacity 0.12s ease;
}

.lightbox-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0.25rem;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lightbox-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--black); }
.lightbox-btn.prev  { left: 1rem; }
.lightbox-btn.next  { right: 1rem; }

.lightbox-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, .45);
    z-index: 2;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .lightbox-btn      { width: 38px; height: 38px; font-size: 1.5rem; }
    .lightbox-btn.prev { left: 0.4rem; }
    .lightbox-btn.next { right: 0.4rem; }
    .lightbox-close    { top: 0.8rem; right: 0.8rem; font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

#site-footer {
    background: #080808;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: #555;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
    .speakers-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid  { grid-template-columns: repeat(4, 1fr); }
    .about-text    { max-width: 100%; }
    #speakers .section-intro { margin: 0rem auto 3.5rem 1.5rem; }
    #hero {
        height: auto;
        min-height: 0;
        padding: 10rem 1.5rem 4rem;
    }
    .hero-content { margin-top: 0; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    #site-header  { padding: 0.75rem 1rem; }
    .logo img     { height: 44px; }
    #main-nav     { display: none; }
    #main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,.97);
        padding: 1.5rem;
        gap: 1.2rem;
        border-bottom: 1px solid #1a1a1a;
    }
    #mobile-menu-btn { display: flex; }
    .nav-links       { flex-direction: column; align-items: flex-start; gap: 1rem; }

    #hero {
        height: auto;
        min-height: 0;
        padding: 10rem 0rem 6.5rem;
        background-position: center center;
    }
    .hero-content { margin-top: 0; }

    #about { padding-top: 3rem; }

    .slide-item { flex: 0 0 calc((100% - 8px) / 2); }

    .speakers-grid      { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .speaker-photo-wrap { width: 130px; height: 130px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .modal-body     { flex-direction: column; }
    .modal-body img { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
    #boletos-trigger { font-size: 1rem; padding: 1.2rem 0.45rem; }
}

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════ */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    flex-shrink: 0;
}

.lang-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, .45);
    padding: 0.1rem 1rem;
    transition: color 0.2s;
    line-height: 1;
}
.lang-btn:hover  { color: var(--white); }
.lang-btn.active { color: var(--teal); pointer-events: none; }

.lang-divider {
    color: rgba(255, 255, 255, .18);
    font-size: 0.75rem;
    line-height: 1;
    user-select: none;
}

/* Mobile — place switcher below the ticket dropdown */
@media (max-width: 768px) {
    .lang-switch {
        align-self: flex-start;
        border-color: rgba(255, 255, 255, .12);
        padding: 0.35rem 0.7rem;
        margin: 0 auto;
    }
    .lang-btn { font-size: 1.4rem; }
}