.product-content {
	display: grid; 
	grid-template-columns: repeat(2, 1fr);
}

@media(max-width: 800px){
	.product-content {
		display: grid; 
		grid-template-columns: 1fr;
	}
}

.Product_Container {
display : flex;
flex-direction: column;
gap: 20px;

}

button[name="add-to-cart"]{
	width: 100%;
	padding: 20px;
	border: none;
}

form.cart{
	display: flex;
	gap: 10px;
	flex-direction: column;
	width: 100%;
	align-items: center;
	justify-content: center
}