Index: components/ComponentDetailsDialog.tsx
===================================================================
--- components/ComponentDetailsDialog.tsx	(revision a932c9ee67f19f8edeb101f6ee34cb81e6572601)
+++ components/ComponentDetailsDialog.tsx	(revision a932c9ee67f19f8edeb101f6ee34cb81e6572601)
@@ -0,0 +1,189 @@
+import React, {useEffect, useState} from 'react';
+import {
+    Dialog, DialogTitle, DialogContent, DialogActions, Button,
+    Typography, Box, Grid, Chip, CircularProgress, IconButton,
+    Table, TableBody, TableCell, TableContainer, TableRow, Paper
+} from '@mui/material';
+import CloseIcon from '@mui/icons-material/Close';
+import {onGetComponentDetails} from '../pages/+Layout.telefunc';
+
+export default function ComponentDetailsDialog({open, component, onClose}: any) {
+    const [fullData, setFullData] = useState<any>(null);
+    const [loading, setLoading] = useState(false);
+
+    useEffect(() => {
+        if (open && component) {
+            setLoading(true);
+            onGetComponentDetails({componentId: component.id})
+                .then(data => setFullData(data))
+                .catch(console.error)
+                .finally(() => setLoading(false));
+        } else {
+            setFullData(null);
+        }
+    }, [open, component]);
+
+    if (!open || !component) return null;
+
+    const displayData = fullData || component;
+    const specs = fullData?.details || {};
+
+    const formatMoney = (amount: number) => `$${Number(amount).toFixed(2)}`;
+
+    const renderValue = (key: string, val: any) => {
+        if (Array.isArray(val)) {
+            if (val.length > 0 && typeof val[0] === 'object') {
+                return val.map((v: any) => v.formFactor || v.socket || JSON.stringify(v)).join(', ');
+            }
+            return val.join(', ');
+        }
+
+        const strVal = String(val);
+        const lowerKey = key.toLowerCase();
+
+        // Dodava merni edinici vo zavisnost koja komponenta e
+        if (lowerKey.includes('capacity') || lowerKey.includes('vram') || lowerKey === 'memory') {
+            return `${strVal} GB`;
+        }
+
+        if (lowerKey.includes('tdp') || lowerKey.includes('wattage')) {
+            return `${strVal} W`;
+        }
+
+        if (lowerKey.includes('length') || lowerKey.includes('height') || lowerKey.includes('width')) {
+            return `${strVal} mm`;
+        }
+
+        if (lowerKey.includes('clock')) {
+            return `${strVal} GHz`;
+        }
+        if (lowerKey.includes('speed')) {
+            return `${strVal} MHz`;
+        }
+
+        return strVal;
+    };
+
+    const formatKey = (key: string) => {
+        return key
+            .replace(/([A-Z])/g, ' $1')
+            .replace(/_/g, ' ')
+            .replace(/\b\w/g, c => c.toUpperCase());
+    };
+
+    return (
+        <Dialog
+            open={open}
+            onClose={onClose}
+            maxWidth="lg"
+            // fullWidth
+            sx={{zIndex: 1400}}
+        >
+            <DialogTitle sx={{
+                display: 'flex',
+                justifyContent: 'space-between',
+                alignItems: 'center',
+                bgcolor: '#333',
+                color: 'white'
+            }}>
+                <Box>
+                    <Typography variant="caption" sx={{textTransform: 'uppercase', opacity: 0.7}}>
+                        {displayData.brand}
+                    </Typography>
+                    <Typography variant="h6" fontWeight="bold">
+                        {displayData.name}
+                    </Typography>
+                </Box>
+                <IconButton onClick={onClose} sx={{color: 'white'}}>
+                    <CloseIcon/>
+                </IconButton>
+            </DialogTitle>
+
+            <DialogContent dividers>
+                {loading ? (
+                    <Box sx={{display: 'flex', justifyContent: 'center', p: 5}}>
+                        <CircularProgress/>
+                    </Box>
+                ) : (
+                    <Grid container spacing={4}>
+                        <Grid item xs={12} md={4} sx={{display: 'flex', flexDirection: 'column', alignItems: 'center'}}>
+                            <Box
+                                component="img"
+                                src={`https://placehold.co/400x400?text=${encodeURIComponent(displayData.name)}`}
+                                alt={displayData.name}
+                                sx={{
+                                    width: '100%',
+                                    maxHeight: 300,
+                                    objectFit: 'contain',
+                                    mb: 2,
+                                    border: '1px solid #eee',
+                                    borderRadius: 2,
+                                    p: 2
+                                }}
+                            />
+                            <Chip
+                                label={displayData.type?.toUpperCase()}
+                                color="primary"
+                                sx={{fontWeight: 'bold'}}
+                            />
+                        </Grid>
+
+                        <Grid item xs={12} md={8}>
+                            <Typography variant="subtitle1" fontWeight="bold" gutterBottom
+                                        sx={{borderBottom: '2px solid #ff8201', display: 'inline-block', mb: 0.5}}>
+                                Technical Specifications
+                            </Typography>
+
+                            <TableContainer component={Paper} variant="outlined">
+                                <Table size="small">
+                                    <TableBody>
+                                        <TableRow>
+                                            <TableCell component="th" scope="row"
+                                                       sx={{fontWeight: 'bold', width: '30%', bgcolor: '#1e1e1e'}}>
+                                                Brand
+                                            </TableCell>
+                                            <TableCell>{displayData.brand}</TableCell>
+                                        </TableRow>
+
+                                        {Object.entries(specs).map(([key, val]) => {
+                                            if (key === 'componentId' || key === 'id') return null;
+
+                                            return (
+                                                <TableRow key={key}>
+                                                    <TableCell component="th" scope="row" sx={{
+                                                        fontWeight: 'bold',
+                                                        width: '30%',
+                                                        bgcolor: '#1e1e1e'
+                                                    }}>
+                                                        {formatKey(key)}
+                                                    </TableCell>
+                                                    <TableCell>{renderValue(key, val)}</TableCell>
+                                                </TableRow>
+                                            );
+                                        })}
+                                    </TableBody>
+                                </Table>
+                            </TableContainer>
+                            <Box sx={{display: 'flex', justifyContent: 'space-between', alignItems: 'center', mt: 0.5}}>
+                                <Typography variant="h4" color="primary.main" fontWeight="bold">
+                                    {formatMoney(displayData.price)}
+                                </Typography>
+                            </Box>
+                        </Grid>
+                    </Grid>
+                )}
+            </DialogContent>
+
+            <DialogActions sx={{p: 2}}>
+                <Button onClick={onClose} variant="contained"
+                        sx={{
+                            backgroundColor: '#ff8201',
+                            color: 'white',
+                            borderColor: '#ff8201',
+                            onHover: {backgroundColor: '#ba5d02', borderColor: '#ba5d02'}
+                        }}
+                >Close</Button>
+            </DialogActions>
+        </Dialog>
+    );
+}
Index: components/ComponentDialog.tsx
===================================================================
--- components/ComponentDialog.tsx	(revision a932c9ee67f19f8edeb101f6ee34cb81e6572601)
+++ components/ComponentDialog.tsx	(revision a932c9ee67f19f8edeb101f6ee34cb81e6572601)
@@ -0,0 +1,204 @@
+import React, { useEffect, useState } from 'react';
+import {
+    Dialog, DialogContent, IconButton, Grid, Box, Typography,
+    Slider, FormControl, InputLabel, Select, MenuItem, Checkbox, ListItemText,
+    Card, CardContent, CardMedia, Button, CircularProgress, Divider, AppBar, Toolbar
+} from '@mui/material';
+import CloseIcon from '@mui/icons-material/Close';
+import FilterListIcon from '@mui/icons-material/FilterList';
+import SortIcon from '@mui/icons-material/Sort';
+
+import { onGetAllComponents } from '../pages/+Layout.telefunc';
+import ComponentDetailsDialog from "./ComponentDetailsDialog";
+
+const formatMoney = (amount: number) => `$${amount}`;
+
+export default function ComponentBrowserDialog({ open, category, onClose }: any) {
+    const [components, setComponents] = useState<any[]>([]);
+    const [loading, setLoading] = useState(false);
+
+    const [selectedComponent, setSelectedComponent] = useState<any>(null);
+    const [priceRange, setPriceRange] = useState<number[]>([0, 2000]);
+    const [selectedBrands, setSelectedBrands] = useState<string[]>([]);
+    const [availableBrands, setAvailableBrands] = useState<string[]>([]);
+
+    const [sortOrder, setSortOrder] = useState<string>('default');
+
+    useEffect(() => {
+        if (open && category) {
+            setLoading(true);
+            setSortOrder('price_desc');
+
+            onGetAllComponents({ componentType: category })
+                .then((data) => {
+                    setComponents(data);
+
+                    const brands = Array.from(new Set(data.map((c: any) => c.brand)));
+                    setAvailableBrands(brands as string[]);
+
+                    const maxPrice = data.length > 0 ? Math.max(...data.map((c: any) => Number(c.price))) : 2000;
+                    setPriceRange([0, Math.ceil(maxPrice)]);
+                })
+                .catch(console.error)
+                .finally(() => setLoading(false));
+        }
+    }, [open, category]);
+
+    let processedComponents = components.filter(comp => {
+        const matchesBrand = selectedBrands.length === 0 || selectedBrands.includes(comp.brand);
+        const matchesPrice = Number(comp.price) >= priceRange[0] && Number(comp.price) <= priceRange[1];
+        return matchesBrand && matchesPrice;
+    });
+
+    if (sortOrder === 'price_asc') {
+        processedComponents.sort((a, b) => Number(a.price) - Number(b.price));
+    } else if (sortOrder === 'price_desc') {
+        processedComponents.sort((a, b) => Number(b.price) - Number(a.price));
+    }
+
+    const handleBrandChange = (event: any) => {
+        const value = event.target.value;
+        setSelectedBrands(typeof value === 'string' ? value.split(',') : value);
+    };
+
+    if (!open) return null;
+
+    return (
+        <Dialog
+            open={open}
+            onClose={onClose}
+            maxWidth="xl"
+            fullWidth
+            PaperProps={{ sx: { height: '90vh' } }}
+        >
+            <AppBar position="relative" sx={{ bgcolor: '#ff8201' }}>
+                <Toolbar>
+                    <Typography sx={{ ml: 2, flex: 1, textTransform: 'capitalize' }} variant="h6" component="div">
+                        Browsing: <b>{category === 'gpu' ? 'Graphics Cards' : category?.toUpperCase()}</b>
+                    </Typography>
+                    <IconButton edge="start" color="inherit" onClick={onClose}>
+                        <CloseIcon />
+                    </IconButton>
+                </Toolbar>
+            </AppBar>
+
+            <DialogContent sx={{ p: 0, display: 'flex', height: '100%' }}>
+                <Box sx={{ width: 300, borderRight: '1px solid #ddd', p: 3, bgcolor: '#1e1e1e', display: { xs: 'none', md: 'block' } }}>
+                    <Box sx={{ display: 'flex', alignItems: 'center', mb: 2 }}>
+                        <SortIcon sx={{ mr: 1 }} />
+                        <Typography variant="h6">Sort By</Typography>
+                    </Box>
+                    <FormControl fullWidth size="small" sx={{ mb: 4 }}>
+                        <InputLabel>Price</InputLabel>
+                        <Select
+                            value={sortOrder}
+                            label="Price"
+                            onChange={(e) => setSortOrder(e.target.value)}>
+                            {/*<MenuItem value="default">Featured</MenuItem>*/}
+                            <MenuItem value="price_asc">Price: Low to High</MenuItem>
+                            <MenuItem value="price_desc">Price: High to Low</MenuItem>
+                        </Select>
+                    </FormControl>
+
+                    <Divider sx={{ mb: 3 }} />
+
+                    <Box sx={{ display: 'flex', alignItems: 'center', mb: 2 }}>
+                        <FilterListIcon sx={{ mr: 1 }} />
+                        <Typography variant="h6">Filters</Typography>
+                    </Box>
+
+                    <Typography gutterBottom fontWeight="bold">Price Range</Typography>
+                    <Slider
+                        value={priceRange}
+                        onChange={(_, newValue) => setPriceRange(newValue as number[])}
+                        valueLabelDisplay="auto"
+                        min={0}
+                        max={components.length > 0 ? Math.max(...components.map(c => Number(c.price))) : 2000}
+                        sx={{ color: '#ff8201', mb: 2}}
+                    />
+                    <Box sx={{ display: 'flex', justifyContent: 'space-between', mb: 2 }}>
+                        <Typography variant="caption">{formatMoney(priceRange[0])}</Typography>
+                        <Typography variant="caption">{formatMoney(priceRange[1])}</Typography>
+                    </Box>
+
+                    <FormControl fullWidth size="small">
+                        <InputLabel>Brands</InputLabel>
+                        <Select
+                            multiple
+                            value={selectedBrands}
+                            onChange={handleBrandChange}
+                            renderValue={(selected) => selected.join(', ')}
+                            label="Brands"
+                        >
+                            {availableBrands.map((brand) => (
+                                <MenuItem key={brand} value={brand}>
+                                    <Checkbox checked={selectedBrands.indexOf(brand) > -1} />
+                                    <ListItemText primary={brand} />
+                                </MenuItem>
+                            ))}
+                        </Select>
+                    </FormControl>
+                </Box>
+
+                <Box sx={{ flex: 1, p: 3, overflowY: 'auto' }}>
+                    {loading ? (
+                        <Box sx={{ display: 'flex', justifyContent: 'center', mt: 10 }}>
+                            <CircularProgress sx={{ color: '#ff8201' }} />
+                        </Box>
+                    ) : (
+                        <Grid container spacing={3}>
+                            {processedComponents.map((comp) => (
+                                <Grid item xs={12} sm={6} md={4} lg={3} key={comp.id}>
+                                    <Card elevation={3} sx={{ height: '100%', display: 'flex', flexDirection: 'column' }}>
+                                        <CardMedia
+                                            component="img"
+                                            height="140"
+
+                                            image={`https://placehold.co/400x400?text=${encodeURIComponent(comp.name)}`}
+                                            alt={comp.name}
+                                            sx={{ p: 2, objectFit: 'contain' }}
+                                        />
+                                        <CardContent sx={{ flexGrow: 1 }}>
+                                            <Typography variant="caption" color="text.secondary" sx={{ textTransform: 'uppercase' }}>
+                                                {comp.brand}
+                                            </Typography>
+                                            <Typography variant="subtitle1" fontWeight="bold" sx={{ lineHeight: 1.2, mb: 1 }}>
+                                                {comp.name}
+                                            </Typography>
+
+                                            <Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', mt: 2 }}>
+                                                <Typography variant="h6" color="primary.main">
+                                                    {formatMoney(comp.price)}
+                                                </Typography>
+                                            </Box>
+                                        </CardContent>
+                                        <Box sx={{ p: 2, pt: 0}}>
+                                            <Button
+                                                fullWidth
+                                                variant="outlined"
+                                                onClick={()=> setSelectedComponent(comp)}
+                                                sx={{backgroundColor:'#ff8201', color: 'white', borderColor: '#ff8201', onHover: { backgroundColor: '#e67300', borderColor: '#e67300' } }}
+                                            >
+                                                Details
+                                            </Button>
+                                        </Box>
+                                    </Card>
+                                </Grid>
+                            ))}
+                            {processedComponents.length === 0 && (
+                                <Box sx={{ width: '100%', textAlign: 'center', mt: 5 }}>
+                                    <Typography variant="h6" color="text.secondary">No components match.</Typography>
+                                </Box>
+                            )}
+                        </Grid>
+                    )}
+                </Box>
+            </DialogContent>
+            <ComponentDetailsDialog
+                open={!!selectedComponent}
+                component={selectedComponent}
+                onClose={() => setSelectedComponent(null)}
+            />
+        </Dialog>
+    );
+}
