/**
 * Product short description — Shopify-style readability on single product and shop loop.
 * Targets WooCommerce short description output for proper typography and spacing.
 */

/* Single product page: short description block */
.woocommerce-product-details__short-description,
.sj-product-short-description {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #444;
	margin: 0 0 1rem 0;
	padding: 0;
	max-width: 42em;
}

.woocommerce-product-details__short-description p,
.sj-product-short-description p {
	margin: 0 0 0.5em 0;
}

.woocommerce-product-details__short-description p:last-child,
.sj-product-short-description p:last-child {
	margin-bottom: 0;
}

.woocommerce-product-details__short-description ul,
.woocommerce-product-details__short-description ol,
.sj-product-short-description ul,
.sj-product-short-description ol {
	margin: 0.5em 0 0.75em 1.25em;
	padding: 0;
}

.woocommerce-product-details__short-description li,
.sj-product-short-description li {
	margin-bottom: 0.25em;
}

.woocommerce-product-details__short-description strong,
.sj-product-short-description strong {
	font-weight: 600;
	color: #222;
}

/* Shop loop: product excerpt snippet */
.woocommerce-loop-product__short-description,
.products .product .woocommerce-loop-product__short-description {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #555;
	margin: 0.35em 0 0.5em 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Product label–style net weight (single product): bold, clear, like a product label */
.sj-product-label-net-weight {
	display: block;
	margin: 1rem 0 0 0;
	padding: 0.6rem 0.75rem;
	background: #f8f8f8;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-size: 0.9375rem;
	line-height: 1.4;
	color: #222;
	max-width: 20em;
}
.sj-product-label-net-weight__label {
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #333;
}
.sj-product-label-net-weight__value {
	font-weight: 700;
	font-size: 1.0625rem;
	color: #111;
}
