.header__favorites {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 60px;
	color: #000;
	text-decoration: none;
	transition: color 0.3s ease;
}

.header__favorites:hover,
.header__favorites:focus {
	color: #F63F95;
	text-decoration: none;
}

.header__favorites-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.header__favorites-icon svg {
	display: block;
}

.header__favorites .count_favorites {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: #F63F95;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	line-height: 16px;
	text-align: center;
}

.header__favorites .count_favorites:empty,
.header__favorites .count_favorites[data-count="0"] {
	display: none;
}

.header__favorites-text {
	font-size: 12px;
	line-height: 1.2;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
}

@media (max-width: 1500px) {
	.header__favorites {
		min-width: 50px;
	}

	.header__favorites-text {
		font-size: 11px;
	}
}

@media (max-width: 991px) {
	.header__favorites-text {
		display: none;
	}
}

.favorites-empty-message {
	margin: 40px 0;
	text-align: center;
	font-size: 18px;
	color: #666;
}
