.product-card {
    min-width: 0;
}

.product-card__image,
.product-card__image-link {
    display: block;
}

.product-card__image {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.product-card__image-main,
.product-card__image-hover {
    display: block;
    object-fit: contain;
    transition: opacity 180ms ease, transform 220ms ease;
}

.product-card__image-hover {
    opacity: 0;
}

.product-card--has-hover-image:hover .product-card__image-main,
.product-card--has-hover-image:focus-within .product-card__image-main {
    opacity: 0;
}

.product-card--has-hover-image:hover .product-card__image-hover,
.product-card--has-hover-image:focus-within .product-card__image-hover {
    opacity: 1;
}

.product-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card__details {
    text-decoration: none;
}
