/* إخفاء زر المفضلة من بطاقة المنتج في القائمة */
.product-card__wishlist, .product-card__favorite {
    display: none !important;
}

/* إخفاء زر المفضلة داخل صفحة المنتج */
.product-attributes__wishlist, .btn--wishlist, .wishlist-btn {
    display: none !important;
}

/* إخفاء خيار (الأمنيات) من القائمة الجانبية أو التذييل */
a[href*="wishlist"] {
    display: none !important;
}

/* إخفاء زر المفضلة من الصفحة الرئيسية وبطاقات المنتجات */
.s-product-card__wishlist, 
.product-card__wishlist, 
.s-product-card__favorite, 
.wishlist-button, 
.add-to-wishlist-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* إخفاء الأيقونة في حال كانت داخل عنصر span أو button */
button[class*="wishlist"], 
span[class*="wishlist"], 
div[class*="wishlist"] {
    display: none !important;



  /* تحسين انسيابية التصفح وتقليل استهلاك المعالج */
html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}