.product-items {
	margin: 0 -1%;
}

.product-items.col-4 .item {
	width: 23%;
}

.product-items .item {
	width: 31.3%;
	margin: 0 1% 30px;
	padding: 15px;
	border: 1px solid #92b6c7;
	background-color: #fff;
	position: relative;
}

.product-items .product-image {
	margin-bottom: 10px;
/* 	padding: 10px; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-items .product-image img {
	object-fit: contain;
	aspect-ratio: 3 / 2;
	width: 100%;
	transition: 0.3s;
}

.product-gallery {
	position: relative;
}

.product-gallery .product-label,
.product-items .product-label {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 5px 10px;
	font-weight: 700;
	z-index: 999;
}

.product-gallery .product-label.new,
.product-items .product-label.new {
	background-color: #85B552;
	color: #fff;
}

.product-gallery .product-label.sale,
.product-items .product-label.sale {
	background-color: #D25A5A;
	color: #fff;
}

.product-items .item .product-title h4 {
	color:#333;
	transition: 0.3s;
}

.product-items .item:hover .product-title h4 {
	color:#688ea5;
}

.product-items .item:hover .product-image img {
	transform: scale(102%);
}

.product-items .item .product-price{
	color:#688ea5;
	font-size: 20px;
	margin: 10px 0;
	font-weight: 700;
}

.product-items .item .product-price del {
	display: block;
	width: 100%;
	font-size: 16px;
	color: #9D9D9D;
}

.product-items .item .product-price > span.vat {
	font-size: 14px;
	margin: 0;
	font-weight: 400;
}

.product-items .item .product-cat a {
	color:#333;
	font-size: 14px;
	text-decoration: underline;
}

.custom-pagination {
	width: 100%;
	margin-top: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.custom-pagination .page-numbers {
	display: inline-block;
	margin: 0 5px;
	padding: 8px 12px;
	color: #92b6c7;
	border: 1px solid #92b6c7;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
}

.custom-pagination .page-numbers:hover {
	background-color: #92b6c7;
	color: white;
}

.custom-pagination .current {
	background-color: #92b6c7;
	color: white;
	border-color: #92b6c7;
}

.product-count {
	font-size: 18px;
	font-weight: 500;
	color: #92b6c7;
	margin-bottom: 20px;
}

@media only screen and (max-width: 880px) {
	.product-items.col-4 .item,
	.product-items .item {
		width: 48%;
	}
}

@media only screen and (max-width: 767px) {
	.product-items.col-4 .item,
	.product-items .item {
		width: 98%;
	}
}