/* السعر قبل الخصم */
.before-price {
    color: red !important; /* أحمر */
    text-decoration: line-through !important; /* خط على السعر */
}

/* السعر بعد الخصم مع تأثير لمعان */
.total-price {
    color: green !important; /* أخضر */
    font-weight: bold !important; /* خط عريض */
    animation: price-glow 1.5s ease-in-out infinite alternate;
}

/* حركة اللمعان */
@keyframes price-glow {
    0% {
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.4),
                     0 0 10px rgba(0, 255, 0, 0.2);
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.8),
                     0 0 20px rgba(0, 255, 0, 0.4);
    }
}