.imballaggi-faq {
    border: 1px solid #e1e1e1;
    border-radius: 0;
    padding: 20px;
    margin: 20px auto 0;
    background: #f9fafb;
    width: 206.5%;
    box-sizing: border-box;
}

.imballaggi-faq__heading {
    margin-bottom: 16px;
}

.imballaggi-faq__heading h2 {
    margin: 0 0 4px;
    font-size: 20px;
}

.imballaggi-faq__subtitle {
    margin: 0;
    color: #6b6b6b;
    font-size: 14px;
}

.imballaggi-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.imballaggi-faq__item {
    border: 1px solid #e1e1e1;
    border-radius: 0;
    background: #fff;
}

.imballaggi-faq__question {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 150ms ease, color 150ms ease;
}

.imballaggi-faq__question::after {
    content: '+';
    margin-left: auto;
    font-size: 22px;
    line-height: 1;
    transition: transform 150ms ease;
}

.imballaggi-faq__item.is-open .imballaggi-faq__question::after {
    content: '\2212';
    transform: rotate(180deg);
}

.imballaggi-faq__item:hover .imballaggi-faq__question {
    background: #eef3f9;
}

.imballaggi-faq__item.is-open .imballaggi-faq__question {
    background: #e5edf7;
}

.imballaggi-faq__question:focus {
    outline: none;
}

.imballaggi-faq__answer {
    display: none;
    padding: 14px 16px;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.5;
}

.imballaggi-faq__item.is-open .imballaggi-faq__answer {
    display: block;
}

@media (max-width: 1024px) {
    .imballaggi-faq {
        padding: 16px;
        width: 206.5%;
        /*grid-column: span 2 / span 2;*/
    }
}

@media (max-width: 640px) {
    .imballaggi-faq {
        padding: 12px;
        /*grid-column: span 2 / span 2;*/
        width: 100%;
    }

    .imballaggi-faq__question {
        padding: 12px 14px;
    }

    .imballaggi-faq__answer {
        padding: 0 14px 12px;
    }
}


.imballaggi-related {
    width: 100%;
    grid-column: span 2 / span 2;
    margin: 24px auto 0;
    padding: 0 4px;
    box-sizing: border-box;
}

.imballaggi-related__heading {
    margin: 0 0 12px;
}

.imballaggi-related__heading h2 {
    margin: 0;
    font-size: 20px;
}

.imballaggi-related__subtitle {
    margin: 4px 0 0;
    color: #6b6b6b;
    font-size: 14px;
}

.imballaggi-related__viewport {
    position: relative;
}

.imballaggi-related__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    /*padding: 4px 48px;*/
    scrollbar-width: none;
}

.imballaggi-related__track::-webkit-scrollbar {
    display: none;
}

.imballaggi-related__card {
    flex: 0 0 240px;
    max-width: 240px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    box-sizing: border-box;
}

.imballaggi-related__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
    padding: 10px;
    box-sizing: border-box;
}

.imballaggi-related__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.imballaggi-related__info {
    padding: 10px 12px 12px;
}

.imballaggi-related__name {
    display: block;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 6px;
}

.imballaggi-related__price {
    font-size: 14px;
}

.imballaggi-related__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid #9cb4d8;
    background: linear-gradient(180deg, #f7faff 0%, #e7eef8 100%);
    color: #1b1b1b;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
    z-index: 2;
}

.imballaggi-related__nav svg {
    width: 18px;
    height: 18px;
    fill: #1b1b1b;
}

.imballaggi-related__nav:hover {
    background: #eef3f9;
    border-color: #9cb4d8;
    transform: translateY(-50%) scale(1.04);
}

.imballaggi-related__nav--prev {
    left: 0;
}

.imballaggi-related__nav--next {
    right: 0;
}

@media (max-width: 1024px) {
    .imballaggi-related {
        max-width: 100%;
        padding: 0;
    }

    /*.imballaggi-related__track {*/
    /*    padding: 4px 36px;*/
    /*}*/
}

@media (max-width: 640px) {
    .imballaggi-related {
        padding: 0;
    }

    .imballaggi-related__card {
        flex: 0 0 200px;
        max-width: 200px;
    }

    .imballaggi-related__thumb img {
        height: 100%;
    }

    /*.imballaggi-related__track {*/
    /*    padding: 4px 30px;*/
    /*}*/
}

.imballaggi-faq__empty {
    margin: 0;
    color: #6b6b6b;
    font-size: 14px;
}
