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

.favourite-icon {
    border: none;
    background: none;
    transition: transform 0.4s ease;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    padding: 24px 0 24px 24px;
}

.heart-icon {
	width: 24px;
}



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

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

.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;
}


.favourites-title {
    font-size: 48px;
    line-height: 120%;
    font-weight: 600;
    text-align: left;
    color: #1E40AF;
    letter-spacing: 0.8px;
}

.favourites-login-notice {
	display: none; 
	position: fixed;
    bottom: 32px;
    left: 32px;
    background: #1e40af;
    color: #fff;
    padding: 16px 18px;
    border-radius: 8px;
    z-index: 9999;
    font-size: 16px;
}

.favourites-login-notice a {
    color: #fff;
    text-decoration: underline;
}


.single-product .favourite-icon {
    background-color: #ffffffdb;
    height: 48px;
    width: 48px;
    padding: 0;
    right: 24px;
    top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.single-product .favourite-icon.active {
    background-color: #fff;
}

@media screen and (max-width: 768px) {
	.favourite-icon {
		top: 276px;
		padding: 12px;
	}
	
	.favourites-page__head {
		margin-bottom: 8px;
	}
	
	.clear-favourites {
		font-size: 14px;
		padding: 0;
	}
	
	 .favourites-title {
        font-size: 20px;
        letter-spacing: 0.4px;
    }
	
	.favourites-login-notice {
		bottom: 0;
		left: 0;
		width: 100%;
		margin: 0 auto;
		text-align: center;
		font-size: 16px;
		border-radius: 15px 15px 0 0;
		padding: 16px 8px;
	}
	
	
	.single-product .favourite-icon {
		height: 40px;
		width: 40px;
		right: 16px;
		top: 16px;
	}
}