.ppg-grid {
	--ppg-cols: 3;
	--ppg-gap: 28px;
	display: grid;
	grid-template-columns: repeat(var(--ppg-cols), 1fr);
	gap: var(--ppg-gap);
	width: 100%;
	box-sizing: border-box;
}

.ppg-card {
	display: flex;
	flex-direction: column;
	background-color: #F2ECE1;
	border-radius: 24px;
	overflow: hidden;
	box-sizing: border-box;
	height: 100%;
}

.ppg-image-wrap {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.ppg-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.ppg-image-wrap:hover .ppg-image {
	transform: scale(1.08);
}

.ppg-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background-color: #C97C4B;
	color: #FFFFFF;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
	padding: 8px 14px;
	border-radius: 999px;
	z-index: 2;
}

.ppg-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 26px;
	flex-grow: 1;
	box-sizing: border-box;
}

.ppg-eyebrow {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #8CA48E;
	margin: 0 0 10px;
}

.ppg-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.25;
	color: #1F2A20;
	margin: 0 0 16px;
}

.ppg-title a {
	color: inherit;
	text-decoration: none;
}

.ppg-title a:hover {
	text-decoration: underline;
}

.ppg-price {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 26px;
	color: #1F2A20;
	margin: 0 0 20px;
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.ppg-price ins {
	text-decoration: none;
	color: #1F2A20;
}

.ppg-price del {
	color: #A79E92;
	font-size: 16px;
	font-weight: 500;
	opacity: 1;
}

.ppg-button {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	background-color: #16241C;
	color: #FFFFFF;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 1px solid #16241C;
	border-radius: 30px;
	padding: 14px 20px;
	margin-top: auto;
	transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	cursor: pointer;
}

.ppg-button:hover {
	background-color: #28402F;
	border-color: #28402F;
	color: #FFFFFF;
}

.ppg-button.loading {
	opacity: 0.6;
	pointer-events: none;
}

.ppg-button.added::after {
	font-family: 'eicons';
	content: "\e91b";
	margin-left: 8px;
}

/* Mobile: ajustes de tipografia. Las columnas por dispositivo las controla
   el panel de Elementor (Layout > Columnas) via la variable --ppg-cols. */
@media (max-width: 767px) {
	.ppg-title {
		font-size: 20px;
	}
	.ppg-price {
		font-size: 22px;
	}
	.ppg-content {
		padding: 18px;
	}
}
