/**
 * Material attribute in the "Additional information" tab: make swatches archive-linked,
 * and render swatchless materials (Metal/Plastic on lid accessories) as readable text.
 * Companion to includes/pdp-material-archive-link.php (#660 follow-up).
 */

/* The archive link wraps YITH's swatch (img or color span) without changing its box. */
.woocommerce-product-attributes .pp-material-link {
	display: inline-block;
	line-height: 0;
	text-decoration: none;
	border: 0;
}

.woocommerce-product-attributes .pp-material-link:hover {
	opacity: 0.85;
}

/* Text fallback for materials with no swatch (Metal, Plastic): show the name, not a box. */
.woocommerce-product-attributes .yith_wccl_value.pp-material-text {
	display: inline;
	width: auto;
	min-width: 0;
	height: auto;
	line-height: 1.4;
	border: 0;
	background: none;
	overflow: visible;
	font-size: 14px;
	color: inherit;
}

.woocommerce-product-attributes .pp-material-link .pp-material-text {
	text-decoration: underline;
}
