.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wishlist-item {
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
   position: relative;
}
.remove-from-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
}