/* ── Product Grid Widget ── */
.pg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 20px;
	row-gap: 30px;
}

/* Card */
.pg-card {
	display: block;
	text-decoration: none;
}

/* Image wrapper */
.pg-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background-color: #f5f5f5;
}

.pg-image img.pg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.pg-card:hover .pg-img {
	transform: scale(1.05);
}

/* Title */
.pg-title {
	margin: 10px 0 0;
	font-size: 15px;
	font-weight: 400;
	color: #333333;
	line-height: 1.4;
	transition: color .2s;
}

/* Pagination */
.pg-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 40px;
}

.pg-pagination a,
.pg-pagination span {
	display: inline-block;
	padding: 6px 12px;
	font-size: 16px;
	font-weight: 500;
	color: #1B2A4A;
	text-decoration: none;
	transition: color .2s;
}

.pg-pagination a:hover {
	color: #cc0000;
}

.pg-pagination .current {
	color: #cc0000;
	font-weight: 600;
}

.pg-pagination .dots {
	color: #1B2A4A;
	letter-spacing: 2px;
}
