.gpc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.gpc-card {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease;
}

.gpc-card:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.gpc-card-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	cursor: pointer;
	background: #f4f4f4;
}

.gpc-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gpc-no-image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #999;
	font-size: 13px;
}

.gpc-card-body {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.gpc-card-title {
	margin: 0;
	font-size: 16px;
}

.gpc-card-price {
	margin: 0;
	font-weight: 600;
	color: #333;
}

.gpc-card-cta {
	margin-top: auto;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.gpc-btn {
	flex: 1;
	text-align: center;
	padding: 9px 12px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.gpc-btn-wa {
	background: #25d366;
	color: #fff;
}

.gpc-btn-wa:hover {
	background: #1ebe57;
	color: #fff;
}

.gpc-btn-call {
	background: #2271b1;
	color: #fff;
}

.gpc-btn-call:hover {
	background: #175a8e;
	color: #fff;
}

/* Lightbox */
.gpc-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

.gpc-lightbox-img {
	max-width: 90vw;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 4px;
}

.gpc-lightbox-close,
.gpc-lightbox-prev,
.gpc-lightbox-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: none;
	font-size: 22px;
	cursor: pointer;
	padding: 10px 14px;
	border-radius: 50%;
}

.gpc-lightbox-close {
	top: 20px;
	right: 20px;
}

.gpc-lightbox-prev {
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.gpc-lightbox-next {
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
