/* ==========================================================================
   CATEGORY / LISTING PAGE - PRODUCT CARD IMAGE LAYOUT
   ========================================================================== */

/* Product card image container */
.product-item .product-image-container,
.product-item-info .product-image-photo-wrapper {
    position: relative !important;
    padding: 1.5rem !important;
    border: 1.5px solid #d5d5d5 !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Category grid image scaling */
.product-item img.product-image-photo {
    scale: 1.15 !important;
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* Fallback for browsers without standalone CSS scale support */
@supports not (scale: 1) {
    .product-item img.product-image-photo {
        transform: scale(1.15) !important;
        transform-origin: center !important;
    }
}