/* ============================================
   EVENTO.CSS - Dark Theme (Dice.fm Inspired)
   ============================================ */

:root {
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --text-muted: #666666;
    --accent: #6366f1;
    --accent-hover: #5558e3;
    --accent-light: rgba(99, 102, 241, 0.1);
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    --border-color: #2a2a2a;
}

/* ============================================
   GLOBAL DARK BACKGROUND
   ============================================ */

body.evento-page {
    background: var(--bg-primary);
    color: var(--text-secondary);
}

.evento-detalle {
    background: var(--bg-primary);
    min-height: 100vh;
}

/* ============================================
   LAYOUT - 2 COLUMNS
   ============================================ */

.event-page-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .event-page-layout {
        grid-template-columns: 1fr;
        gap: 0px;
        /* Reduce gap since we handle margins on elements */
        position: relative;
        z-index: 1;
        padding: 110px 24px 40px;
        /* Increased top padding to clear header */
    }

    .event-main-content {
        margin-top: 0 !important;
        /* Remove gap between image and tickets on mobile */
    }
}

/* ============================================
   SIDEBAR (LEFT - STICKY)
   ============================================ */

.event-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

@media (max-width: 1024px) {
    .event-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Poster */
.sidebar-poster {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.sidebar-poster img {
    width: 100%;
    display: block;
}

/* Organizador */
.sidebar-organizer {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.organizer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.org-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.organizer-info {
    flex: 1;
    min-width: 0;
}

.sidebar-organizer h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.sidebar-organizer p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Código Button */
.sidebar-code-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.7);
    padding: 14px;
    border-radius: 10px;
    margin-top: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.sidebar-code-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   MAIN CONTENT (RIGHT)
   ============================================ */

.event-main-content {
    min-width: 0;
    margin-top: 80px;
}

/* Header del Evento */
.event-header-dark {
    padding: 0 0 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-header-dark h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 24px 0;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .event-header-dark h1 {
        font-size: 32px;
    }
}

.event-meta-dark {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 16px;
}

.meta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
}

.event-tags-dark {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.event-tag-dark {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   TICKETS SECTION
   ============================================ */

.tickets-section-dark {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tickets-section-dark h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 32px 0;
}

/* Etapa Card */
.etapa-card-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s;
}

.etapa-card-dark:hover {
    background: rgba(255, 255, 255, 0.05);
}

.etapa-header-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s;
    background: rgba(255, 255, 255, 0.05);
}

.etapa-header-dark:hover {
    background: rgba(255, 255, 255, 0.02);
}

.etapa-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.etapa-dates {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.etapa-badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.etapa-badge.vigente {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.2);
    }

    50% {
        box-shadow: 0 0 16px rgba(34, 197, 94, 0.4);
    }
}

