/* تغيير شكل زر الشراء وإضافة حركة نبض */
.s-button-primary, .s-add-to-cart-button {
    background-color: #d32f2f !important; /* لون أحمر غامق لجذب الانتباه */
    border-radius: 25px !important;
    font-weight: bold !important;
    animation: pulse-animation 1.5s infinite !important;
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0px rgba(211, 47, 47, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0px rgba(211, 47, 47, 0); }
}