/* Add custom CSS styles below */ 
/* الكرت الأساسي */
.s-product-card-entry {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* عند المرور */
.s-product-card-entry:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* صورة المنتج */
.s-product-card-image {
    overflow: hidden;
    border-bottom: 1px solid #f2f2f2;
}

.s-product-card-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.s-product-card-entry:hover .s-product-card-image img {
    transform: scale(1.05);
}

/* المحتوى */
.s-product-card-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* اسم المنتج */
.s-product-card-content h3,
.s-product-card-content .s-product-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    height: 42px;
    overflow: hidden;
}

/* السعر */
.s-product-card-content .price,
.s-product-card-content .s-product-card-price {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/* زر الإضافة */
.s-product-card-content button {
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.s-product-card-content button:hover {
    background: #333;
}

/* البادجات (خصم / جديد) */
.s-product-card-content .badge,
.s-product-card-content .s-product-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
}

/* تحسين الموبايل */
@media (max-width: 768px) {
    .s-product-card-content {
        padding: 10px;
    }

    .s-product-card-content h3 {
        font-size: 13px;
    }

    .s-product-card-content .price {
        font-size: 14px;
    }
}