/* Target the product category images explicitly based on your grid layout */
.products .product-category a img,
.archive.tax-product_cat ul.products li.product-category a img {
    height: 140px !important;       /* Forces a strict, uniform bounding box height */
    width: 100% !important;         /* Makes sure it scales nicely horizontally */
    object-fit: contain !important; /* Crucial: Prevents any distortion or cropping of custom logos */
    padding: 15px;                 /* Gives the logos breathing room so they don't hug the edges */
    border-radius: 6px;            /* Softens the inner image container corners */
    box-sizing: border-box;        /* Ensures padding doesn't break the height restriction */
    transition: background-color 0.2s ease; /* Smooth transition for hover effects */
}


/* Align the text container uniformly below the locked-height images */
.products .product-category h2, 
.products .product-category .woocommerce-loop-category__title {
    margin-top: 12px !important;
    text-align: center;
}