/* 1. تبييض خلفية الموقع بالكامل وإزالة أي رمادي */
body, .main-content, .site-main, .footer, .category-products, .bg-gray-50, .bg-gray-100 {
    background-color: #ffffff !important;
}

/* 2. تصميم بطاقة المنتج (الإطار الأسود والترتيب العمودي) */
.product-card {
    background-color: #ffffff !important;
    border: 2px solid #000000 !important; /* الإطار الأسود */
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: none !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

/* 3. تنظيف خلفية الصورة وجعلها مدمجة مع الإطار */
.product-card__image-wrapper {
    background-color: #ffffff !important;
    border-bottom: 2px solid #000000 !important; /* خط فاصل أسود تحت الصورة */
    padding: 10px !important;
}

.product-card__image {
    background-color: #ffffff !important;
    mix-blend-mode: multiply !important; /* لإزالة أي رمادي خفيف في خلفية الصورة نفسها */
}

/* 4. تنسيق النصوص (الاسم، السعر، التقييم) */
.product-card__details {
    padding: 15px !important;
    text-align: center !important; /* توسيط مثل الصورة المطلوبة */
}

.product-card__title a {
    color: #000000 !important;
    font-weight: bold !important;
    font-size: 1rem !important;
}

.product-card__price {
    color: #800020 !important; /* اللون العنابي للسعر */
    font-weight: 800 !important;
    font-size: 1.1rem !important;
}

/* 5. تنسيق زر "تسوق الآن" أو "إضافة للسلة" */
.btn-add-to-cart {
    background-color: #800020 !important; /* لون عنابي للزر */
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important; /* ليكون حاداً في الأسفل */
    width: 100% !important;
    margin-top: auto !important; /* يدفعه لأسفل البطاقة دائماً */
    padding: 12px !important;
}

/* إزالة الظلال المزعجة عند المرور فوق المنتج */
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}