/* Add custom CSS styles below */ 
/* تعديل قسم إكسسوارات نسائية ليصبح مربع 1:1 مع تكبير وقص احترافي */
#best-offers-1-slider .s-product-card-image img {
    aspect-ratio: 1 / 1 !important; /* يضمن شكل مربع متناسق */
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important; /* قص الصورة بدل تصغيرها */
    object-position: center !important; /* تركيز الصورة في المنتصف */

    background-color: #ffffff !important; /* خلفية بيضاء عند الفراغات */

    transform: scale(1.08); /* تكبير بسيط يعطي إحساس Zoom */
}/* تعديل صور المنتجات في صفحات الأقسام لتصبح مربعة 1:1 */
.product-entry__image {
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
}

.product-entry__image img {
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.5s ease !important;
}

/* تأثير التكبير عند تمرير الماوس */
.product-entry__image:hover img {
    transform: scale(1.1) !important;
}