.product-grid {
	margin: 0 -11px;
	font-size: 0;
}

.product-grid-item {
	display: inline-block;
	width: 222px;
	padding: 0 11px 22px;
	vertical-align: top;
	font-size: 13px;
	box-sizing: border-box;
}

.product-card {
	display: block;
	background: #fff;
	border: 1px solid #e8eef5;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 1px 6px rgba(0, 108, 188, 0.06);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 108, 188, 0.14);
	border-color: #F9B333;
}

.product-card-thumb {
	display: block;
	width: 200px;
	height: 200px;
	margin: 10px auto 0;
	overflow: hidden;
	background: #f5f8fc;
	border-radius: 6px;
}

.product-card-thumb img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border: 0;
	display: block;
}

.product-card-body {
	padding: 12px 14px 16px;
	text-align: center;
}

.product-card-title {
	display: block;
	color: #333;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.4;
	min-height: 36px;
	max-height: 36px;
	overflow: hidden;
	margin-bottom: 6px;
}

.product-card-meta {
	display: block;
	color: #888;
	font-size: 12px;
	line-height: 1.5;
	height: 18px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.product-card:hover .product-card-title {
	color: #F9B333;
}

.product-empty {
	padding: 40px 20px;
	text-align: center;
	color: #999;
	font-size: 13px;
}

.inner-card-body .pagination {
	padding-top: 10px;
	margin-top: 4px;
	border-top: 1px dashed #e4edf5;
}

.inner-card-body .pagination a {
	color: #006CBC;
	text-decoration: none;
}

.inner-card-body .pagination a:hover {
	color: #F9B333;
}
