/* Custom Homepage Styles */

/*********************************
Popular Products Section
*********************************/

.product_grid
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.product_item
{
	width: 245px;
	box-sizing: border-box;
	padding: 15px;
	position: static !important;
	left: 0 !important;
	background: #FFFFFF;
	cursor: pointer;
	padding-top: 40px;
	z-index: 0;
	height: auto;
	border-radius: 8px;
	box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
	margin: 0 5px 50px 5px;
}

.product_image
{
	height: 240px;
	overflow: hidden;
	text-align: center;
}

.product_image img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product_content
{
	position: relative !important;
	top: auto !important;
	left: auto !important;
	margin-top: 15px !important;
	width: 100% !important;
	display: block !important;
	padding: 0 10px 10px 10px;
}

.product_price
{
	font-size: 14px !important;
}

.product_name div a
{
	white-space: normal !important;
}

.product_fav
{
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	color: #ccc;
}

.product_marks
{
	position: absolute;
	top: 10px;
	left: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.product_mark
{
	background: #ff6b6b;
	color: white;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	margin-bottom: 2px;
}

@media (max-width: 768px)
{
	.product_item
	{
		width: 50%;
	}
}

@media (max-width: 480px)
{
	.product_item
	{
		width: 100%;
	}
}
