body{
font-family:Arial;
margin:0;
background:linear-gradient(135deg,#424141,#041b5b);
}

header{
background:linear-gradient(90deg,#ff512f,#dd2476);
color:white;
text-align:center;
padding:20px;
}

nav{
display:flex;
justify-content:space-between;
padding:12px 20px;
background:#0f2027;
}

.navbar{
display:flex;
align-items:center;
padding:10px 20px;
background:#000;
color:white;
}

.logo img{
width:193px;
margin-right:15px;
}

button{
padding:8px 14px;
border:none;
cursor:pointer;
border-radius:20px;
background:linear-gradient(45deg,#5618c9,#5216b3);
color:white;
}

button:hover{
transform:scale(1.05);
}

.container{
padding:20px;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.card{
background:white;
padding:15px;
border-radius:15px;
box-shadow:0 6px 15px rgba(0,0,0,0.2);
text-align:center;
}

.card img{
width:100%;
height:150px;
object-fit:cover;
border-radius:10px;
}

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
}

.modal-content{
background:white;
padding:25px;
border-radius:10px;
width:300px;
}

input{
width:100%;
padding:10px;
margin:8px 0;
border-radius:8px;
border:1px solid #ccc;
}

.cart{
background:linear-gradient(135deg,#43cea2,#185a9d);
padding:20px;
margin-top:20px;
border-radius:15px;
color:white;
}