#wishlistContainer{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:15px;
}

.product-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:10px;
    transition:.2s;
}

.product-card:hover{
    box-shadow:0 4px 12px rgba(0,0,0,.12);
}

.product-image{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:10px;
}

.product-card h3{
    font-size:15px;
    font-weight:600;
    margin:10px 0 5px;
    color:#222;
    line-height:1.4;
    height:42px;
    overflow:hidden;
}

.price{
    color:#B12704;
    font-size:18px;
    font-weight:bold;
    margin-bottom:5px;
}

.delivery{
    color:#008000;
    font-size:13px;
    margin-bottom:10px;
}

.wishlist-actions{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.add-cart-btn{
    width:100%;
    height:40px;
    border:none;
    border-radius:20px;
    background:#FFD814;
    color:#111;
    font-weight:600;
    cursor:pointer;
}

.add-cart-btn:hover{
    background:#F7CA00;
}

.remove-btn{
    width:100%;
    height:40px;
    border:1px solid #d5d9d9;
    border-radius:20px;
    background:#fff;
    color:#111;
    font-weight:600;
    cursor:pointer;
}

.remove-btn:hover{
    background:#f7f7f7;
}

.wishlist-size{
    font-size:14px;
    font-weight:600;
    color:#333;
    margin:4px 0 8px;
}