/*Избранное*/

.favourite-icon {
	border: none;
	background: none;
	transition: transform 0.4s ease;
	cursor: pointer;
}


.heart-icon {
	width: 24px;
}

.heart-icon path {
    fill: none;
    stroke-width: 2;
    stroke: #71717A;
}

.favourite-icon.active .heart-icon path {
    fill: #fb923c;
    stroke: #fb923c;
}

.favourites-count {
    background: #0EA5E9;
    border-radius: 200px;
    color: #fff;
    font-size: 10px;
    line-height: 5px;
    padding: 5px 4.5px;
    position: absolute;
    right: -5px;
    top: 0px;
}

@keyframes pulse-stroke {
    0% {
        stroke-dasharray: 0, 100;
    }
    50% {
        stroke-dasharray: 50, 50;
    }
    100% {
        stroke-dasharray: 100, 0;
    }
}


.favourites-products_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 24px;
}

.page-title {
    font-size: 54px;
    line-height: 64px;
}

.favourites-page__head {
    display: flex;
    gap: 12px;
    align-items: flex-end;
	margin-bottom: 24px;
}

.clear-favourites {
    color: #71717A;
    font-size: 18px;
    line-height: 21px;
    border: none;
    background: none;
    cursor: pointer;
    padding-bottom: 8px;
}

.favourites-empty__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fff;
    padding: 80px 24px;
	border-radius: 15px;
}

.favourites-empty__img {
    max-width: 205px;
    object-fit: contain;
}

.favourites-empty__title {
    margin: 24px 0 12px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
}

.favourites-empty__subtitle {
    font-size: 18px;
    line-height: 21px;
}

.favourites-empty__subtitle a{
    color: #0EA5E9;
}