.product-quickview .jl-quickview-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px 10px;
	margin: 22px 0 6px;
	padding: 16px 0 0;
	border-top: 1px solid rgba(179, 160, 124, 0.32);
	max-width: 430px;
}

.product-quickview .jl-quickview-spec {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
	padding: 9px 11px;
	background: #faf8f3;
	border: 1px solid rgba(179, 160, 124, 0.22);
}

.product-quickview .jl-quickview-spec__label {
	color: #8f7d5c;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.1;
	text-transform: uppercase;
	white-space: nowrap;
}

.product-quickview .jl-quickview-spec__value {
	color: #2d2924;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	min-width: 0;
	overflow-wrap: anywhere;
	text-align: right;
}

@media (max-width: 767px) {
	.product-quickview .jl-quickview-specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 18px;
	}

	.product-quickview .jl-quickview-spec {
		padding: 8px 10px;
	}
}

/* 1 columna en pantallas muy pequeñas — evita texto comprimido */
@media (max-width: 420px) {
	.product-quickview .jl-quickview-specs {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.product-quickview .jl-quickview-spec {
		display: flex;
		justify-content: space-between;
	}

	.product-quickview .jl-quickview-spec__value {
		text-align: right;
	}
}
