/**
 * Native SKU / product-code reference display (PDP upper area + cart line items).
 * Subtle, factual, easy to read and copy — never a giant badge.
 *
 * @package Tyreshop
 */

/* PDP — quick reference under the title/spec chips, above the price. */
.pdp__sku{
	margin: -.15rem 0 .95rem;
	font-size: .82rem;
	line-height: 1.3;
	color: var(--ink-600, #5b6472);
	letter-spacing: .01em;
}
.pdp__sku .pdp__sku-code{
	font-weight: var(--fw-semibold, 600);
	color: var(--ink-800, #263244);
	-webkit-user-select: all;
	user-select: all;            /* one click/tap selects the whole code to copy */
}

/* Cart line item — small line beneath the product name. */
.ts-citem__sku{
	display: block;
	margin-top: .2rem;
	font-size: .78rem;
	line-height: 1.3;
	color: var(--ink-600, #5b6472);
}
.ts-citem__sku .ts-citem__sku-code{
	font-weight: var(--fw-semibold, 600);
	color: var(--ink-800, #263244);
	-webkit-user-select: all;
	user-select: all;
}

@media (max-width: 600px){
	.pdp__sku{ font-size: .8rem; }
	.ts-citem__sku{ font-size: .75rem; }
}

/* Checkout review line item. */
.ts-oitem__sku{
	display: block;
	margin-top: .15rem;
	font-size: .76rem;
	color: var(--ink-600, #5b6472);
}
