:root{
--gold:#D4AF37;
--pink:#ff4f9b;
--black:#111;
}

body{
font-family:'Poppins',sans-serif;
background:#000;
color:white;
margin:0;
}

header{
background:#111;
display:flex;
justify-content:space-between;
padding:20px 8%;
position:fixed;
width:100%;
z-index:999;
}

.logo{
color:var(--gold);
font-size:28px;
font-weight:700;
}

.hero-slider{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
background:
linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
url('banner.jpg');
background-size:cover;
}

.btn{
background:var(--gold);
padding:15px 30px;
border-radius:30px;
color:black;
text-decoration:none;
font-weight:700;
}

.products-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:30px;
padding:50px;
}

.product{
background:#181818;
padding:20px;
border-radius:20px;
}

.whatsapp-float{
position:fixed;
right:25px;
bottom:25px;
font-size:40px;
text-decoration:none;
}