/* --- زر أضف للعربة (الأصفر) --- */
button[class*="add_to_cart"], .add_to_cart_btn {
    background-color: #ffd814 !important; /* لون أمازون الأصفر الأصلي */
    color: #0f1111 !important;
    border: 1px solid #fcd200 !important;
    border-radius: 9999px !important;
    font-weight: bold !important;
    transition: background-color 0.2s ease; /* تنعيم حركة التغيير */
}

/* تأثير عند مرور الماوس (يصبح أغمق) */
button[class*="add_to_cart"]:hover, .add_to_cart_btn:hover {
    background-color: #f7ca00 !important; /* درجة أغمق قليلًا */
    border-color: #e2b800 !important;
}

/* --- زر اشترِ الآن (البرتقالي) --- */
button.checkout_btn {
    background-color: #ffa41c !important; /* لون أمازون البرتقالي الأصلي */
    color: #0f1111 !important;
    border: 1px solid #ff8f00 !important;
    border-radius: 9999px !important;
    font-weight: bold !important;
    transition: background-color 0.2s ease;
}

/* تأثير عند مرور الماوس (يصبح أغمق) */
button.checkout_btn:hover {
    background-color: #f3a847 !important; /* درجة أغمق قليلًا */
    border-color: #e08e00 !important;
}