/* ======================
GLOBAL
====================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, Helvetica, sans-serif;
color:#222;
line-height:1.6;
background:#f9fafb;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.logo-img{
height:55px;
width:auto;
}


/* ======================
NAVBAR
====================== */

.navbar{
background:white;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:1000;
}

.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
display:flex;
gap:10px;
align-items:center;
}

nav a{
margin-left:22px;
text-decoration:none;
color:#333;
font-weight:500;
transition:0.2s;
}

nav a:hover{
color:#16a34a;
}


/* ======================
SECTIONS
====================== */

.section{
padding:10px 0;
}

.section h2{
font-size:36px;
margin-bottom:10px;
}

.section-desc{
color:#555;
margin-bottom:30px;
}


/* ======================
BUTTONS
====================== */

.btn-primary{
background:#16a34a;
color:white;
padding:12px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
border:none;
cursor:pointer;
transition:0.2s;
display:inline-block;
}

.btn-primary:hover{
background:#15803d;
}


/* ======================
FOOTER
====================== */

footer{
background:#111;
color:#bbb;
padding:50px 0;
margin-top:40px;
}

.footer{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.footer h3,
.footer h4{
color:white;
margin-bottom:10px;
}

.footer p,
.footer a{
font-size:14px;
color:#bbb;
text-decoration:none;
}

.footer a:hover{
color:#16a34a;
}


/* ======================
SHOP PAGE
====================== */

.shop-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:30px;
}

.shop-card{
background:white;
border:1px solid #eee;
border-radius:12px;
overflow:hidden;
transition:0.25s;
display:flex;
flex-direction:column;
}

.shop-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.shop-card img{
width:100%;
height:220px;
object-fit:cover;
}

.shop-content{
padding:18px;
display:flex;
flex-direction:column;
gap:10px;
}

.shop-content h3{
color:#111;
font-size:18px;
}

.shop-content p{
font-size:14px;
color:#555;
}

.price{
font-size:18px;
font-weight:bold;
color:#16a34a;
}


/* ======================
RESPONSIVE
====================== */

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
color:#333;
}

/* IMPORTANT: make navbar container relative */
.nav-inner{
position:relative;
}

@media(max-width:900px){

.menu-toggle{
display:block;
}

/* hide nav by default */
nav{
display:none;
flex-direction:column;
position:absolute;
top:60px;
right:0;
background:white;
padding:15px;
border:1px solid #eee;
border-radius:10px;
width:180px;
z-index:2000;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* when active */
nav.active{
display:flex;
}

nav a{
margin:10px 0;
}
}