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

body{
	font-family: serif;
}

i{
	cursor: pointer;
}

a{
	text-decoration: none;
	color: white;
}

.navbar{
	background-color: #001233;
	color: white;
	padding: 18px 60px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

.card{
	position: relative;
	background-color: #fff;
	color: #000;
	font-size: 20px;
	padding: 5px;
	border-radius: 6px;
}

.AmountOfCard{
	top: -15px;
	right: -10px;
	position: absolute;
	font-size: 16px;
	padding: 3px;
	border-radius: 3px;
	background-color: #ff002b;
	color: #fff;
}

.shop{
	display: grid;
	grid-template-columns: repeat(4, 223px);
	gap: 30px;
	justify-content: center;
}

.images{
	width: 223px;
	height: 348px;
	object-fit: cover;
}

.item{
	/* border : 1px solid  black; */
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.details{
	display: flex;
	flex-direction: column;
	padding: 8px;
	gap:10px;
}

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

.buttons{
	display: flex;
	gap: 8px;
}

.bi-dash-lg{
	color: red;
}

.bi-plus-lg{
	color: green;
}

.bi-x-lg{
	color: red;
	font-weight: bold;
}

/*
			! Styles for card.html
*/

.text-center{
	text-align: center;
	margin-bottom: 20px;
}

.BtnToHome, .checkout, .removeAll{
	background-color: #212529;
	color: white;
	border: none;
	padding: 6px;
	border-radius: 3px;
	cursor: pointer;
	margin-top: 10px;
}

.checkout{
	background-color : green;
}

.removeAll{
	background-color: red;
}

.cart-item{
	border: 2px solid #212529;
	border-radius: 5px;
	display: flex;
}



.shopping-card{
	display: grid;
	grid-template-columns: repeat(1,320px);
	justify-content: center;
	gap:15px;
}

.cart-item{
	display: flex;
}

.title-price-x{
	display: flex;
	width: 200px;
	align-items: center;
	justify-content: space-between;
}

.title-price{
	display: flex;
	align-items: center;
	gap: 5px;
}

@media (max-width: 1000px) {
	.shop{
		grid-template-columns: repeat(2 , 223px);
	}
}
@media (max-width: 500px) {
	.shop{
		grid-template-columns: repeat(1 , 223px);
	}
}