.title {
	font-weight: 700;
	font-size: 1.5rem;
	color: #222222;
	padding: 4px 0;
}
.product-row-wrapper {
	margin-bottom: 1rem;
}
.product-card-item {
    display: inline-block;
    padding: 0.85rem;
    width: 100%;
    background: #FFFFFF;
	border: 1px solid #FBFBFB;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	margin-top: 1rem;
}
.product-image-block {
	display: flex;
	background: #FFF;
	border-radius: 12px;
	aspect-ratio: 1;
	justify-content: center;
	align-items: center;
	position: relative;
}
.favorite-icon {
   	cursor: pointer;
   	z-index: 9;
   	font-size: x-large;
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #ede9e9;
	padding: 0.3rem;
}
.favorite-icon.inactive {
	color: #222222;
}
.favorite-icon.active {
	color:red;
}
.product-image-block img {
	max-width: 100%;
	height: auto;
	max-height: 190px;
	object-fit: contain;
	mix-blend-mode: multiply;
}
.truncate {
    text-overflow: ellipsis;
   	overflow: hidden;
   	white-space: nowrap;
    padding: 3px 0px;	
}
.product-name {
	color: #f15e22;
    font-size: 1rem;
    font-weight: 700;
}
.product-type-name {
    height: 25.5px;
    font-size: 0.8rem;
}
.instock-text {
	color: #FFC43F;
    font-size: 0.8rem;
    height: 25.5px;
}
.product-price {
	justify-content: end;
}
.prev-price {	
	font-size: 12px;
	min-height: 18px;
	color: #d50e0e;
	text-decoration: line-through;
}
.current-price {
	font-size: 0.9rem;
}
.add-to-cart-area {
	display: flex;
	margin-top:10px;
	justify-content: space-between;
}
.cart-text {
	margin-right: 7px;
}
.addtocart-button {
    font-size: 13px;
    color: #fff;
    border: none;
    background: #f15e22;
    border-radius: 30px;
    min-width: 100px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 8px;
}
@media (min-width: 992px), (min-width: 1200px) {
	.product-row-wrapper .col-lg-2 {
	    -ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}
@media (max-width: 992px), (max-width: 1200px) {
	.addtocart-button {
	    border-radius: 50% !important;
	    width: 28px !important;
	    height: 28px !important;
	    min-width: unset !important;
	}
	.product-image-block img {
		max-height: 140px;
	}
}