.pl-6661e788-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	transition: opacity 0.3s ease;
}

.pl-6661e788-item {
	text-align: center;
	margin-bottom: 20px;
}

.pl-6661e788-img-wrap {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
	border-radius: 4px;
}

.pl-6661e788-img-wrap img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
	display: block;
}

.pl-6661e788-item:hover .pl-6661e788-img-wrap img {
	transform: scale(1.05);
}

.pl-6661e788-add-to-cart {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	color: #333;
	padding: 10px;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pl-6661e788-item:hover .pl-6661e788-add-to-cart {
	opacity: 1;
}

.pl-6661e788-title {
	font-size: 16px;
	margin: 0 0 10px;
}

.pl-6661e788-title a {
	color: inherit;
	text-decoration: none;
}

.pl-6661e788-price {
	font-weight: bold;
	color: #666;
}

.pl-6661e788-pagination {
	margin-top: 30px;
	text-align: center;
}

.pl-6661e788-pagination .page-numbers {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 5px;
	background: #f1f1f1;
	color: #333;
	text-decoration: none;
	border-radius: 3px;
	cursor: pointer;
}

.pl-6661e788-pagination .page-numbers.current {
	background: #333;
	color: #fff;
}