/* ================== CONTENITORE ================== */
#elenco-prodotti-section {
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* BOX */
#elenco-prodotti-section .collapsible-wrapper {
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* HEADER */
#elenco-prodotti-section .collapsible {
    background-color: #f1f1f1;
    color: #003366;
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
}

#elenco-prodotti-section .collapsible:after {
    content: "\25BC";
    float: right;
}

#elenco-prodotti-section .collapsible.active:after {
    content: "\25B2";
}

/* CONTENUTO */
#elenco-prodotti-section .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
    padding: 0 15px;
}

/* LISTA */
#elenco-prodotti-section .elenco-prodotti {
    list-style: none;
    padding: 0;
    margin: 0;
}

#elenco-prodotti-section .elenco-prodotti li {
    text-align: left;
    padding: 4px 8px;
    border-radius: 4px;
}

#elenco-prodotti-section .elenco-prodotti li:nth-child(odd) {
    background-color: rgba(255, 127, 39, 0.12); /* arancione con trasparenza */
}

#elenco-prodotti-section .elenco-prodotti li:nth-child(even) {
    background-color: #ffffff;
}

#elenco-prodotti-section .elenco-prodotti li a {
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
}

/* ICONA BASE (VUOTA) */
#elenco-prodotti-section .icon-products {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    flex-shrink: 0;
}

/* ICONA SOLO SE PRESENTE */
#elenco-prodotti-section .icon-products.has-icon {
    background-image: url('/img/icona-diramazione.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* TESTO */
#elenco-prodotti-section .descrizione-prodotto {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================== ALLARGA SOLO ELENCO SU DESKTOP ================== */
@media (min-width: 1024px) {

    #elenco-prodotti-section {
        max-width: 1300px;
    }

    #elenco-prodotti-section .collapsible-wrapper {
        max-width: 1300px;
    }

}