
body{
margin:0;
font-family:Arial;
background:#f5f5f5;
}

header{
background:#06c755;
color:white;
padding:30px;
text-align:center;
}

.layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:24px;
padding:24px;
}

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

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

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

.content{
padding:20px;
}

.price{
font-size:24px;
color:#06c755;
font-weight:bold;
}

.cart{
background:white;
padding:24px;
border-radius:20px;
height:fit-content;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.cart-item{
border-bottom:1px solid #ddd;
padding:10px 0;
}

.total{
font-size:28px;
font-weight:bold;
margin:20px 0;
}

input,textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ccc;
border-radius:10px;
box-sizing:border-box;
}

button{
background:#06c755;
color:white;
border:none;
padding:14px;
border-radius:12px;
font-size:18px;
cursor:pointer;
width:100%;
}

.checkout{
margin-top:10px;
}

@media(max-width:900px){
.layout{
grid-template-columns:1fr;
}
}
