
body{
margin:0;
font-family:Arial, sans-serif;
background:#0f0f0f;
color:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:black;
border-bottom:3px solid orange;
}

nav a{
margin:0 10px;
color:white;
text-decoration:none;
font-weight:bold;
}

.hero{
height:75vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(45deg,#000,#1a1a1a,#000);
background-size:400% 400%;
animation:flow 12s ease infinite;
}

@keyframes flow{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}

.btn{
background:orange;
color:black;
padding:12px 28px;
text-decoration:none;
font-weight:bold;
border:none;
cursor:pointer;
}

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

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#111;
border:2px solid orange;
padding:20px;
border-radius:10px;
transition:transform .2s;
}

.card:hover{
transform:scale(1.05);
}

.card img{
width:100%;
border-radius:8px;
}

.story{
padding:60px;
text-align:center;
background:#111;
}

.cart{
padding:40px;
max-width:600px;
margin:auto;
}
