body{
margin:0;
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto;
background:#000;
color:white;
overflow-x:hidden;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:#000;
position:sticky;
top:0;
z-index:100;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
}

.logo img{
width:32px;
}

/* NAV LINKS */

.navLinks a{
color:white;
text-decoration:none;
margin-left:30px;
opacity:.6;
transition:.3s;
}

.navLinks a:hover{
opacity:1;
}

/* PROMO BANNER */

.promoBanner{
background:#111;
padding:12px;
display:flex;
justify-content:center;
align-items:center;
gap:12px;
font-size:14px;
}

.promoBadge{
background:#ff2a2a;
padding:4px 12px;
border-radius:20px;
font-size:12px;
}

/* HERO */

.hero{
text-align:center;
padding-top:140px;
}

.hero h1{
font-size:64px;
margin-bottom:10px;
}

/* BUTTON */

.btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
border:1px solid white;
border-radius:30px;
cursor:pointer;
transition:.3s;
text-decoration:none;
color:white;
}

.btn:hover{
background:white;
color:black;
}

/* SHOP GRID */

.productGrid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
padding:100px 10%;
}

.product{
background:#111;
border-radius:14px;
padding:20px;
transition:.4s;
text-align:center;
}

.product:hover{
transform:translateY(-10px);
background:#161616;
}

.product img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

.price{
opacity:.6;
margin:10px 0;
}

/* PRODUCT PAGE */

.productPage{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
padding:140px 10%;
align-items:center;
}

.productImages img{
width:100%;
margin-bottom:20px;
border-radius:10px;
}

.productInfo h1{
font-size:42px;
}

/* FOOTER */

footer{
padding:40px;
border-top:1px solid #222;
text-align:center;
}

footer a{
color:white;
text-decoration:none;
margin:0 10px;
opacity:.6;
}

footer a:hover{
opacity:1;
}