body{
font-family: arial, sans-serif;
margin: 0;
padding:0;
background: #f5f5f5;
}

header{
background: #222;
color: #fff;
padding: 10px;
text-align: center;
}

.container{
	display: flex;
	padding: 20px;
}

.products{
	flex:3;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
	gap: 20px;
}

.product{
	background: white;
	padding: 15px;
	border-radius:8px;
	box-shadow:0 0 5px rgba(0,0,0,0.1);
	text-align: center;
}

.product_image{
width: 100%;
height: 150px;
object-fit: cover;
}

.product button{
	background: #28a745;
	color:#fff;
	border:none;
	padding: 10px;
	cursor: pointer;
	border-radius:10px;
}

.cart{
	flex: 1;
	margin-left:20px;
	background: white;
	padding-left: 10px;
	border-radius: 20px;
	height: fit-content;
	box-shadow: 0 0 10px rgba(0, 0, 0,0.2);
}

.cart h2{
	margin-top: 5px;
}
.cart-item{
	border-bottom: 1px solid #dde;
	padding: 10px 0;
}

.total{
	font-family: bold;
	margin-top: 10px;
}
footer{
	text-align: center;
	background: #222;
	color:#fff;
	padding: 10px;
	position: fixed;
	bottom: 0;
	width: 100%;
}