.product-filter{
padding:40px 0;
background:#f8f9fa;
}

.category-tabs{
display:flex;
flex-wrap:wrap;
justify-content:center;
margin-bottom:30px;
border-bottom:1px solid #e0e0e0;
}

.category-tab{
padding:12px 24px;
margin:0 5px 10px;
background:#f8f9fa;
border:1px solid #dee2e6;
cursor:pointer;
transition:0.3s;
}

.category-tab:hover{
background:#e9ecef;
}

.category-tab.active{
background:#007bff;
color:white;
}

.product-grid{
padding:40px 0;
}

.product-card{
border:1px solid #eee;
border-radius:8px;
overflow:hidden;
transition:0.3s;
}

.product-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.product-image-container{
height:220px;
display:flex;
align-items:center;
justify-content:center;
background:#f8f9fa;
}

.product-image{
max-height:100%;
width:auto;
}


