/* === Product Gallery Widget === */

.pg-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px;
}

.pg-item {
	overflow: hidden;
	position: relative;
}

.pg-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Editor placeholder */
.pg-placeholder {
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
}

.pg-placeholder span {
	color: #999;
	font-size: 14px;
}
