**Describe the bug** Errors are reported with `MultiIndex.from_product` when using `Index`: ```python import pandas as pd labels = ["a", "b", "c"] index = pd.Index(labels) display(pd.MultiIndex.from_product([labels, labels])) display(pd.MultiIndex.from_product([index, index])) ``` <img width="1205" alt="Image" src="https://github.com/user-attachments/assets/c37f1e85-883d-449e-80fc-ff2a04e7666d" />