*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter;
background:#f4f6fb;
color:#222;
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}


/* HEADER */

.header{
background:white;
border-bottom:1px solid #eee;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:24px;
font-weight:800;
}

.logo span{
color:#2563eb;
}

.menu a{
margin-left:20px;
text-decoration:none;
font-weight:600;
color:#333;
}

.btn{
background:#2563eb;
color:white;
padding:8px 16px;
border-radius:8px;
}

.menu-toggle{
display:none;
font-size:22px;
cursor:pointer;
}

/* HERO */

.hero{
background:white;
padding:60px;
border-radius:14px;
text-align:center;
margin-top:20px;
}

.hero h1{
font-size:36px;
}

.hero p{
color:#666;
margin-top:10px;
}


/* CATEGORY */

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:20px;
margin-top:20px;
}

.category-card{
background:white;
padding:15px;
border-radius:12px;
text-align:center;
text-decoration:none;
color:#333;
transition:.3s;
}

.category-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.category-card img{
width:100%;
height:90px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}


/* PRODUCTS */

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
margin-top:20px;
}

.product-card{
background:white;
border-radius:14px;
overflow:hidden;
transition:.3s;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-card img{
width:100%;
height:200px;
object-fit:cover;
}

.product-info{
padding:15px;
}

.product-info h3{
font-size:16px;
margin-bottom:10px;
}

.product-bottom{
display:flex;
justify-content:space-between;
align-items:center;
}

.price{
font-weight:700;
color:#2563eb;
}

.btn-view{
border:1px solid #2563eb;
padding:6px 12px;
border-radius:6px;
text-decoration:none;
color:#2563eb;
}


/* FOOTER */

.footer{
background:white;
margin-top:60px;
padding:40px 0;
border-top:1px solid #eee;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.footer h3{
margin-bottom:10px;
}

.footer ul{
list-style:none;
}

.footer ul li{
margin-bottom:8px;
}

.footer ul a{
text-decoration:none;
color:#333;
}

.payments i{
font-size:28px;
margin-right:10px;
color:#444;
}

.copyright{
text-align:center;
margin-top:30px;
color:#777;
}


/* MOBILE */

@media(max-width:768px){

.menu{
display:none;
flex-direction:column;
position:absolute;
background:white;
top:60px;
right:0;
width:200px;
padding:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.menu.active{
display:flex;
}

.menu a{
margin:10px 0;
}

.menu-toggle{
display:block;
}

}