
body{
font-family:Arial,Helvetica,sans-serif;
background:#ffffff;
margin:0;
color:#333;
}

header{
background:linear-gradient(90deg,#ffd1e6,#ffffff);
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

h1{
margin:0;
color:#e91e63;
}

.slider img{
width:100%;
display:none;
}

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

.product{
border:1px solid #eee;
border-radius:10px;
padding:15px;
background:#fff0f6;
text-align:center;
transition:0.2s;
}

.product:hover{
transform:translateY(-4px);
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.product img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
}

.btn{
background:#ff3f8e;
color:white;
padding:10px 14px;
display:inline-block;
text-decoration:none;
border-radius:6px;
margin-top:10px;
}

.cart{
text-decoration:none;
font-size:18px;
}

.chat{
position:fixed;
bottom:20px;
right:20px;
background:#ff3f8e;
color:white;
padding:14px 18px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}
