*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}



body{

background:#f8f9fa;
color:#222;

}



header{

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 8%;

background:white;

box-shadow:0 3px 10px #ddd;

position:sticky;
top:0;

}



.logo{

font-size:30px;
font-weight:bold;
color:#ff6b00;

}



nav a{

margin:0 15px;
text-decoration:none;
color:#333;
font-weight:600;

}




.hero{

display:flex;
align-items:center;
justify-content:space-between;

padding:70px 8%;

background:linear-gradient(
135deg,
#fff3e6,
#ffffff
);

}



.hero-content{

width:50%;

}



.hero h1{

font-size:50px;

}



.hero span{

color:#ff6b00;

}



.hero p{

font-size:20px;
margin:20px 0;

}



button{

padding:14px 30px;
border:none;

background:#ff6b00;

color:white;

border-radius:30px;

cursor:pointer;

font-size:16px;

}



.hero-image img{

width:450px;

border-radius:20px;

}







.search-box{

padding:40px 8%;
text-align:center;

}



.search-box input{

width:70%;

padding:18px;

border-radius:30px;

border:1px solid #ddd;

font-size:18px;

}




section{

padding:50px 8%;

}


h2{

text-align:center;

font-size:35px;

margin-bottom:40px;

}



.products-container{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}




.card{

background:white;

padding:25px;

border-radius:20px;

box-shadow:
0 5px 15px #ddd;

transition:.3s;

}


.card:hover{

transform:translateY(-10px);

}



.card img{

width:100%;

height:180px;

object-fit:cover;

border-radius:15px;

}



.price{

color:#ff6b00;

font-size:22px;

font-weight:bold;

}




.offer-box,
.features{


display:flex;

gap:25px;

justify-content:center;

flex-wrap:wrap;

}




.offer-box div,
.features div{

background:white;

padding:30px;

border-radius:20px;

box-shadow:0 5px 15px #ddd;

width:280px;

text-align:center;

}




.newsletter{

background:#222;

color:white;

text-align:center;

}



.newsletter input{

padding:15px;

border-radius:20px;

border:none;

margin:20px;

}




footer{

background:#111;

color:white;

text-align:center;

padding:30px;

}




@media(max-width:800px){


.hero{

flex-direction:column;

}



.hero-content{

width:100%;

}


.hero h1{

font-size:35px;

}


.hero-image img{

width:300px;

}


nav{

display:none;

}


}
