*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#070a12;
color:#fff;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

a{
text-decoration:none;
color:white;
}

.top-bar{
background:#000;
padding:10px 0;
font-size:14px;
}

.top-content{
display:flex;
justify-content:space-between;
align-items:center;
}

.social-links{
display:flex;
gap:20px;
}

.navbar{
position:sticky;
top:0;
background:#0c1019;
z-index:1000;
border-bottom:1px solid #1b2231;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:60px;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
font-weight:600;
}

.whatsapp-btn{
background:#22c55e;
padding:12px 24px;
border-radius:8px;
font-weight:600;
}

.hero{
min-height:80vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:
linear-gradient(
180deg,
#0a0d14,
#070a12
);
}

.hero-content{
max-width:800px;
}

.badge{
display:inline-block;
padding:10px 18px;
background:#24030b;
color:#ff3057;
border-radius:50px;
margin-bottom:25px;
}

.hero h1{
font-size:4rem;
font-weight:800;
margin-bottom:20px;
}

.hero p{
font-size:1.2rem;
color:#b4b8c4;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.primary-btn{
background:#ff1248;
padding:14px 28px;
border-radius:10px;
font-weight:700;
}

.secondary-btn{
border:1px solid #333;
padding:14px 28px;
border-radius:10px;
}

.brands,
.featured-products,
.why-us{
padding:80px 0;
}

.brands h2,
.section-title h2,
.why-us h2{
margin-bottom:40px;
font-size:2rem;
}

.brand-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
}

.brand-grid div{
background:#11151f;
padding:30px;
border-radius:12px;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.product-card{
background:#11151f;
border-radius:15px;
overflow:hidden;
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
}

.product-card h3{
padding:15px;
}

.product-card p{
padding:0 15px;
color:#b4b8c4;
}

.product-card span{
display:block;
padding:15px;
font-weight:700;
color:#ff1248;
}

.feature-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.feature{
background:#11151f;
padding:30px;
border-radius:15px;
}

.cta{
background:#2d0011;
padding:60px 0;
}

.cta-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
flex-wrap:wrap;
}

footer{
background:#0b0f17;
padding:60px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

footer ul{
list-style:none;
}

footer li{
margin-bottom:10px;
}

.copyright{
text-align:center;
margin-top:40px;
color:#888;
}

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

.nav-links{
display:none;
}

}