.haricar-product-lists {
	width: 100%;
	padding: 20px 0 40px;
	background: #fff;
	box-sizing: border-box;
}

.haricar-product-lists-container {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 55px;
	box-sizing: border-box;
}


/* =========================================================
   COLUMN
========================================================= */

.haricar-product-list-column {
	width: 100%;
	min-width: 0;
}


/* =========================================================
   HEADING
========================================================= */

.haricar-product-list-heading {
	margin: 0 0 12px;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: #292929;
	text-transform: uppercase;
}


/* =========================================================
   PRODUCTS
========================================================= */

.haricar-product-list-products {
	width: 100%;
}


/* =========================================================
   PRODUCT ITEM
========================================================= */

.haricar-product-list-item {
	width: 100%;
	min-height: 77px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 8px 0;
	border-bottom: 1px solid #dedede;
	box-sizing: border-box;
}


/* =========================================================
   IMAGE
========================================================= */

.haricar-product-list-thumb {
	flex: 0 0 65px;
	width: 65px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
}


.haricar-product-list-thumb a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}


.haricar-product-list-image {
	display: block !important;
	width: 65px !important;
	height: 60px !important;
	object-fit: contain !important;
	object-position: center center;
}


/* =========================================================
   DETAILS
========================================================= */

.haricar-product-list-details {
	flex: 1 1 auto;
	min-width: 0;
}


/* =========================================================
   TITLE
========================================================= */

.haricar-product-list-name {
	margin: 0 0 7px;
	padding: 0;
	font-family: 'poppins', sans-serif;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 500;
	color: #333333;
}


.haricar-product-list-name a {
	color: #333333;
	text-decoration: none;
}


.haricar-product-list-name a:hover {
	color: #5a170e;
}


/* =========================================================
   PRICE
========================================================= */

.haricar-product-list-price {
	margin: 0;
	padding: 0;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 700;
	color: #5a170e;
}


.haricar-product-list-price del {
	margin-right: 3px;
	color: #aaa;
	font-weight: 400;
}


.haricar-product-list-price ins {
	color: #5a170e;
	font-weight: 700;
	text-decoration: none;
}


.haricar-product-list-price .woocommerce-Price-amount {
	white-space: nowrap;
}


/* =========================================================
   EMPTY
========================================================= */

.haricar-product-list-empty {
	padding: 20px 0;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: #888;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

	.haricar-product-lists-container {
		grid-template-columns: 1fr;
		gap: 35px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {

	.haricar-product-lists {
		padding: 15px 0 30px;
	}


	.haricar-product-list-heading {
		font-size: 21px;
		margin-bottom: 10px;
	}


	.haricar-product-list-item {
		min-height: 72px;
		gap: 12px;
	}


	.haricar-product-list-thumb {
		flex-basis: 60px;
		width: 60px;
		height: 55px;
	}


	.haricar-product-list-image {
		width: 60px !important;
		height: 55px !important;
	}


	.haricar-product-list-name {
		font-size: 14px;
	}


	.haricar-product-list-price {
		font-size: 12px;
	}

}