/**
 * Used Product Info — ficha técnica (label | valor, largura total).
 */

.mytheme-used-product-info {
	width: 100%;
	box-sizing: border-box;
}

.mytheme-used-product-info__section {
	width: 100%;
}

.mytheme-used-product-info__section + .mytheme-used-product-info__section {
	margin-top: 1rem;
}

.mytheme-used-product-info__section-title {
	margin: 0 0 0.65rem;
	font-size: 1.05rem;
	line-height: 1.3;
	font-weight: 700;
}

.mytheme-used-product-info__spec {
	display: grid;
	grid-template-columns: 1fr !important;
	width: 100%;
	gap: 0;
}

.mytheme-used-product-info__row {
	display: grid;
	grid-template-columns: minmax(120px, 32%) minmax(0, 1fr);
	align-items: center;
	column-gap: 1.25rem;
	width: 100%;
	box-sizing: border-box;
	padding: 0.65rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mytheme-used-product-info__label {
	max-width: none;
	color: #6b7280;
	font-weight: 500;
	font-size: 0.9375rem;
	line-height: 1.4;
	white-space: nowrap;
}

.mytheme-used-product-info__label::after {
	content: ':';
	margin-left: 0.1em;
}

.mytheme-used-product-info__value {
	text-align: right;
	color: #111827;
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.4;
	min-width: 0; 
	word-break: break-word;
}

.mytheme-used-product-info--no-labels .mytheme-used-product-info__value {
	text-align: left;
	width: 100%;
}

.mytheme-used-product-info__notes {
	width: 100%;
	box-sizing: border-box;
}

.mytheme-used-product-info__notes-body {
	display: block;
	text-align: left;
	font-weight: 500;
	white-space: pre-line;
}

.mytheme-used-product-info--layout-grid .mytheme-used-product-info__spec {
	gap: 0 1rem;
}

@media (max-width: 767px) {
	.mytheme-used-product-info__row {
		grid-template-columns: 1fr;
		row-gap: 0.2rem;
	}

	.mytheme-used-product-info__label,
	.mytheme-used-product-info__value {
		text-align: left;
	}
}
