.prodotto-preferito {
    margin-bottom: 2em;
    padding: 1.5em;
    border: 2px solid #ddd;
    background: #f9f9f9;
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    gap: 2.5em;
	align-items: center;
}

.prodotto-preferito .sf01-img {
    display:block;
	flex: 1;
}

.prodotto-preferito aside {
    flex: 3;
}

.prodotto-preferito aside p + p {
    margin-top: 1.5rem;
	font-weight: bold;
}

/* Responsive: su mobile diventa colonna */
@media (max-width: 768px) {
    .prodotto-preferito {
        flex-direction: column;
    }
    .prodotto-preferito .sf01-img,
    .prodotto-preferito aside {
        flex: 1 1 100%;
    }
}
