/* CSS Document */

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
	width: 100%;
  	height: 100%;
  	object-fit: cover;
}

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

.product-card__image img {
    width: 100%;
  	height: 100%;
  	object-fit: cover;
    height: auto;
    display: block;
}

.product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
}

.product-card__content {
    padding: 10px 0;
}

.product-card__title {
    font-size: 16px;
    margin: 0 0 5px;
}

.product-card__price {
    font-weight: bold;
}