*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f6fa;
color:#222;
}

header{
background:#0d1b2a;
color:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.topbar{
width:90%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
flex-wrap:wrap;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo{
width:75px;
height:75px;
object-fit:contain;
}

.logo-area h1{
font-size:28px;
}

.logo-area p{
color:#d4af37;
font-size:15px;
}

nav{
display:flex;
gap:25px;
flex-wrap:wrap;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

.hero{
height:500px;
background:
linear-gradient(rgba(13,27,42,.65),rgba(13,27,42,.65)),
url("https://i.ibb.co/Nn9CsgCC/1000240473.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
padding:20px;
}

.hero-overlay{
max-width:750px;
}

.hero h2{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

#searchBox{
width:100%;
max-width:550px;
padding:16px;
border:none;
border-radius:40px;
font-size:17px;
outline:none;
}

section{
width:90%;
margin:auto;
padding:70px 0;
}

section h2{
font-size:34px;
margin-bottom:35px;
text-align:center;
color:#0d1b2a;
}

.highlight-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.highlight-card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;
text-align:center;
}

.highlight-card:hover{
transform:translateY(-8px);
}

.highlight-card h3{
margin-bottom:15px;
color:#0d1b2a;
}

#categoryContainer{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.category{
background:#0d1b2a;
color:white;
padding:14px 22px;
border-radius:30px;
cursor:pointer;
transition:.3s;
font-weight:bold;
}

.category:hover{
background:#d4af37;
color:#111;
}

#products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
gap:30px;
}
.product{
background:white;
border-radius:16px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.12);
transition:.3s;
}

.product:hover{
transform:translateY(-8px);
}

.product img{
width:100%;
height:250px;
object-fit:cover;
}

.product-info{
padding:20px;
}

.product-info h3{
font-size:24px;
margin-bottom:12px;
color:#0d1b2a;
}

.product-info p{
margin-bottom:10px;
font-size:15px;
}

.price{
font-size:24px;
font-weight:bold;
color:#d4af37;
margin-top:10px;
}

.button{
display:inline-block;
margin-top:15px;
padding:12px 24px;
background:#0d1b2a;
color:white;
text-decoration:none;
border-radius:30px;
transition:.3s;
margin-right:10px;
}

.button:hover{
background:#d4af37;
color:#111;
}

.review-card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
max-width:700px;
margin:auto;
text-align:center;
}

.stars{
font-size:28px;
color:#f4c542;
margin-bottom:15px;
}

#about{
background:white;
padding:50px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
line-height:1.8;
text-align:center;
}

.contact-box{
background:white;
padding:40px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
text-align:center;
}

.contact-box p{
margin-bottom:15px;
font-size:18px;
}

footer{
background:#0d1b2a;
color:white;
text-align:center;
padding:30px;
margin-top:60px;
}

@media(max-width:900px){

.topbar{
flex-direction:column;
text-align:center;
}

nav{
justify-content:center;
margin-top:20px;
}

.hero{
height:400px;
}

.hero h2{
font-size:34px;
}

.hero p{
font-size:17px;
}

.logo{
width:60px;
height:60px;
}

section h2{
font-size:28px;
}

}