body{

font-family:Arial;
margin:0;
background:#f4f4f4;

}


header{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#111;
color:white;

}


.logo{

font-size:24px;
font-weight:bold;

}


nav a{

color:white;
margin-left:20px;
text-decoration:none;
font-size:16px;

}


.hero{

text-align:center;
padding:70px;
background:linear-gradient(45deg,#ff6a00,#ee0979);
color:white;

}


.product-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
padding:40px;

}


.card{

background:white;
border-radius:10px;
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
text-align:center;

}


.card img{

width:100%;
height:200px;
object-fit:cover;
border-radius:6px;

}


.card h3{

font-size:18px;

}


.price{

color:#e91e63;
font-weight:bold;
font-size:18px;

}


.buy-btn{

display:inline-block;
margin-top:10px;
padding:10px 20px;
background:#ff6a00;
color:white;
text-decoration:none;
border-radius:5px;

}


.buy-btn:hover{

background:#ff4500;

}


footer{

text-align:center;
padding:30px;
background:#111;
color:white;

}