
body{
font-family:Arial;
margin:0;
background:#f6f7fb;
}

.top{
background:#ff4fa3;
color:white;
padding:15px;
display:flex;
justify-content:space-between;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:40px;
}

.card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
}

.btn{
background:#ff4fa3;
color:white;
padding:10px 16px;
text-decoration:none;
border-radius:6px;
display:inline-block;
}

.hero{
text-align:center;
padding:80px;
background:#ffe5f3;
}

.product-page{
display:flex;
gap:40px;
padding:40px;
flex-wrap:wrap;
}

.product-page img{
width:320px;
}

.footer{
background:#111;
color:white;
padding:20px;
text-align:center;
}
