*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#f5f5f5;
color:#222;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:15px 6%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,0.95);
box-shadow:0 2px 10px rgba(0,0,0,0.08);
backdrop-filter:blur(8px);
z-index:1000;
}

.logo{
display:flex;
align-items:center;
}

.logo img{
height:60px;
width:auto;
object-fit:contain;
display:block;
}

nav{
display:flex;
gap:30px;
}

nav a{
color:#111;
text-decoration:none;
font-size:17px;
font-weight:600;
transition:0.3s;
}

nav a:hover{
color:#ff6600;
}

.hero{
height:100vh;
padding-top:120px;
background:
linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600');

background-size:cover;
background-position:center;
display:flex;
align-items:center;
padding-left:8%;
padding-right:8%;
}

.hero-text{
background:rgba(0,0,0,0.6);
padding:40px;
border-radius:12px;
max-width:500px;
}

.hero-text h1{
color:white;
font-size:52px;
margin-bottom:20px;
}

.hero-text p{
color:#ddd;
margin-bottom:30px;
line-height:1.6;
}

.btn{
background:#ff6600;
color:white;
padding:14px 30px;
text-decoration:none;
border-radius:8px;
}

.categories{
padding:70px 8%;
}

.categories h2{
margin-bottom:40px;
font-size:34px;
}

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card h3{
padding:20px;
}

.products{
padding:70px 8%;
}

.products h2{
margin-bottom:40px;
font-size:34px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.product-card{
background:white;
padding:20px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
overflow:hidden;
transition:0.3s;
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
transition:0.4s;
}

.product-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.product-card:hover img{
transform:scale(1.05);
}


.product-card h3{
margin-top:15px;
}

.product-card p{
margin:15px 0;
font-size:20px;
font-weight:bold;
color:#ff6600;
}

.product-card button{
background:#111;
color:white;
border:none;
padding:12px 20px;
border-radius:8px;
cursor:pointer;
}



.products-page{
padding:70px 8%;
}

.products-page h1{
margin-bottom:40px;
font-size:42px;
}

@media(max-width:768px){

header{
flex-direction:column;
}

nav{
margin-top:15px;
}

.hero-text h1{
font-size:36px;
}

}  


.brands{
padding:40px 8% 80px;
background:#f7f7f7;
}


.brands h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#111;
}

.brands h2::after{
content:"";
display:block;
width:80px;
height:4px;
background:#ff6600;
margin:15px auto 0;
border-radius:10px;
}

.brands-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.brand-item{
background:white;
border:1px solid #eee;
border-radius:12px;
padding:30px;
display:flex;
justify-content:center;
align-items:center;
height:140px;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.brand-item:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 10px 25px rgba(0,0,0,0.12);
border-color:#ff6600;
}

.brand-item img{
max-width:100%;
max-height:100px;
object-fit:contain;
filter:grayscale(10%);
transition:0.3s;
}

.brand-item:hover img{
filter:grayscale(0%);
transform:scale(1.05);
}




.footer{
background:#111;
color:white;
padding-top:60px;
margin-top:80px;
}

.footer-container{
width:85%;
margin:auto;
display:flex;
justify-content:center;
text-align:center;
padding-bottom:40px;
}

.footer-info{
max-width:600px;
padding:40px 0;
}

.footer-info h2{
font-size:34px;
margin-bottom:20px;
color:white;
}

.footer-info h3{
font-size:22px;
margin-bottom:15px;
color:#ff6600;
}

.footer-info p{
line-height:1.9;
margin-bottom:20px;
color:#ddd;
}

.social a{
display:inline-block;
background:#ff6600;
color:white;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
padding:20px;
font-size:14px;
color:#aaa;
}

.brand-title{
text-align:center;
margin-bottom:50px;
}

.brand-sub{
color:#666;
font-size:18px;
margin-top:10px;
}
