.shopContainer{
	display: flex;
	flex-direction: column;
	align-items: center;
}

#shopTitolo{
	font-size: 3rem;
	font-weight: 600;
	color: #8AAF48;
}

#shopSottotitolo{
	margin-top: 1rem;
	text-align: center;
	font-size: 1.125rem;
	color: #333333;
}

#shopFoglieContainer{
	margin-top: 3rem;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	column-gap: 12.5%;
}

#shopFoglieContainer > div{
	width: 25%;
}

.shopCard{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.shopImmagineProvvisorio{
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: red;
}

.shopCard > a > div:first-of-type{
	padding: 2.5rem;
	border-radius: 50px;
	box-shadow: 0px 0px 10px 0px #333333;
	height: 100%;
}

.titoloFoglia{
	margin-top: 1rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #333333;
	line-height: 1.5rem;
}

.descrizioneFoglia{
	margin-top: 1rem;
	text-align: center;
	line-height: 1rem;
	color: #333333;
}

.prezzoInteroFoglia{
	margin-top: 1rem;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 600;
	color: #8AAF48;
	line-height: 2.5rem;
}

.prezzoScontatoFoglia{
	margin-top: 0.5rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #333333;
	line-height: 1.5rem;
}

.risSocFoglia{
	margin-top: 0.5rem;
	text-align: center;
	color: #333333;
	line-height: 1rem;
}

.risSocFogliaImp{
	font-weight: 600;
}

.shopCard > div:last-of-type{
	margin-top: 1.5rem;
	padding: 0.5rem 0;
	border-radius: 12.5px;
}

.aggCarFoglia{
	font-size: 1.25rem;
	font-weight: 600;
	color: white;
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

.prezzoInteroFoglia2{
	margin-top: 1rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #333333;
	line-height: 1.5rem;
	text-decoration: line-through;
}

.prezzoScontatoFoglia2{
	margin-top: 0.5rem;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 600;
	color: #8AAF48;
	line-height: 2.5rem;
}

.risSocFoglia2{
	margin-top: 0.5rem;
	text-align: center;
	color: #8AAF48;
	line-height: 1rem;
}

.btnCarrelloContainer{
	background-color: #8AAF48;
}

.btnCarrelloContainer2{
	background-color: #A52A2A;
}

.rimCarFoglia{
	font-size: 1.25rem;
	font-weight: 600;
	color: white;
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

.fogliaAcquistata{
	background-color: #333333;
}

.prodottiCarrello{
	margin-top: 1.5rem;
	text-align: center;
	color: #333333;
}

/*.fogliaDigitale{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}*/

.shopCard:nth-of-type(n+4){
	margin-top: 3rem;
}

.shopCard img{
	width: 100%;
}

@media screen and (max-width: 1500px) {
	.titoloFoglia{
		font-size: 1.2rem;
	}
	
	.shopCard > a > div:first-of-type {
		padding: 2rem 1rem;
	}
}

@media screen and (max-width: 992px) {
	#shopFoglieContainer > div{
		width: 43.75%;
	}
	
	.shopCard:nth-of-type(n+4){
		margin-top: unset;
	}
	
	.shopCard:nth-of-type(n+3){
		margin-top: 3rem;
	}
}

@media screen and (max-width: 576px) {
	#shopSottotitolo{
		font-size: 1.2rem;
	}
	
	#shopFoglieContainer > div{
		width: 100%;
	}
	
	.shopCard:nth-of-type(n+3){
		margin-top: unset;
	}
	
	.shopCard:nth-of-type(n+2){
		margin-top: 3rem;
	}
}