body{
font-family:Arial;
margin:0;
background:#f4f4f4;
text-align:center;
}

/* Header */

header{
background:#2e7d32;
color:white;
padding:20px;
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;

position:sticky;
top:0;
z-index:1000;
}

/* Cart button */

.cart{
background:#ffffff;
color:#2e7d32;
padding:0 15px;
border-radius:20px;
font-weight:bold;
text-decoration:none;
display:inline-flex;
align-items:center;
justify-content:center;
height:36px;
border:2px solid #2e7d32;
line-height:36px;
}

/* Clear cart button */

.clear-cart-btn{
background:#e53935;
color:white;
border:none;
padding:0 15px;
border-radius:20px;
font-weight:bold;
cursor:pointer;
display:inline-flex;
align-items:center;
justify-content:center;
height:36px;
line-height:36px;
}

/* Hover effects */

.cart:hover{
background:#e8f5e9;
}

.clear-cart-btn:hover{
background:#b71c1c;
}

.clear-cart-btn:hover{
background:#b71c1c;
}

/* Navigation */

nav{
width:100%;
text-align:center;
margin-top:10px;
}

nav a{
color:white;
margin:10px;
text-decoration:none;
font-weight:bold;
}

/* Product grid */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
padding:20px;
max-width:1200px;
margin:auto;
}

/* Product card */

.product{
background:white;
color:black;
padding:12px;
border-radius:12px;
box-shadow:0 3px 8px rgba(0,0,0,0.1);
transition:0.3s;
border:1px solid #ddd;
}

.product:hover{
transform:translateY(-6px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* Image placeholder */

.product-img{
width:100%;
height:110px;
background:#e8f5e9;
border-radius:10px;
margin-bottom:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
color:#2e7d32;
font-weight:bold;
}

/* Product text */

.product h3{
color:#2e7d32;
font-size:20px;
margin:5px 0;
}

.product h4{
color:#d32f2f;
font-size:18px;
margin:5px 0;
}

.product h5{
color:#666;
font-size:14px;
text-decoration:line-through;
margin:5px 0;
}

/* Product button */

.product button{
background:#2e7d32;
color:white;
padding:8px;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:bold;
width:100%;
}

.product button:hover{
background:#1b5e20;
}

/* ABOUT PAGE */

.about{
max-width:900px;
margin:auto;
padding:40px;
text-align:left;
}

.about p{
text-align:justify;
line-height:1.7;
font-size:16px;
}

.about li{
font-size:16px;
line-height:1.7;
}

/* Mobile */

@media (max-width:768px){

.products{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:480px){

.products{
grid-template-columns:1fr;
}

}