/* 紧凑票种选择样式 */
.ticket-types.compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ticket-type.compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--ancient-gold);
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
}

.ticket-type.compact:hover {
    border-color: var(--ancient-red);
    background: rgba(200, 16, 46, 0.02);
}

.ticket-info.compact {
    flex: 1;
}

.ticket-info.compact h4 {
    color: var(--ancient-red);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.ticket-info.compact p {
    color: var(--ancient-dark);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.ticket-price.compact {
    color: var(--ancient-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 1rem;
}

.ticket-counter.compact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.counter-btn.compact {
    width: 32px;
    height: 32px;
    border: 2px solid var(--ancient-gold);
    background: white;
    color: var(--ancient-red);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.counter-btn.compact:hover {
    background: var(--ancient-gold);
    color: white;
}

.count.compact {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ancient-red);
    min-width: 24px;
    text-align: center;
}

.total-info.compact {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.total-info.compact p {
    font-size: 1.1rem;
    color: var(--ancient-red);
    font-weight: 600;
    margin: 0;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .ticket-type.compact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .ticket-info.compact {
        order: 1;
    }
    
    .ticket-price.compact {
        order: 2;
        margin-right: 0;
    }
    
    .ticket-counter.compact {
        order: 3;
        justify-content: center;
    }
}