/* Global fix to ensure images fit cards without cropping */
/* تعليق عربي: إجبار الصور على الظهور بالكامل داخل الكروت مع إضافة مساحة داخلية */

/* CATEGORY & PRODUCT IMAGES - Full Bleed Transparent (User Refinement) */
.box.item .box-item-image-container .box-item-image,
.box.item .category-img,
.category-img-container .category-img,
.category-full-img .product-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Fill the whole area per user voice note */
    object-position: center !important;
    padding: 0 !important; 
    background: transparent !important; 
    display: block !important;
    margin: 0 auto !important;
}

/* CATEGORY CARD WRAPPERS - Original Large Look */
.box.item .box-item-image-container,
.category-img-container,
.category-full-img {
    width: 100% !important;
    height: 368px !important; /* +15% from 320px */
    aspect-ratio: auto !important;
    background: #1a1a1a !important; /* Dark background behind category images */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 !important;
    border-radius: 15px 15px 0 0 !important;
}

.product-card .product-image,
.product-card-login-style .product-img-wrapper {
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 !important;
}
