.scheda_prodotto_contenitore_locale {
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    line-height: 1.6;
}

.scheda_prodotto_box1 {
    background: #ffffff;
}

.scheda_box1_header {
    margin-bottom: 35px;
    text-align: center;
}

.scheda_box1_header h2 {
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #111827;
    font-weight: 700;
}

.scheda_box1_header p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    color: #4b5563;
}

.scheda_box1_intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
    margin-bottom: 50px;
}

.scheda_box1_intro_testo {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px;
}

.scheda_box1_intro_testo h3 {
    margin: 0 0 18px;
    font-size: 24px;
    color: #111827;
}

.scheda_box1_intro_testo p {
    margin: 0 0 16px;
    font-size: 16px;
    color: #374151;
}

.scheda_box1_intro_testo p:last-child {
    margin-bottom: 0;
}

.scheda_box1_intro_immagine img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.scheda_box1_plus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 55px;
}

.scheda_box1_plus_item {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.scheda_box1_plus_item h4 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #111827;
}

.scheda_box1_plus_item p {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
}

.scheda_box1_gallery_titolo {
    margin: 0 0 18px;
    font-size: 26px;
    color: #111827;
    text-align: center;
}

.scheda_box1_gallery_intro {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    color: #4b5563;
    font-size: 16px;
}

.scheda_box1_gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-bottom: 55px;
}

.scheda_box1_gallery .img_big {
    grid-column: span 7;
}

.scheda_box1_gallery .img_medium {
    grid-column: span 5;
}

.scheda_box1_gallery .img_small {
    grid-column: span 4;
}

.scheda_box1_gallery .img_full {
    grid-column: span 12;
}

.scheda_box1_gallery_item {
    overflow: hidden;
    border-radius: 18px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.scheda_box1_gallery_item img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.scheda_box1_gallery_item:hover img {
    transform: scale(1.03);
}

.scheda_box1_dettagli {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.scheda_box1_testo_finale {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
}

.scheda_box1_testo_finale h3 {
    margin: 0 0 16px;
    font-size: 24px;
    color: #111827;
}

.scheda_box1_testo_finale p {
    margin: 0 0 14px;
    font-size: 16px;
    color: #374151;
}

.scheda_box1_testo_finale p:last-child {
    margin-bottom: 0;
}

.scheda_box1_tabella_wrap {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
}

.scheda_box1_tabella_wrap h3 {
    margin: 0 0 18px;
    font-size: 24px;
    color: #111827;
}

.scheda_box1_tabella {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
}

.scheda_box1_tabella th,
.scheda_box1_tabella td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

.scheda_box1_tabella th {

    background: #111827;
    color: #ffffff;
    font-weight: 600;
}

.scheda_box1_tabella tr:last-child td {
    border-bottom: none;
}

.scheda_box1_tabella td:first-child {
    font-weight: 600;
    color: #111827;
    width: 40%;
}

.scheda_box1_note {
    margin-top: 14px;
    font-size: 13px;
    color: #6b7280;
}

.scheda_box1_variante {
    max-width: 900px;
    margin: 18px auto 0;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-left: 4px solid #2563eb;
    border-radius: 10px;
    font-size: 15px;
    color: #374151;
}

@media (max-width: 991px) {
    .scheda_box1_intro,
    .scheda_box1_dettagli,
    .scheda_box1_plus {
        grid-template-columns: 1fr 1fr;
    }

    .scheda_box1_gallery .img_big,
    .scheda_box1_gallery .img_medium,
    .scheda_box1_gallery .img_small,
    .scheda_box1_gallery .img_full {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {
    .scheda_prodotto_contenitore_locale {
        margin: 40px auto;
        padding: 0 15px;
    }

    .scheda_box1_header h2 {
        font-size: 28px;
    }

    .scheda_box1_intro,
    .scheda_box1_dettagli,
    .scheda_box1_plus {
        grid-template-columns: 1fr;
    }

    .scheda_box1_gallery {
        grid-template-columns: 1fr;
    }

    .scheda_box1_gallery .img_big,
    .scheda_box1_gallery .img_medium,
    .scheda_box1_gallery .img_small,
    .scheda_box1_gallery .img_full {
        grid-column: auto;
    }

    .scheda_box1_gallery_item img {
        min-height: 220px;
    }

    .scheda_box1_intro_testo,
    .scheda_box1_testo_finale,
    .scheda_box1_tabella_wrap {
        padding: 22px;
    }
}

/* =========================
   SEZIONE COMPONENTI PRESET
   ========================= */

.scheda_box1_componenti {
    margin: 0 0 55px;
}

.scheda_box1_componenti_header {
    text-align: center;
    margin-bottom: 28px;
}

.scheda_box1_componenti_header h3 {
    margin: 0 0 12px;
    font-size: 26px;
    color: #111827;
}

.scheda_box1_componenti_header p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    color: #4b5563;
}

.scheda_box1_componenti_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.scheda_box1_componente_card {
    /*display: grid;*/
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-areas:
        "label label"
        "img table"
        "desc desc";
    gap: 20px 24px;
    align-items: start;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    box-sizing: border-box;
}

.scheda_box1_componente_label {
    grid-area: label;
    justify-self: center;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.scheda_box1_componente_img {
    grid-area: img;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    overflow: hidden;
    box-sizing: border-box;
}

.scheda_box1_componente_img img {
    display: block;
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.scheda_box1_componente_tabella_wrap {
    grid-area: table;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.scheda_box1_componente_tabella {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.scheda_box1_componente_tabella td {
    padding: 12px 14px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
    word-break: break-word;
}

.scheda_box1_componente_tabella tr:last-child td {
    border-bottom: none;
}

.scheda_box1_componente_tabella td:first-child {
    width: 42%;
    font-weight: 600;
    color: #111827;
    background: #f8fafc;
}

.scheda_box1_componente_tabella td:last-child {
    color: #4b5563;
}

.scheda_box1_componente_descrizione {
    grid-area: desc;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.scheda_box1_componente_descrizione p {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.75;
}

/* Tablet */
@media (max-width: 991px) {
    .scheda_box1_componenti_grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .scheda_box1_componente_card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "img"
            "table"
            "desc";
        padding: 18px;
        gap: 18px;
    }

    .scheda_box1_componente_img {
        min-height: 220px;
    }

    .scheda_box1_componente_img img {
        max-height: 180px;
    }

    .scheda_box1_componente_tabella td {
        font-size: 13px;
        padding: 10px 12px;
    }
}