body{
margin:0;
background:#0a0a0f;
color:#f5f5f5;
font-family:'Poppins',sans-serif;
-webkit-font-smoothing:antialiased;
}

.container{
width:85%;
max-width:1200px;
margin:auto;
}

.header{
position:fixed;
width:100%;
background:rgba(10,10,15,0.9);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(212,175,55,0.15);
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-weight:600;
letter-spacing:2px;
color:#D4AF37;
}

.nav-links a{
color:#ddd;
margin-left:25px;
font-size:14px;
transition:0.3s;
}

.nav-links a:hover{
color:#D4AF37;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding-top:120px;
background:radial-gradient(circle at 50% 20%, rgba(212,175,55,0.08), transparent 50%);
}

.hero-inner{
max-width:800px;
}

.hero h1{
font-size:52px;
font-weight:700;
line-height:1.2;
margin-bottom:20px;
}

.hero p{
color:#aaa;
font-size:18px;
margin-bottom:40px;
}

.btn-primary{
background:#D4AF37;
color:#000;
padding:14px 35px;
border-radius:30px;
font-weight:600;
display:inline-block;
}

.section{
padding:120px 0;
}

.section-title{
text-align:center;
font-size:32px;
color:#D4AF37;
margin-bottom:70px;
}

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

.card{
background:#111118;
padding:40px;
border-radius:16px;
border:1px solid rgba(212,175,55,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
border-color:#D4AF37;
}

.card h3{
color:#D4AF37;
margin-bottom:15px;
}

.card p{
color:#aaa;
line-height:1.7;
}

.product-card{
text-align:center;
padding:40px;
background:#111118;
border-radius:16px;
border:1px solid rgba(212,175,55,0.1);
transition:0.3s;
}

.product-card:hover{
border-color:#D4AF37;
transform:translateY(-6px);
}

.product-card h4{
color:#D4AF37;
margin-bottom:10px;
}

.price{
color:#f5d76e;
font-weight:600;
margin-bottom:20px;
}

.footer{
background:#0f0f14;
padding:80px 0;
border-top:1px solid rgba(212,175,55,0.1);
}

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

footer h4{
color:#D4AF37;
margin-bottom:20px;
}

footer a{
color:#aaa;
display:block;
margin-bottom:10px;
}

footer a:hover{
color:#D4AF37;
}
.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
margin-top:60px;
}

.product-card{
background:#111118;
padding:40px;
border-radius:16px;
border:1px solid rgba(212,175,55,0.15);
text-align:center;
transition:0.3s;
}

.product-card:hover{
border-color:#D4AF37;
transform:translateY(-8px);
}

.product-card img{
width:160px;
margin-bottom:20px;
}

.product-card h4{
color:#ffffff;
margin-bottom:10px;
font-size:18px;
}

.product-card p{
color:#bbbbbb;
font-size:14px;
margin-bottom:15px;
}

.price{
color:#D4AF37;
font-weight:600;
margin-bottom:20px;
font-size:16px;
}