/* Menu cart icon + count badge. Deliberately minimal so it adopts the surrounding
   menu's color/size. The badge hides at 0 items via --empty; the icon stays. */
.cpg-cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
	line-height: 1;
}

.cpg-cart-icon {
	font-size: 1.25em;
	line-height: 1;
}

.cpg-cart-badge {
	position: absolute;
	top: -0.5em;
	right: -0.6em;
	min-width: 1.25em;
	height: 1.25em;
	padding: 0 0.35em;
	box-sizing: border-box;
	border-radius: 0.75em;
	background: #d92d20;
	color: #fff;
	font-size: 0.7em;
	font-weight: 700;
	line-height: 1.25em;
	text-align: center;
}

.cpg-cart-badge--empty {
	display: none;
}
