/* Impedisce alla Hero di coprire le sezioni successive */
.content-wrapper {
    position: relative;
    z-index: 10;        /* Più alto della Hero che è 5 */
    background: #ffffff;
    width: 100%;
    /* Se la Hero mobile ha margin-top: -280px, qui recuperiamo spazio */
    margin-top: 0; 
}

.prodotti-in-evidenza {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.container-prodotti {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Fondamentale per il mobile */
    max-width: 1200px;
    margin: 0 auto;
}

.prodotto-card {
    background: #f9f9f9;
    padding: 30px;
    flex: 1;
    min-width: 280px; /* Si adatta su mobile */
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.prodotto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}