.wishlist {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: 50px 0;
}

.wishlist li {
    list-style: none;
    position: relative;
}

.wishlist li:hover{
    z-index: 10;
}

.wishlist>div img {
    width: 100%;
    border-radius: 5px;
}

.wishlist>div .product__tools_panel img{
    max-width: 15px;
}

.wishlist-item {
    padding: 10px !important;
    margin: 0 !important;
    transition: 0.1s;
}

.wishlist-item:hover {
    transform: scale(1.05);
    z-index: 100;
}

.wishlist-item li.product:hover .product__tools_panel{
    right: 10px;
}

.wishlist-item .product__tools_panel{
    top: 10px;
}

.wishlist-item a.button {
    display: table;
    margin: 0 auto;
    text-decoration: none;
}

.wishlist-item a.button:hover {
    color: #fff !important;
}

.wishlist-item .short-description,
.wishlist-item .add-to-favorites {
    display: none;
}


.wishlist-item>.remove-from-favorites,
.compared-products-table th>.remove-product {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    width: 30px;
    height: 30px;
    padding: 0;
    background: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid #777;
    color: var(--color-text);
    border-radius: 5px;
    z-index: 10;
    transition: 0.1s;
}

.wishlist-item .product-image{
	display: flex;
	width: 100%;
}

.wishlist-item>.remove-from-favorites:hover{
    color: var(--color-main-red);
    transform: scale(1.5);
    box-shadow: 0 0 11px rgba(255, 0, 0, 0.3);
}

.compared-products-table th>.remove-product:hover {
    color: var(--color-main-red);
    transform: scale(1.25);
}

.compared-products-table th>.remove-product:hover i{
    color: var(--color-main-red);    
}

.urartu-wishlist-empty{
	width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 280px;
}

.urartu-wishlist-empty > .urartu-wishlist-empty-title{
    position: relative;
    font-size: 20px;
    top: 0;
    color: var(--color-text);
	font-family: Playfair-italic;
}

.urartu-wishlist-empty .urartu-wishlist-empty-icon{
	font-size: 160px;
    color: rgba(0, 28, 85, 0.2);
}

@media screen and (max-width: 768px) {

    .wishlist {
        grid-template-columns: 1fr 1fr;
    }

    .wishlist>div {
        padding: 0;
        margin: 10px 0;
    }

    .wishlist>div:nth-child(odd) {
        padding-right: 10px;
    }

    .wishlist>div:nth-child(2n) {
        padding-left: 10px;
    }

    .wishlist>div:nth-child(4n) {
        padding: inherit;
    }

}







.action-notification {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    width: auto;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1.2), opacity 0.3s ease;
    border-left: 4px solid #4CAF50; /* По умолчанию цвет для избранного */
}

.action-notification.compare-notification {
    border-left-color: #FF9800; /* Оранжевый для сравнения */
}

.notification-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.notification-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.notification-undo {
    background: none;
    border: none;
    color: #f44336;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
    margin-left: 10px;
}

.notification-timer {
    height: 3px;
    background: rgba(0,0,0,0.1);
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

.timer-inner {
    height: 100%;
    transition: width 0.1s linear;
}

.action-notification.compare-notification .timer-inner {
    background: #FF9800; /* Оранжевый для сравнения */
}