/* Add custom CSS styles below */ 
keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 5;
    }
    50% {
        transform: scale(1.1);
        opacity: 2.5;
    }
    100% {
        transform: scale(1);
        opacity: 10;
    }
}
.s-add-product-button-mini-checkout-content::after {
    content: "لفتره محدوده";
    display: block;
    font-size: 11px; /* حجم النص 11 */
    color: #ffffff; /* لون النص الأخضر الجذاب */
    font-weight: bold; /* جعل النص عريض */
    background-color: #ff0000; /* خلفية فاتحة لتمييز النص */
    padding: 10px; /* إضافة مساحة حول النص */
    border-radius: 10px; /* إضافة حواف مستديرة */
    text-align: right; /* محاذاة النص إلى اليمين */
    animation: pulse 0.8s infinite; /* إضافة حركة نبض للنص */
    position: relative; /* لضمان تموضع النص بشكل صحيح */
    right: 10px; /* تحريك النص قليلاً إلى اليمين */
}
.s-add-product-button-mini-checkout-content span {
    display: none; /* إخفاء النص الأصلي */
}