/* Styles pour les prix et promotions */
.pricing-header .price {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pricing-header .old-price {
    text-decoration: line-through !important;
    color: #9ca3af !important;
    font-size: 2rem !important;
    font-weight: 400 !important;
    opacity: 0.7;
}

.pricing-header .new-price {
    color: #dc2626 !important;
    font-weight: bold !important;
    font-size: 2.5rem !important;
}

/* Version alternative avec badge promo */
.price-promo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-promo .old-price {
    text-decoration: line-through !important;
    color: #6b7280 !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    opacity: 0.8;
}

.price-promo .new-price {
    color: #dc2626 !important;
    font-weight: bold !important;
    font-size: 2.5rem !important;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.1);
}

.price-promo .promo-badge {
    background: #dc2626;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
     
    top: -8px;
    right: -10px;
    transform: rotate(15deg);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-header .price {
        flex-direction: column;
        gap: 4px;
    }
    
    .pricing-header .old-price {
        font-size: 1.2rem !important;
    }
    
    .pricing-header .new-price {
        font-size: 2rem !important;
    }
}