body{
margin:0;
background:#070710;
color:white;
font-family:Montserrat;
}

header{
display:flex;
justify-content:space-between;
padding:20px 40px;
background:#05050a;
border-bottom:2px solid #00eaff;
}

.logo{
font-family:"Press Start 2P";
color:#ffd900;
}

nav a{
margin:0 15px;
color:white;
text-decoration:none;
}

.hero{
height:60vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
background:linear-gradient(120deg,#001aff,#ff004c);
text-align:center;
}

.hero span{
color:#ffd900;
}

#search{
margin-top:20px;
padding:10px;
border-radius:6px;
border:none;
width:250px;
}

.products{
padding:80px;
text-align:center;
}

#product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:40px;
}

.product{
background:#0b0b14;
padding:20px;
border-radius:12px;
border:2px solid #00eaff;
}

.product img{
width:100%;
}

.price{
color:#ffd900;
font-weight:bold;
}

button{
background:#ffd900;
border:none;
padding:10px 16px;
border-radius:6px;
cursor:pointer;
}

button:hover{
background:#ff004c;
color:white;
}

.reviews{
padding:60px;
text-align:center;
}

footer{
padding:40px;
text-align:center;
background:#05050a;
}