.wishlist-container{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}
.wish-list{
    margin: 90px 0 110px 0;
}

.wish-list-heading{
    margin-bottom: 45px;
}
.eyebrow{
    display: block;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a8a196;
    margin-bottom: 8px;
}
.wish-list-heading h2{
    font-family: 'Cormorant Upright', serif;
    font-size: 46px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    border-bottom: 2px solid #334633;
    padding-bottom: 20px;
}

.wishlist-rows{
    display: flex;
    flex-direction: column;
}

.wishlist-row{
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    align-items: center;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid #ece7de;
    transition: 0.25s ease;
}
.wishlist-row:hover{
    background-color: #faf8f4;
}
.wishlist-row:first-child{
    padding-top: 0;
}

.wr-img{
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0ece4;
    flex-shrink: 0;
}
.wr-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wr-info{
    min-width: 0;
}
.wr-title{
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wr-stock{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 500;
}
.wr-stock i{
    font-size: 7px;
}
.wr-stock.in-stock{
    color: #19B519;
}
.wr-stock.out-stock{
    color: #FF4545;
}

.wr-price{
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.wr-actions{
    display: flex;
    align-items: center;
    gap: 14px;
}
.wr-btn-add{
    background-color: transparent;
    border: 1.5px solid #334633;
    color: #334633;
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 30px;
    white-space: nowrap;
    transition: 0.25s ease;
}
.wr-btn-add:hover{
    background-color: #334633;
    color: #fff;
}
.wr-btn-add.disabled{
    border-color: #ddd;
    color: #b3b3b3;
    cursor: not-allowed;
}
.wr-btn-add.disabled:hover{
    background-color: transparent;
    color: #b3b3b3;
}

.wr-btn-remove{
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #c9c2b6;
    font-size: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}
.wr-btn-remove:hover{
    background-color: rgba(255, 69, 69, 0.1);
    color: #FF4545;
}

@media (max-width: 767px){
    .wishlist-row{
        grid-template-columns: 70px 1fr;
        grid-template-areas:
            "img info"
            "img actions";
        row-gap: 10px;
        padding: 18px 0;
    }
    .wr-img{
        grid-area: img;
        width: 70px;
        height: 70px;
    }
    .wr-info{
        grid-area: info;
    }
    .wr-price{
        display: none;
    }
    .wr-actions{
        grid-area: actions;
        justify-content: space-between;
    }
    .wr-title{
        font-size: 14px;
        white-space: normal;
    }
    .wish-list-heading h2{
        font-size: 32px;
    }
    .wish-list{
        margin: 55px 0 70px 0;
    }
    .wr-btn-add{
        font-size: 10px;
        padding: 9px 16px;
    }
}