/* --- تعديل زر أضف للعربة --- */
button[class*="add_to_cart"], .add_to_cart_btn {
    background-color: #ffd814 !important;
    color: transparent !important; /* إخفاء النص القديم */
    border: 1px solid #fcd200 !important;
    border-radius: 9999px !important;
    font-weight: bold !important;
    position: relative;
    transition: background-color 0.2s ease;
}

/* إضافة النص الجديد لزر العربة */
button[class*="add_to_cart"]::after, .add_to_cart_btn::after {
    content: "أضف للعربة";
    color: #0f1111 !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 16px; /* يمكنك تعديل الحجم من هنا */
}

button[class*="add_to_cart"]:hover {
    background-color: #f7ca00 !important;
}

/* --- تعديل زر اشترِ الآن --- */
button.checkout_btn {
    background-color: #ffa41c !important;
    color: transparent !important; /* إخفاء النص القديم */
    border: 1px solid #ff8f00 !important;
    border-radius: 9999px !important;
    font-weight: bold !important;
    position: relative;
    transition: background-color 0.2s ease;
}

/* إضافة النص الجديد لزر الشراء */
button.checkout_btn::after {
    content: "اشترِ الآن";
    color: #0f1111 !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 16px;
}

button.checkout_btn:hover {
    background-color: #f3a847 !important;
}