Clustered column store index can be rebuilt if you have a lot of deleted rows:
ALTER INDEX cci ON Products
REBUILD PARTITION = ALL
Rebuilding CLUSTERED COLUMNSTORE will "reload" data from the current table into new one and apply compression again, remove deleted rows, etc.
You can rebuild one or more partitions.