/*
 * WPM Cart Link — header cart icon with a red item-count badge and the live total.
 * Output of the [wpm_cart_link] shortcode (see class-wpm-cart-link.php).
 * Colours inherit from the header (currentColor); only the badge is a fixed red.
 */

.wpm-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	text-decoration: none;
	color: inherit;
	line-height: 1;
}

.wpm-cart-link:hover,
.wpm-cart-link:focus {
	color: inherit;
	text-decoration: none;
}

.wpm-cart-link__icon {
	position: relative;
	display: inline-flex;
}

.wpm-cart-link__svg {
	display: block;
}

.wpm-cart-link__badge {
	position: absolute;
	top: -7px;
	right: -9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	box-sizing: border-box;
	border-radius: 999px;
	background-color: var(--accent);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.wpm-cart-link__badge--empty {
	display: none;
}

.wpm-cart-link__total {
	font-weight: 600;
}
