.product-gallery {
    margin: 2rem 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.1rem;
    justify-content: center;
}

.product-gallery a {
    display: inline-block;
    height: 110px;
    width: 110px;
    overflow: hidden;
}

.product-gallery img {
    height: 110px;
    width: 110px;
    object-fit: cover;
    object-position: center;
}

.product-gallery a:hover {
    text-decoration: none;
}