body{
font-family: Arial;
margin:0;
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:#333;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
background:#071c2f;
color:white;
}

.logo{
font-size:24px;
font-weight:bold;
}

.logo span{
color:#ff9800;
}

.search-box input{
padding:10px;
width:250px;
border:none;
border-radius:4px 0 0 4px;
}

.search-box button{
padding:10px;
border:none;
background:#ff9800;
color:white;
cursor:pointer;
}

.navbar{
background:#111;
padding:10px;
}

.navbar a{
color:white;
margin-right:20px;
text-decoration:none;
}

.container{
padding:20px;
background:white;
margin:20px;
border-radius:8px;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:white;
border-radius:8px;
padding:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
text-align:center;

}


.card img{
width:100%;
height:180px;
object-fit:contain;
}

.price{
font-size:18px;
color:red;
}

.old-price{
text-decoration:line-through;
color:gray;
font-size:14px;
}

.discount{
background:green;
color:white;
padding:3px 6px;
font-size:12px;
border-radius:4px;
}

.buy-btn{
background:linear-gradient(45deg,#ff512f,#dd2476);
color:white;
padding:10px;
border:none;
width:100%;
margin-top:10px;
cursor:pointer;
border-radius:5px;
font-weight:bold;
}

.footer{
background:#111;
color:white;
padding:20px;
text-align:center;
}

.footer-links a{
color:white;
margin:10px;
display:inline-block;
}

@media(max-width:768px){
.search-box input{
width:150px;
}
}



.slider{
background:linear-gradient(45deg,#ff512f,#dd2476);
color:white;
padding:15px;
text-align:center;
font-size:18px;
margin-bottom:20px;
border-radius:6px;
}

.slide{
display:none;
}

.slide.active{
display:block;
}

.logo-wrap{
display:flex;
align-items:center;
text-decoration:none;
color:white;
}

.logo-img{
width:70px;
height:auto;
margin-right:12px;
}

.logo-text{
font-size:26px;
font-weight:700;
}

.logo-text span{
color:#ff9800;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 20px;
background:#071c2f;
color:white;
}

@media(max-width:768px){

.logo-img{
width:50px;
}

.logo-text{
font-size:20px;
}

.header{
flex-direction:column;
gap:10px;
}


}

.features-btn{
background:#111;
color:white;
padding:8px;
border:none;
width:100%;
margin-top:8px;
cursor:pointer;
border-radius:5px;
}

.features-box{
display:none;
background:#f5f5f5;
padding:10px;
margin-top:8px;
border-radius:5px;
font-size:14px;
text-align:left;
}


.float-btn{
position:fixed;
bottom:20px;
right:20px;
background:#ff512f;
color:white;
padding:12px 15px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
z-index:999;
}

.card{
display:flex;
flex-direction:column;
justify-content:space-between;
height:100%;
}

.card img{
height:160px;
object-fit:contain;
}

.card h3{
min-height:48px;
}

.price{
min-height:40px;
}

.discount{
min-height:28px;
}

.features-btn{
margin-top:auto;
}

.buy-btn{
margin-top:8px;
}
.products{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
gap:15px;
align-items:stretch;
}
