/* Styles pour les tickets dans le minicart */

/* Animation pour les badges du minicart */
.mini-cart-trigger .count-icon {
    transition: transform 0.2s ease-in-out;
}

.badge {
    transition: all 0.3s ease-in-out;
}

/* Animation pour le contenu des onglets */
.tab-pane {
    transition: opacity 0.3s ease-in-out;
}

/* Animation pour les totaux */
.cart-summary-details .fw-medium,
.total-amount {
    transition: color 0.3s ease-in-out;
}
.ticket-card {
    background: #fff;
    border: 2px dashed #e0e6ed;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.ticket-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-logo {
    font-size: 20px;
}

.ticket-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.ticket-content {
    padding: 16px;
}

.ticket-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ticket-label {
    color: #64748b;
    font-size: 13px;
}

.ticket-value {
    font-weight: 500;
    font-size: 13px;
}

.ticket-price-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.ticket-price {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.ticket-perforations {
    height: 1px;
    background: #f1f5f9;
    position: relative;
    margin: 8px 0;
}

.perf-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent 0%, transparent 48%, #f1f5f9 48%, #f1f5f9 52%, transparent 52%);
    background-size: 8px 4px;
}
