body{
font-family: Arial;
margin:0;
background:#f4f6f9;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
background:#1e1e2f;
color:white;
padding:15px 30px;
}

header input{
padding:8px;
width:200px;
border-radius:5px;
border:none;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:30px;
}

.product{
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
text-align:center;
transition:0.3s;
}

.product:hover{
transform:translateY(-5px);
}

.product img{
width:100%;
height:150px;
object-fit:cover;
border-radius:8px;
}

.product button{
background:#ff6b6b;
border:none;
color:white;
padding:10px;
margin-top:10px;
border-radius:5px;
cursor:pointer;
}

.product button:hover{
background:#ff4040;
}

.cart-section{
background:white;
margin:20px;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.cart-item{
display:flex;
justify-content:space-between;
margin:10px 0;
}