/* استيراد خط Readex Pro بجميع أوزانه من جوجل */
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&display=swap');

/* تطبيق الخط على كامل المتجر */
* {
    font-family: 'Readex Pro', sans-serif !important;
}

/* تخصيص عناوين المنتجات (لجعلها قريبة من الصورة) */
.product-card-title {
    font-weight: 500 !important; /* وزن متوسط */
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #333 !important;
}

/* تخصيص السعر */
.product-card-price {
    font-weight: 700 !important; /* وزن عريض */
    color: #1a1a1a !important;
}

/* تخصيص أزرار "أضف للسلة" */
.btn-add-to-cart {
    font-weight: 600 !important;
}