        /* Wishlist Card Styling */
.product__items {
    border: 1px solid #eee;
    padding: 15px;
    position: relative;
    transition: 0.3s;
}
.product__items:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product__items--remove__btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}
.product__items--remove__btn:hover {
    background: #ff4d4d;
    color: #fff;
}

/* Removal Toast Message */
.status-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    display: none;
    z-index: 1000;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}