.product-card__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
    justify-items: center;
	margin: 30px 0;
	row-gap: 30px;
}
@media screen and (max-width: 550px) {
    .product-card__wrapper {
        display: flex;
        flex-direction: column;
    }
}
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
    transition: all 0.3s ease;
    max-width: 200px;
	padding: 10px;
	box-sizing: border-box;
}

.product-card:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
.product-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
	
}
.product-card__image {
    width: 100%;
    height: 100%;
    margin-bottom: -10px;
}
.product-card__image img {
	width: 100%;
}
.product-card__title {
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    margin: 10px 0 !important;
    text-transform: uppercase !important;
	align-self: flex-start;
	min-height: 100px;
	font-family: 'Univers Condensed Bold', sans-serif !important;
	
}

.product-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;	
}

.product-card__price--retail {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: line-through;
    color: #00000069;
	font-family: 'Univers Condensed Bold', sans-serif !important;
}
.product-card__price--discounted {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: black;
	font-family: 'Univers Condensed Bold', sans-serif !important;
	
}
.product-card__price--discounted span {
    color: #a02d2c;
	font-family: 'Univers Condensed Bold', sans-serif !important;
	
}
.product-card__link {
    display: inline-block;
    padding: 10px 0;
    background-color: black;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    color: white;
	font-family: 'Univers Condensed Bold', sans-serif !important;
	
}
.product-card__link:hover {
    background-color: #FFC720;
    color: black;
}