.wishlist-title h2{
    font-size: 48px;
    line-height: 48px;
    color: #1A1A1A;
    font-weight: 700 !important;
}
.wishlist-title.wishlist-title-with-form h2:hover {
  background: transparent;
}
.custom-wishlist-wrapper{
    display:flex;
    flex-direction:column;
    gap:15px;
    background:#fff;
    padding: 25px;
}
.custom-wishlist-card{
    display:flex;
    align-items:center;
    background:#F9FAFB;
    border:1px solid #E5E7EB;
    border-radius:8px;
    padding:15px;
    justify-content: space-between;
}
.wishlist-remove a{
    color:#e74c3c;
    font-size:22px;
    text-decoration:none;
}
.woocommerce .wishlist-remove a.remove:hover {
  background: none;
}
.wishlistLeft{
    display:flex;
    flex-direction:column;
    height: 140px;
    justify-content: space-between;
    align-items: end;
}
.wishlist-cart{
   width: 160px;
   padding: 12px 32px;
   text-align: left;
   position: relative;
   font-size: 16px;
   line-height: 24px;
   color: #1A1A1A;
   font-weight: 700;
   background:#e5bb2c;
   border-radius:8px;
   transition: all ease-in-out 0.5s;
}
.wishlist-cart::after {
  content: '';
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 16px;
  background: url(../images/cart1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wishlist-cart a{
    font-weight: 700 !important;
    color: #1A1A1A;
}
.wishlist-cart:hover{
    opacity: 0.7;
}
.wishlist-info{
    flex:1;
    text-align:right;
    padding: 0 25px;
}
.wishlist-info h3 a{
    padding-bottom: 5px;
    font-size:20px;
    font-weight:700 !important;
    line-height: 28px;
    display: block;
    color: #1A1A1A;
    text-decoration:none;
}
.wishlist-sku{
    color:#4B5563;
    font-size:16px;
    line-height: 24px;
    margin-bottom:8px;
}
.wishlist-price{
    font-size:30px;
    line-height: 36px;
    font-weight:700;
    margin-top:15px;
    color: #1A1A1A;
}
.wishlist-price ins{
    background: none;
}
.wishlist-price del{
    font-size:16px;
    line-height: 24px;
    font-weight:400;
    color: #9CA3AF;
    text-decoration: line-through;
}
.wishlist-stock{
    display: inline-block;
    padding:4px 12px;
    border-radius:20px;
    font-size:14px;
    line-height: 20px;
}
.wishlist-stock.in{
    background:#DCFCE7;
    color:#15803D;
}
.wishlist-stock.out{
    background:#f8d7da;
    color:#EF4444;
}
.wishlist-image{
    width: 130px;
    text-align: center;
    height: 130px;
}
.wishlist-image a{
    display: block;
    width: 100%;
    height: 100%;
}
.wishlist-image img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
@media(max-width: 767px){
    .wishlist-title h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .custom-wishlist-wrapper{
        padding: 15px;
    }
    .custom-wishlist-card{
        display:grid;
        grid-template-columns:90px 1fr;
        grid-template-areas:
            "image info"
            "remove cart";
        gap:12px;
        padding:15px;
        position:relative;
        align-items:center;
    }

    .wishlistLeft{
        display:contents;
    }

    .wishlist-remove{
        grid-area:remove;
        text-align:left;
        width:100%;
    }

    .wishlist-image{
        grid-area:image;
        width:90px;
    }

    .wishlist-image img{
        width:100%;
        height:auto;
    }

    .wishlist-info{
        grid-area:info;
        text-align:right;
        padding:0;
    }

    .wishlist-price{
        grid-area:price;
        margin:0;
        font-size:24px;
        font-weight:700;
        text-align:right;
    }

    .wishlist-cart{
        grid-area:cart;
        text-align:left;
    }

    .wishlist-cart .button,
    .wishlist-cart a.button{
        width:100%;
        min-width:120px;
        text-align:center;
    }

    .wishlist-info h3{
        font-size:16px;
        margin-bottom:8px;
    }

    .wishlist-sku,
    .wishlist-date{
        font-size:12px;
    }
}