.etapa-badge.agotado {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.etapa-badge.proximamente {
    background: rgba(128, 128, 128, 0.1);
    color: #999999;
    border: 1px solid rgba(128, 128, 128, 0.3);
}

/* Etapa Body */
.etapa-body-dark {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.etapa-card-dark.open .etapa-body-dark {
    max-height: 3000px;
}

/* Sector Row */
.sector-row-dark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 24px;
    border-top: 1px solid #000000;
    transition: background 0.2s;
    background: rgba(255, 255, 255, 0.03);
}

.sector-row-dark:hover {
    background: rgba(255, 255, 255, 0.02);
}

.sector-info-dark {
    flex: 1;
    min-width: 0;
}

.sector-info-dark h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sector-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.sector-info-dark p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.sector-price-dark {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 100px;
    text-align: right;
}

.btn-buy-ticket {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-buy-ticket:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-buy-ticket:disabled {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .sector-row-dark {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 16px !important;
    }

    .sector-info-dark {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 8px !important;
    }

    .sector-price-dark,
    .sector-price-alliance {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        min-width: auto !important;
    }

    .sector-price-dark .regular-price,
    .sector-price-alliance .alliance-price {
        font-size: 18px !important;
    }

    .btn-buy-ticket {
        width: auto !important;
        margin-left: auto !important;
        padding: 8px 16px !important;
        font-size: 14px !important;
    }
}

/* ============================================
   INFO SECTIONS
   ============================================ */

.info-section-dark,
.lineup-section-dark,
.location-section-dark,
.faqs-section-dark {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-section-dark h2,
.lineup-section-dark h2,
.location-section-dark h2,
.faqs-section-dark h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 24px 0;
}

.info-section-dark p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Lineup */
.lineup-grid-dark {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .lineup-grid-dark {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols per row */
        gap: 8px;
        /* Tighter gap */
    }

    .artist-card-dark {
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        text-align: center;
    }

    .artist-card-dark h4 {
        font-size: 11px !important;
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .artist-card-dark img {
        margin-bottom: 6px !important;
        border-radius: 8px !important;
    }

    .genre-pill {
        padding: 2px 6px !important;
        font-size: 8px !important;
        border-radius: 8px !important;
    }

    .artist-genres {
        gap: 3px !important;
    }
}

.artist-card-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.artist-card-dark:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.artist-card-dark img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.artist-card-dark h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.artist-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.genre-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* Location */
.location-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.location-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   PURCHASE MODAL
   ============================================ */

.modal-purchase {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-purchase.active {
    display: flex;
}

.modal-content-purchase {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.modal-content-purchase h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.modal-price {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 0 32px 0;
}

.modal-price span {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.quantity-selector-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 32px 0;
}

.quantity-selector-modal button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector-modal button:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.quantity-selector-modal button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.quantity-selector-modal input {
    width: 80px;
    height: 60px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 24px 0;
}

.modal-total span {
    font-size: 16px;
    color: var(--text-secondary);
}

.modal-total strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.btn-confirm-purchase {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-confirm-purchase:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.modal-legales {
    font-size: 12px;
    color: var(--text-muted);
    margin: 16px 0 0 0;
    line-height: 1.5;
    text-align: center;
}

/* ============================================
   UTILITIES
   ============================================ */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}


/* ============================================
   COVER BLUR BACKGROUND (Like Explorar)
   ============================================ */

.evento-detalle {
    position: relative;
    min-height: 100vh;
}

.page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 980px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    filter: blur(60px) brightness(0.5);
    transform: scale(1.2);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.background-image.active {
    opacity: 0.6;
}

.background-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}


/* ============================================
   ACCORDION IMPROVEMENTS
   ============================================ */

.etapa-header-dark {
    position: relative;
    padding-right: 60px !important;
}

.etapa-header-dark::after {
    content: '▼';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, color 0.2s;
    pointer-events: none;
}

.etapa-card-dark.open .etapa-header-dark::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--accent);
}

.etapa-header-dark:hover::after {
    color: var(--text-secondary);
}

.etapa-info {
    pointer-events: none;
}

.etapa-badge {
    pointer-events: none;
}

/* Event Times */
.event-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.event-time-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.event-time-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
}

.event-time-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-time-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.event-time-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

/* FAQs Accordion */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 60px 20px 24px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

/* Legal Section */
.legal-section-dark {
    padding: 40px 0;
}

.legal-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 32px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.legal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.legal-content li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.legal-content li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--text-muted);
}

/* Alliance Price Column */
.sector-price-alliance {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 120px;
}

.alliance-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--success);
    font-weight: 700;
    background: rgba(34, 197, 94, 0.15);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: inline-block;
    width: auto;
}

.alliance-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--success);
}

.sector-price-dark.has-alliance {
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.sector-price-dark .price-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.regular-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 4px;
    display: inline-block;
    width: auto;
}

.regular-price {
    font-size: 20px;
    font-weight: 700;
}

