Consider two independent random variables, $X$ and $Y$. Both follow a Pareto distribution with minimum value $1$ and shape parameters $\alpha_X$ and $\alpha_Y$, respectively. Hence, the PDFs are given by
\begin{align*} f_X(x) &= \alpha_X ~ x^{-\alpha_X-1} \\ f_Y(y) &= \alpha_Y ~ y^{-\alpha_Y-1}. \end{align*}
I need to find the distribution of $Z$, which is the product of $X$ and $Y$: $Z \equiv XY$.
What I've tried: The distribution of $Z$ seems to be a product distribution and according to the linked page the PDF of $Z$ should be
\begin{align*} f_{Z}(z)=\int _{{-\infty }}^{{\infty }}f_{X}\left(x\right)f_{Y}\left(z/x\right){\frac {1}{|x|}}\,dx. \end{align*}
However, trying to use this formula turned out to be problematic due to the following reasons (or due to my inexperience):
First, integrating from $-\infty$ to $\infty$ seems problematic if my distribution has a minimum value of $1$. I therefore replaced the lower bound of the integral by $1$ (should I?). Besides, if the lower bound is $1$, then using the absolute value of $x$ seems superfluous. Therefore, after plugging in my PDFs from above and integrating, I get:
\begin{align*} f_Z(z) = \alpha_X \alpha_Y z^{-\alpha_Y-1} \left[ \frac{1}{-\alpha_X+\alpha_Y} x^{-\alpha_X+\alpha_Y} \right]_1^\infty. \end{align*}
This raises the second issue: I expected the terms where I plug in $\infty$ to vanish. This however only happens if $\alpha_X > \alpha_Y$ (negative exponent of $x$). I do not see any plausible reason why such a constraint should be necessary (after all, $Z= XY$; both random variables enter $Z$ "the same way", therefore I expect a "symmetric" result). Anyway, going with this assumption I get:
\begin{align*} f_Z(z) = \frac{\alpha_X \alpha_Y}{\alpha_X - \alpha_Y} z^{-\alpha_Y-1} \end{align*}
I suspect this to be wrong due to my aforementioned concerns about the limit of the integral and the assumption on the shape parameters. Moreover, there is this very related question where a commentator points out that $\frac{z}{x}$ must be larger than the distribution's minimum value ($1$ in my case). This is clearly violated for sufficiently large $x$.
On the other hand, I think that the general approach is valid. The formula an the Wikipedia page is apparently correct (I even checked the original source (p. 140)). The formula suggested in this question leads me to the same result (after differentiating the resulting CDF – but subject to the same limitations as my initial approach).
Therefore, my question is:
What is the distribution of $Z$ and what is wrong with my initial approach?