/**
 * Mini-cart worded remove control (1.9.1).
 *
 * Turns WooCommerce's bare × remove link (now carrying "Remove" text via the
 * woocommerce_cart_item_remove_link filter) into a quiet red text link, so it no
 * longer shares a glyph with the mini-cart's close ×. Values chosen to sit
 * unobtrusively in the line-item row; !important because the Breakdance mini-cart
 * and theme style .remove aggressively as a ×-button.
 */
a.ym-tw-remove-link.remove {
	/* WooCommerce/Breakdance render the remove control as a small ×-sized box in
	   the line-item's top corner. The wider "Remove" word needs to be pinned into
	   that corner (the <li> is position:relative) and sized to its text, or it
	   clips against the modal's overflow:hidden edge. */
	position: absolute !important;
	top: 2px !important;
	right: 6px !important;
	display: inline-block !important;
	font-family: 'Jost', system-ui, sans-serif !important;
	font-size: 0.78rem !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.01em !important;
	color: #E84545 !important;
	background: none !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	width: auto !important;
	max-width: none !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	text-align: left !important;
	text-decoration: none !important;
	text-indent: 0 !important;
	overflow: visible !important;
	white-space: nowrap !important;
}

a.ym-tw-remove-link.remove::before,
a.ym-tw-remove-link.remove::after {
	content: none !important; /* kill any theme × pseudo-element */
}

a.ym-tw-remove-link.remove:hover,
a.ym-tw-remove-link.remove:focus {
	color: #E84545 !important;
	text-decoration: underline !important;
	background: none !important;
}