/* Responsive - Stack prices on mobile */
@media (max-width: 768px) {
    .sector-row-dark {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sector-price-alliance,
    .sector-price-dark {
        align-items: flex-start;
    }
}

/* Alliance Promotional Banner */
.alliance-promo-banner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.promo-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.promo-content {
    flex: 1;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.promo-content strong {
    color: var(--success);
    font-weight: 700;
}

.promo-logo {
    height: 24px;
    vertical-align: middle;
    margin: 0 4px;
    border-radius: 4px;
}

.promo-name {
    color: var(--success);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

@media (max-width: 768px) {
    .alliance-promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .promo-content {
        font-size: 14px;
    }
}

/* ============================================
   CHECKOUT MODAL CENTERED
   ============================================ */

.checkout-modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkout-modal-fullscreen.active {
    display: flex;
    opacity: 1;
}

.checkout-modal-container {
    background: white;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.checkout-modal-fullscreen.active .checkout-modal-container {
    transform: scale(1);
}

/* Shake animation */
@keyframes shake {

    0%,
    100% {
        transform: scale(1) translateX(0);
    }

    25% {
        transform: scale(1) translateX(-10px);
    }

    75% {
        transform: scale(1) translateX(10px);
    }
}

.checkout-modal-container.shake {
    animation: shake 0.3s ease-in-out;
}

/* Header Sticky */
.checkout-header {
    position: relative;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-shrink: 0;
}

.checkout-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.checkout-close:hover {
    background: #f5f5f5;
    border-color: #ccc;
    transform: rotate(90deg);
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    max-width: 400px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.step-item.active {
    opacity: 1;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #999;
    transition: all 0.3s;
}

.step-item.active .step-circle {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
}

.step-item span {
    font-size: 14px;
    font-weight: 600;
    color: #999;
}

.step-item.active span {
    color: #333;
}

.step-divider {
    width: 40px;
    height: 2px;
    background: #e0e0e0;
}

.checkout-back {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border-radius: 8px;
}

.checkout-back:hover {
    background: #f5f5f5;
    color: #333;
}

/* Content Grid */
.checkout-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.checkout-main {
    min-height: 400px;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-step h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.step-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 28px 0;
}

/* Ticket Selected Card */
.ticket-selected-card {
    background: #f8f9fa;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 24px;
}

.ticket-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0;
}

.ticket-price {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Quantity Selector */
.quantity-selector-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 32px 0;
}

.qty-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.qty-input {
    width: 100px;
    height: 60px;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #1f2937;
}

.qty-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    background: white;
    color: #6366f1;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover:not(:disabled) {
    border-color: #6366f1;
    background: #eef2ff;
    transform: scale(1.05);
}

.qty-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-btn svg {
    pointer-events: none;
}

/* User Data Display */
.user-data-display {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-row:last-child {
    border-bottom: none;
}

.data-row label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.data-row span {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.info-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

/* Continue Button */
.checkout-continue {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-continue:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 0;
    height: fit-content;
}

.sidebar-card {
    background: #f8f9fa;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 20px;
}

.event-summary {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.summary-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.summary-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.summary-info p {
    font-size: 12px;
    color: #666;
    margin: 0 0 3px 0;
}

/* User Info Badge in Sidebar */
.user-info-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.user-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.user-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 3px;
}

.user-name {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.user-email {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    color: #666;
}

.summary-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 10px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 700;
    color: #333;
}

.discount-amount {
    color: #22c55e;
}

.trust-badge {
    text-align: center;
    padding: 10px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(34, 197, 94, 1);
    font-weight: 600;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-content-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .checkout-sidebar {
        position: static;
    }

    .checkout-header {
        padding: 16px 20px;
    }

    .step-item span {
        display: none;
    }
}

@media (max-width: 768px) {
    .checkout-modal-container {
        width: 98%;
        max-height: 95vh;
    }

    .checkout-steps {
        gap: 8px;
    }

    .step-divider {
        width: 20px;
    }

    .checkout-step h2 {
        font-size: 22px;
    }
}

/* White Modal Theme Override */
.checkout-header {
    background: white !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.checkout-close {
    background: white !important;
    border: 2px solid #e0e0e0 !important;
    color: #666 !important;
}

.checkout-close:hover {
    background: #f5f5f5 !important;
    border-color: #ccc !important;
}

.step-circle {
    border-color: #e0e0e0 !important;
    color: #999 !important;
}

.step-item.active .step-circle {
    border-color: var(--accent) !important;
    background: var(--accent) !important;
    color: white !important;
}

.step-item span {
    color: #999 !important;
}

.step-item.active span {
    color: #333 !important;
}

.step-divider {
    background: #e0e0e0 !important;
}

.checkout-back {
    color: #666 !important;
}

.checkout-back:hover {
    background: #f5f5f5 !important;
    color: #333 !important;
}

.checkout-step h2 {
    color: #333 !important;
}

.step-subtitle {
    color: #666 !important;
}

.ticket-selected-card {
    background: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
}

.ticket-info h3 {
    color: #333 !important;
}

.ticket-price {
    color: #666 !important;
}

.qty-btn {
    border-color: #e0e0e0 !important;
    background: white !important;
    color: #333 !important;
}

.qty-btn:hover {
    background: #f5f5f5 !important;
}

.qty-input {
    color: #333 !important;
    background: white !important;
    border-color: #e0e0e0 !important;
}

.sidebar-card {
    background: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
}

.summary-info h3 {
    color: #333 !important;
}

.summary-info p {
    color: #666 !important;
}

.user-info-badge {
    background: #e8eaf6 !important;
    border-color: #c5cae9 !important;
}

.user-label {
    color: #666 !important;
}

.user-name {
    color: #333 !important;
}

.user-email {
    color: #666 !important;
}

.sidebar-card h4 {
    color: #333 !important;
}

.summary-row {
    color: #666 !important;
}

.summary-divider {
    background: #e0e0e0 !important;
}

.summary-total {
    color: #333 !important;
}

/* ============================================
   MOBILE / DESKTOP UTILITIES
   ============================================ */

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }
}