a.product-card {
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 8%), 0 0 0 1px rgb(0 0 0 / 4%);
    display: block;
    color: #48486c;
    text-align: left;
    text-decoration: none;
    transition: 0.2s transform;
    flex: 1;
}

a.product-card:hover {
    transform: scale(1.01);
}

.product-card .product-card-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
}

.product-card .product-card-image .glyphicon {
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 8%), 0 0 0 1px rgb(0 0 0 / 4%);
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

.product-card .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.product-card .product-card-info {
    padding: 5px;
}

.product-card .product-card-name {
    font-weight:bold;
    text-overflow: ellipsis; 
    overflow: hidden; 
    white-space: nowrap;
    margin: 5px 0;
    text-align:left;
}

.product-card .subtle-text {
    opacity: 0.7;
    font-size: 0.95em;
}

.product-card .glyphicon {
    margin: 0 4px;
}

.product-card .glyphicon-star {
    color: #fd6d6d;
}

/* Mobile */

@media screen and (max-width: 767px) {
}