/* 
 * Standardize product images in the archive grid 
 */
.archive-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
}

/* Maintain cover effect even on hover if theme has secondary images */
.archive-img-wrap .secondary-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Optional: Slight zoom on hover for a premium feel */
.archive-img-wrap:hover img {
    transform: scale(1.05);
}


span.wcfmmp_sold_by_label {
    display: none;
}