/* البطاقة */
.s-product-card-entry {
    background: #fff !important;
    border: 2px solid #0fa8c5 !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: none !important;
    transition: none !important;
}

/* بدون أي حركة */
.s-product-card-entry:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #0fa8c5 !important;
}

/* الصورة */
.s-product-card-image {
    padding: 15px !important;
    background: #fff !important;
}

.s-product-card-image img {
    transform: none !important;
    transition: none !important;
}

/* اسم المنتج */
.s-product-card-content-title a {
    color: #111 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.6;
}

/* السعر */
.s-product-card-price {
    color: #e53935 !important;
    font-size: 22px !important;
    font-weight: bold !important;
}

/* زر السلة */
.s-product-card-content-footer .s-button-element {
    background: #fff !important;
    border: 2px solid #0fa8c5 !important;
    border-radius: 30px !important;
    color: #0fa8c5 !important;
    font-weight: bold !important;
    transition: none !important;
}

/* القلب */
.s-product-card-wishlist-btn {
    background: #fff !important;
    border: 1px solid #dbeaf0 !important;
    border-radius: 50% !important;
}

.s-product-card-wishlist-btn i {
    color: #0fa8c5 !important;
}
/* تصغير البطاقة بدون مشاكل */
.s-product-card-entry{
    max-width:220px !important;
    margin:auto !important;
}

/* تصغير الصورة */
.s-product-card-image{
    padding:10px !important;
}

.s-product-card-image img{
    width:120px !important;
    height:120px !important;
    object-fit:contain !important;
}

/* تصغير الاسم */
.s-product-card-content-title a{
    font-size:14px !important;
    line-height:1.5 !important;
}

/* تصغير السعر */
.s-product-card-price{
    font-size:16px !important;
}

/* تصغير الزر */
.s-product-card-content-footer .s-button-element{
    min-height:36px !important;
    font-size:13px !important;
}
/* توسيط صورة المنتج */
.s-product-card-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* توسيط الصورة نفسها */
.s-product-card-image img {
    display: block !important;
    margin: 0 auto !important;
}