/* ============================================
   NEW TICKET MODAL STYLES
   ============================================ */

/* Ticket Container */
.ticket-new {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

/* Left Panel - Purple */
.ticket-new__left {
    width: 200px;
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    flex-shrink: 0;
}

.ticket-new__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ticket-new__logo-img {
    width: 70px;
    height: 70px;
    border: 3px solid white;
    border-radius: 6px;
    object-fit: contain;
    background: #553C9A;
    padding: 8px;
}

.ticket-new__logo-text {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.ticket-new__divider {
    width: 100%;
    height: 2px;
    background: white;
    margin: 1rem 0;
}

.ticket-new__event-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.ticket-new__event-subtitle {
    font-size: 0.875rem;
    color: #D6BCFA;
    margin-top: 0.35rem;
    text-align: center;
}

.ticket-new__qr {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ticket-new__qr img {
    width: 90px;
    height: 90px;
    background: white;
    padding: 8px;
    border-radius: 6px;
}

.ticket-new__qr-text {
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.9;
}

.ticket-new__stars {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 1.25rem;
    color: #D6BCFA;
    letter-spacing: 6px;
}

/* Right Panel - White */
.ticket-new__right {
    flex: 1;
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.ticket-new__success {
    background: #10B981;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 350px;
}

.ticket-new__success svg {
    width: 20px;
    height: 20px;
    color: white;
    flex-shrink: 0;
}

.ticket-new__success span {
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.3px;
}

.ticket-new__number {
    margin-top: 1rem;
    padding: 0.75rem;
    border: 3px solid #6B46C1;
    background: #F3E8FF;
    border-radius: 6px;
    text-align: center;
}

.ticket-new__number-label {
    font-size: 0.75rem;
    color: #6B46C1;
    font-weight: 600;
}

.ticket-new__number-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B46C1;
    margin-top: 0.25rem;
}

.ticket-new__details {
    margin-top: 1rem;
    background: #F7FAFC;
    padding: 1rem;
    border-radius: 6px;
}

.ticket-new__details-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #4A2885;
    margin-bottom: 0.75rem;
}

.ticket-new__detail-row {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.ticket-new__detail-row--last {
    border-bottom: none;
}

.ticket-new__detail-label {
    width: 100px;
    font-size: 0.8125rem;
    color: #718096;
    flex-shrink: 0;
}

.ticket-new__detail-value {
    flex: 1;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1A202C;
}

.ticket-new__detail-value div {
    margin-bottom: 0.25rem;
}

.ticket-new__detail-value div:last-child {
    margin-bottom: 0;
}

.ticket-new__detail-city {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 400;
    margin-top: 0.25rem;
}

.ticket-new__user-info {
    margin-top: 0.75rem;
    background: white;
    border: 1px solid #E2E8F0;
    padding: 0.75rem;
    border-radius: 6px;
}

.ticket-new__user-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6B46C1;
    margin-bottom: 0.75rem;
}

.ticket-new__user-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.8125rem;
}

.ticket-new__user-row span {
    color: #718096;
}

.ticket-new__user-row strong {
    color: #1A202C;
}

.ticket-new__info-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6B46C1;
    margin-bottom: 0.75rem;
}

.ticket-new__info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.8125rem;
}

.ticket-new__info-label {
    color: #718096;
}

.ticket-new__info-value {
    color: #1A202C;
    font-weight: 600;
}

.ticket-new__download {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #6B46C1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ticket-new__download:hover {
    background: #553C9A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.ticket-new__download svg {
    width: 20px;
    height: 20px;
}

.ticket-new__footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.6875rem;
    color: #718096;
}

.ticket-new__footer div {
    margin: 0.25rem 0;
}

.ticket-new__footer div:last-child {
    font-weight: 600;
    color: #6B46C1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ticket-new {
        flex-direction: column;
        max-width: 100%;
    }

    .ticket-new__left {
        width: 100%;
        padding: 1.5rem;
    }

    .ticket-new__logo-img {
        width: 80px;
        height: 80px;
    }

    .ticket-new__event-title {
        font-size: 1.5rem;
    }

    .ticket-new__qr img {
        width: 100px;
        height: 100px;
    }

    .ticket-new__stars {
        padding-top: 1.5rem;
    }

    .ticket-new__right {
        padding: 1.5rem;
    }

    .ticket-new__success {
        max-width: 100%;
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .ticket-new__success svg {
        width: 20px;
        height: 20px;
    }

    .ticket-new__number-value {
        font-size: 1.5rem;
    }

    .ticket-new__detail-label {
        width: 90px;
        font-size: 0.8125rem;
    }

    .ticket-new__detail-value {
        font-size: 0.8125rem;
    }
}
