/* ── Productos Página ────────────────────────────────────────────────────── */

.nole-productos-pag {
	width: 100%;
}

.nole-productos-pag__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat( var( --nole-cols, 3 ), 1fr );
	gap: 24px;
}

/* Responsive */
@media ( max-width: 900px ) {
	.nole-productos-pag__grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media ( max-width: 540px ) {
	.nole-productos-pag__grid {
		grid-template-columns: 1fr;
	}
}

.nole-productos-pag__item {
	margin: 0;
	padding: 0;
}

.nole-productos-pag__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s ease;
}

.nole-productos-pag__card:hover {
	box-shadow: 0 4px 16px rgba( 0, 0, 0, 0.10 );
}

.nole-productos-pag__img-link {
	display: block;
	line-height: 0;
	overflow: hidden;
	height: 220px;
	flex-shrink: 0;
}

.nole-productos-pag__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.nole-productos-pag__card:hover .nole-productos-pag__img {
	transform: scale( 1.05 );
	/*object-fit: scale-down;*/

}

.nole-productos-pag__img-placeholder {
	width: 100%;
	height: 100%;
	background: #f0f0f0;
}

.nole-productos-pag__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px;
	gap: 8px;
}

.nole-productos-pag__card .nole-productos-pag__title {
	font-size: 1rem !important;
	font-weight: 600;
	margin: 0;
	line-height: 1.3;
}

.nole-productos-pag__card .nole-productos-pag__title a {
	color: inherit;
	text-decoration: none;
}

.nole-productos-pag__card .nole-productos-pag__title a:hover {
	text-decoration: underline;
}

.nole-productos-pag__price {
	font-size: 0.95rem;
	color: #555;
}

.nole-productos-pag__price .woocommerce-Price-amount {
	font-weight: 700;
	color: #333;
}

.nole-productos-pag__btn {
	display: inline-block;
	margin-top: auto;
	padding: 8px 16px;
	background: #333;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 3px;
	text-align: center;
	transition: background 0.2s ease;
	align-self: flex-start;
}

.nole-productos-pag__btn:hover {
	background: #555;
	color: #fff;
}

/* ── Placeholder en el editor ────────────────────────────────────────────── */

.nole-productos-pag-editor__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	background: #f0f0f0;
	border: 2px dashed #ccc;
	border-radius: 4px;
	color: #555;
	text-align: center;
}

.nole-productos-pag-editor__placeholder .dashicons {
	font-size: 40px;
	width: 40px;
	height: 40px;
	margin-bottom: 8px;
}
