/* Product Image Fix */
.seller_image_box figure {
    height: 250px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.seller_image_box figure img {
    height: 100%;
    width: 100%;
    object-fit: contain; /* Prevents stretching */
    padding: 10px;
}
