/**
 * Иконка корзины и бейдж количества в шапке (все страницы).
 */

.header-cart-link__icon-wrap {
	position: relative;
	display: inline-flex;
	flex-shrink: 0;
}

.header-cart-count {
	position: absolute;
	top: -8px;
	right: -10px;
	z-index: 1;
	min-width: 1.125rem;
	height: 1.125rem;
	padding: 0 0.25rem;
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.125rem;
	text-align: center;
	color: #fff;
	background: #dc2626;
	border-radius: 9999px;
	box-sizing: border-box;
}

.header-cart-count:empty,
.header-cart-count[data-count="0"] {
	display: none;
}
