/* خلفية المتجر سوداء */
body,
.app-inner,
.page,
main {
    background-color: #000000 !important;
}

/* عنوان المنتج (مثل: بكلايت كحلي) */
body.product-single h1.text-gray-800 {
    color: #ffd700 !important;   /* ذهبي */
}

/* الوصف داخل product__description (h2 + p + ul + li وكل شيء داخله) */
body.product-single .product__description,
body.product-single .product__description h2,
body.product-single .product__description p,
body.product-single .product__description ul,
body.product-single .product__description li,
body.product-single .product__description * {
    color: #ffffff !important;   /* أبيض */
}

/* السعر – نحاول نلقطه بأي كلاسات محتملة */
body.product-single [itemprop="price"],
body.product-single .product-price,
body.product-single .product-price *,
body.product-single .price,
body.product-single .price *,
body.product-single .text-primary,
body.product-single .text-primary * {
    color: #ffd700 !important;   /* ذهبي */
}

/* العناوين اللي جوّا الوصف مثل: التفاصيل – تبقى برضه أبيض */
body.product-single .product__description h2.ql-align-right,
body.product-single .product__description h3.ql-align-right {
    color: #ffffff !important;
}










/* جعل نقاط القوائم ذهبية */
body.product-single ul li::marker {
    color: #ffd700 !important;
}