diff --git a/src/private/catalogs/products/ProductCollections.jsx b/src/private/catalogs/products/ProductCollections.jsx
index b8cf900..0f7e065 100644
--- a/src/private/catalogs/products/ProductCollections.jsx
+++ b/src/private/catalogs/products/ProductCollections.jsx
@@ -3,7 +3,7 @@ import { useEffect, useMemo, useState } from 'react';
 import { DataGrid } from '@mui/x-data-grid';
 import {
   Typography, Button, Dialog, DialogTitle, DialogContent,
-  IconButton, Box, Tooltip, ToggleButtonGroup, ToggleButton
+  IconButton, Box, ToggleButtonGroup, ToggleButton
 } from '@mui/material';
 import EditRoundedIcon from '@mui/icons-material/EditRounded';
 import DeleteRoundedIcon from '@mui/icons-material/DeleteRounded';
@@ -174,7 +174,46 @@ export default function ProductCollections() {
   }, [statusFilter, rawRows]);
 
   const columns = [
-    { field: 'modelId', headerName: 'Model Id', width: 220 },
+   {
+      field: 'actions',
+      headerName: '',
+      width: 130,
+      sortable: false,
+      filterable: false,
+      disableExport: true,
+      renderCell: (params) => (
+        
+           handleEditClick(params)}
+          >
+            
+          
+           handleDeleteClick(params?.row)}
+          >
+            
+          
+        
+      ),
+    },
+
+    
     { field: 'name', headerName: 'Name', width: 200 },
     { field: 'categoryId', headerName: 'Category', width: 170, valueGetter: (p) => labelCategory(p?.row?.categoryId) },
     { field: 'providerId', headerName: 'Provider', width: 170, valueGetter: (p) => labelProvider(p?.row?.providerId) },
@@ -201,43 +240,12 @@ export default function ProductCollections() {
     { field: 'attributes.material', headerName: 'Material', width: 150, valueGetter: (p) => labelMaterial(p?.row?.attributes?.material) },
     { field: 'attributes.legs', headerName: 'Legs', width: 140, valueGetter: (p) => labelLegs(p?.row?.attributes?.legs) },
     { field: 'attributes.origin', headerName: 'Origin', width: 150, valueGetter: (p) => labelOrigin(p?.row?.attributes?.origin) },
-    { field: 'status', headerName: 'Status', width: 120 },
-    {
-      field: 'actions',
-      headerName: '',
-      sortable: false,
-      width: 110,
-      renderCell: (p) => (
-        
-          
-             { setEditRow(p.row); setOpen(true); }}>
-              
-            
-          
-          
-             {
-                try {
-                  const updated = { ...p.row, status: p.row.status === 'Active' ? 'Inactive' : 'Active' };
-                  await api.updateVariant(updated);
-                  setRawRows(prev => prev.map(r => r.id === p.row.id ? updated : r));
-                } catch (err) {
-                  console.error(err);
-                  toast.error(err?.message || 'Error updating status');
-                }
-              }}
-            >
-              
-            
-          
-        
-      )
-    },
+    { field: 'status', headerName: 'Status', width: 120 }
   ];
 
   return (
-    
+    
+      
       
         Furniture Variants
         
@@ -257,21 +265,22 @@ export default function ProductCollections() {
         
       
 
-      
+      
          'auto'}
           sx={{
             '& .MuiDataGrid-cell': { display: 'flex', alignItems: 'center' },
             '& .MuiDataGrid-columnHeader': { display: 'flex', alignItems: 'center' },
+            '& .MuiDataGrid-virtualScroller': { overflowX: 'hidden' },
           }}
         />
       
@@ -293,6 +302,7 @@ export default function ProductCollections() {
           />
         
       
-    
+      
+    
   );
 }