@media(max-width:992px){
    .index .s-products-list-vertical-cards {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
    .index custom-salla-product-card:not(#product-1649656022) {
    grid-area: auto !important;
}
    .index custom-salla-product-card#product-1649656022 {
        grid-area: 1/2/1/4;
    }
}
.sicon-cart:before {
    content: "\ef39";
}
/* حاوية الصور الثانية */
.product-thumbnails {
    display: flex;          /* تعرض الصور بجانب بعض */
    gap: 10px;              /* مسافة بين الصور */
    margin-top: 10px;
    flex-wrap: wrap;        /* يخليها تنتظم إذا ضاقت المساحة */
    justify-content: center; 
}

/* الصور نفسها */
.product-thumbnails img {
    width: 70px;           /* حجم الصورة الصغير */
    height: 70px;
    object-fit: cover;     /* يضمن الصورة تغطي المربع بدون تشوه */
    border-radius: 10px;   /* الحواف الدائرية */
    cursor: pointer;       /* شكل اليد عند المرور */
    transition: 0.3s;      /* تأثير سلس عند المرور */
}

.product-thumbnails img:hover {
    transform: scale(1.1); /* تكبير بسيط عند المرور */
  
}
.product-single-top-description .ql-video{height: auto !important}