/*FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ROOTS */
:root {
    /* Root Colori */
    --primarioChiaro: #f7f7f7;
    --primarioChiaro-opacity: rgb(247, 247, 247, 0.5);

    --primarioScuro: #eeeeee;
    --primarioScuro-opacity: rgb(238, 238, 238, 0.5);

    --secondarioChiaro: #929aab;
    --secondarioChiaro-opacity: rgb(146, 154, 171, 0.5);

    --secondarioScuro: rgb(57, 62, 70);
    --secondarioScuro-opacity: rgb(57, 62, 70, 0.5);

    --active-color: #335adb;

    /* Root Swiper */
    --swiper-pagination-bullet-horizontal-gap: 1px;
    --swiper-pagination-color: var(--secondarioScuro);
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color:var(--grigio_base);
}
::-webkit-scrollbar-thumb {
    background-color: var(--grigio_base-opacity);
    border-radius: 0;
    padding: 5px;
    width: 16px;
}
::-webkit-scrollbar-track {
    background-color: var(--light);
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    border-radius: 0;
}

#m-cookie-law-settings-modal {
    .modal-content {
        background-color: var(--light);
    }
}

/* LOADER */
.loader-container {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 999999;
    background: radial-gradient(var(--light-medium), var(--white));

    .loaderPulsIn {
        background: url(/assets/images/icon-loader.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 150px;
        height: 150px;
        display: flex;
        box-sizing: border-box;
        transform-origin: center;
        margin: 0;
        /* animation: rotation 1s linear infinite;
        -webkit-animation: rotation 1s linear infinite;
        -o-animation: rotation 1s linear infinite; */
        /* animation: zoomOutEffect 0.5s linear forwards, zoomInLoop 1.25s linear 0.5s infinite;
        -webkit-animation: zoomOutEffect 0.5s linear forwards, zoomInLoop 1.25s linear 0.5s infinite;
        -o-animation: zoomOutEffect 0.5s linear forwards, zoomInLoop 1.25s linear 0.5s infinite; */
        animation: rotateZoom 0.75s linear infinite;
        -webkit-animation: rotateZoom 0.75s linear infinite;
        -o-animation: rotateZoom 0.75s linear infinite;
    }
    .loaderPulsIn::after, .loaderPulsIn::before {
        content: "";
        display: none;
    }
    .loaderTextSmoke {
        background: url(/assets/images/logo.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 250px;
        height: 100px;
        animation: fadeInFromBottom 0.4s ease-in-out 0.5s both;
        -webkit-animation: fadeInFromBottom 0.4s ease-in-out 0.5s both;
        -o-animation: fadeInFromBottom 0.4s ease-in-out 0.5s both;
        display: none;
    }
    .loaderTextSmoke::before {
        content: "";
        display: none;
    }
}

/* PAGINA SITO IN COSTRUZIONE */
.page-costruction {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;

    .img-Box-1 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }
    .info-box {
        position: absolute;
        z-index: 3;
        top: 0;
        height: calc(100% - 4dvh);
        width: 520px;
        max-width: 90%;
        display: flex;
        flex-direction: column;
        gap: 1%;
        justify-content: center;
        padding: 2dvh 3%;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo-azienda {
        width: 100%;
        height: 80px;
        object-fit: contain;
        margin: 0 auto;
    }
    .subtitle {
        font-size: clamp(32px, 4vw, 60px);
        font-weight: 800;
        font-style: normal;
        margin: auto 0 0 0;
        width: 100%;
        text-align: center;
        color: var(--white);
    }
    .text-big-bold {
        font-size: clamp(24px, 4vw, 32px);
        font-weight: 400;
        width: 100%;
        text-align: center;
        color: var(--light);
    }
    .footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: transparent;
        align-items: center;
    }
    .footer .text {
        color: var(--primarioChiaro);
    }
    .logo-container {
        display: flex;
        gap: 2rem;
    }
    .logo-wide {
        width: auto;
        height: 50px;
        object-fit: contain;
    }
}
.page-costruction::after {
    content: "";
    background: linear-gradient(to top, var(--primarioChiaro-opacity) 10%, transparent 70%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
}

/* BACKGROUND PHOTOSWIPE */
.pswp__bg {
    background: var(--white)!important;
    opacity: 1!important;
}

/* BACKDROP DELLE MODALI */
.modal-backdrop {
    z-index: 1053;
}
/* RECAPTCHA CONTAINER */
/* captcha V2 */
.captcha-container {
    margin: 1rem auto;
    width: fit-content;
}
/* captcha V3 */
.grecaptcha-badge {
    z-index: 1029;
}

/* COOKIE */
.background-cookie {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--grigio_dark-opacity);

    .banner-cookie {
        position: absolute;
        width: 100%;
        height: fit-content;
        max-height: 100dvh;
        overflow-y: auto;
        bottom: 0;
        background-color: var(--white);
        z-index: 1063;
        display: none;
        flex-direction: column;
        gap: .5rem;
        padding: 2rem 1rem;
        box-shadow: 0 -4px 6px var(--grigio_base-opacity);
        top: auto;
        border: none;
    }
    .footer-banner button:nth-of-type(2) {
        background-color: var(--secondarioScuro);
        color: var(--white);
    }
}

/* FORM COMPILAZIONE DATI */
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grigio_base);
    background-color: var(--light-medium);
    background-clip: padding-box;
    border: 1px solid var(--light-medium);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: var(--grigio_dark);
    background-color: var(--white);
    outline: 0;
    box-shadow: 0 0 6px 1px var(--white);
    border: 1px solid var(--primarioScuro);
    font-weight: 500;
}

/*  //# sourceMappingURL=swiper-bundle.min.js.map */

/* BOTTONI */
    /* Bottone fit */
    .btn-rounded {
        width: fit-content;
        min-width: 3rem;
        height: 3rem;
        padding: 0 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid transparent;
        border-radius: 8px;
        background-color: transparent;
        font-size: clamp(12px, 4vw, 14px);
        font-weight: 400;
        word-wrap: normal;
        overflow-wrap: normal;
        white-space: nowrap;
        text-align: center;
        color: currentColor;
        transition: all 0.1s linear;
    }
    .btn-rounded:hover {
        /* border: 1px solid var(--primarioChiaro); */
        color: currentColor;
        opacity: 0.9;
        background-color: var(--light);
        box-shadow: none;
        font-weight: 600;
    }
    .btn-rounded:active {
        scale: 0.9;
    }

    /* Bottone full */
    .btn-full {
        width: 100%;
        min-width: fit-content;
        height: 3rem;
        padding: 0 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid var(--light-medium);
        border-radius: 8px;
        background-color: transparent;
        box-shadow: 0 0 4px var(--grigio_base-opacity);
        font-size: clamp(14px, 4vw, 16px);
        font-weight: 400;
        word-wrap: normal;
        overflow-wrap: normal;
        white-space: nowrap;
        text-align: center;
        color: var(--light);
        transition: all 0.2s ease-in-out;
    }
    .btn-full:hover {
        border: 1px solid var(--primarioScuro);
        color: var(--white);
        background-color: var(--primarioScuro-opacity);
        box-shadow: 0 0 8px 1px var(--grigio_light-opacity);
        font-weight: 600;
    }
    .btn-full:active {
        scale: 0.9;
    }

    /* Bottone Account LogIn */
    .btn-tondo-account {
        padding: 0.5rem 0.75rem;
        border: 1px solid var(--primarioChiaro);
        color: var(--secondarioScuro);
        background-color: var(--grigio_light-opacity);
        box-shadow: inset 0 0 1px var(--primarioChiaro), 0 0 4px var(--primarioChiaro);
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        height: 3rem;
        width: auto;
        overflow: hidden;
        transition: all 0.3s ease-in-out!important;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition:  all 0.3s ease-in-out;

        .text-account {
            overflow: hidden;
            text-overflow: clip;
            white-space: nowrap !important;
        }
        i {
            height: 1cap;
            font-size: 0.8rem;
            aspect-ratio: 1 / 1;
            margin: auto 0 0.7rem 0;
            font-weight: 600;
        }
    }
    .btn-tondo-account:hover {
        background-color: var(--secondarioScuro);
        color: var(--white);
    }
    .btn-tondo-account[data-active="true"] {
        background-color: var(--primarioChiaro);
        color: var(--white);
    }

    /* Bottone SWIPER disabled */
    .swiper-button-disabled {
        opacity: 0;
    }
    .swiper-button-disabled:hover {
        scale: 1;
        background-color: transparent;
        color: var(--primarioChiaro) !important;
        border: 1px solid;
    }

/* HEADER */
.nav-fixed {
    width: 100%;
    height: fit-content;
    position: sticky;
    z-index: 1030;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 6px var(--grigio_base-opacity);
    padding: 0;
    color: var(--dark);
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;

    /* Top Bar */
    .container-fluid {
        width: 100%;
        height: 5rem;
        background-color: transparent;
        box-shadow: none;
        border-bottom: 1px solid var(--light);
        padding: 0 0.75rem 0 0.5rem;
        display: flex;
        flex-wrap: nowrap;
        gap: .5rem;
        position: relative;
        z-index: 1053;
        justify-content: space-between;
        transition: top 0.4s ease-in-out;
        -webkit-transition: top 0.4s ease-in-out;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: flex-start;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    .nav-center {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.5rem;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    .logo-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: auto;
        height: 100%;
        overflow: hidden;
    }
    .logo {
        scale: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: inherit;
    }
    .logo-img {
        height: 100%;
        width: 180px;
        max-width: 100%;
        object-fit: contain;
        object-position: left;
        max-height: 3rem;
    }

    /* Bottone con sub-menu */
    .submenu-hover {
        position: relative; /* Necessario per posizionare il sottomenu */
        transition: all 0.1s linear;
    }
    .submenu-hover:hover {
        border: 0;
        background-color: var(--primarioChiaro);
        color: var(--white);
        border-radius: 8px 8px 0 0;
        transition: all 0.25s linear;
    }
    /* Comparsa Submenù */
    .submenu-hover:hover .container-subMenu {
        display: block;
    }
    /* Bottone submenù */
    .item-subMenu {
        height: auto;
        display: flex;
        padding: 0;
        border-bottom: 1px solid var(--primarioScuro);
        text-align: start;
        transition: all 0.2s ease-in-out;
    }
    .item-subMenu:last-child {
        border-bottom: none;
    }
    .item-subMenu:hover {
        background-color: var(--primarioScuro);
        box-shadow: inset 0 0 8px 1px var(--primarioScuro-opacity);
        color: var(--white);
        font-weight: 600;
    }
    .text-item {
        padding: 1rem;
        width: 100%;
        font-size: clamp(14px, 4vw, 16px);
        font-weight: 400;
        color: var(--grigio_light);
        text-decoration: none;
    }
    /* Contenitore Submenù */
    .container-subMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primarioChiaro);
        z-index: 1000;
        padding: 0;
        width: fit-content;
        min-width: 14rem;
        list-style-type: none;
        margin-bottom: 0;
        border-radius: 0 8px 8px 8px;
        overflow: hidden;
    }
    .btn-rounded i {
        color: currentColor;
    }
}
.nav-interactive {
    width: 100%;
    height: fit-content;
    position: fixed;
    z-index: 1030;
    top: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    color: var(--white);
    transition: all 0.15s ease-in-out;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;

    /* Top Bar */
    .container-fluid {
        width: 100%;
        height: 5rem;
        background-color: transparent;
        box-shadow: none;
        border-bottom: 1px solid var(--light);
        padding: 0 2%;
        justify-content: space-between;
        transition: top 0.4s ease-in-out;
        -webkit-transition: top 0.4s ease-in-out;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: flex-start;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    .nav-center {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.5rem;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    .logo-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: auto;
        height: 100%;
        overflow: hidden;
    }
    .logo {
        scale: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: inherit;
    }
    .logo-img {
        height: 100%;
        width: 180px;
        max-width: 100%;
        object-fit: contain;
        object-position: left;
        max-height: 3rem;
    }

    /* Bottone con sub-menu */
    .submenu-hover {
        position: relative; /* Necessario per posizionare il sottomenu */
        transition: all 0.1s linear;
    }
    .submenu-hover:hover {
        border: 0;
        background-color: var(--primarioChiaro);
        color: var(--white);
        border-radius: 8px 8px 0 0;
        transition: all 0.25s linear;
    }
    /* Comparsa Submenù */
    .submenu-hover:hover .container-subMenu {
        display: block;
    }
    /* Bottone submenù */
    .item-subMenu {
        height: auto;
        display: flex;
        padding: 0;
        border-bottom: 1px solid var(--primarioScuro);
        text-align: start;
        transition: all 0.2s ease-in-out;
    }
    .item-subMenu:last-child {
        border-bottom: none;
    }
    .item-subMenu:hover {
        background-color: var(--primarioScuro);
        box-shadow: inset 0 0 8px 1px var(--primarioScuro-opacity);
        color: var(--white);
        font-weight: 600;
    }
    .text-item {
        padding: 1rem;
        width: 100%;
        font-size: clamp(14px, 4vw, 16px);
        font-weight: 400;
        color: var(--grigio_light);
        text-decoration: none;
    }
    /* Contenitore Submenù */
    .container-subMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primarioChiaro);
        z-index: 1000;
        padding: 0;
        width: fit-content;
        min-width: 14rem;
        list-style-type: none;
        margin-bottom: 0;
        border-radius: 0 8px 8px 8px;
        overflow: hidden;
    }
}
.nav-interactive:hover {
    background-color: var(--white)!important;
    color: var(--dark);
}
.bg-white {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 1px 6px var(--grigio_base-opacity);
}
.bg-transparent {
    background: transparent;
    color: var(--white);
}
    /* INPUT RICERCA */
    .search-container {
        position: relative;
        display: inline-block;
        width: 80%;
        transition: width 0.3s ease-in-out; /* Aggiungi la transizione al contenitore */
        color: currentColor;
        .search-icon {
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            pointer-events: none;
            font-size: 1rem;
        }
        .search-input-classic {
            max-height: 3rem;
            padding: 0.5rem 0.5rem 0.6rem 2.5rem;
            border: 1px solid currentColor;
            border-radius: 0;
            outline: none;
            font-size: 1rem;
            background-color: transparent;
            color: currentColor;
            width: 100%; /* Assicurati che l'input occupi tutto lo spazio del contenitore */
            transition: all 0.3s ease-in-out;
        }
        .search-input-classic:focus {
            width: 100%;
            border-radius: 32px;
            padding: 0.75rem 0.5rem 0.8rem 2.5rem;
            border: 2px solid currentColor;
            color: currentColor;
        }
    }
    /* Usa un selettore di focus-within per il contenitore */
    .search-container:focus-within {
        width: 100%; /* La nuova larghezza desiderata quando l'input è in focus */
    }
    /* Offcanvas ricerca mobile */
    .offcanvas-search {
        padding: 0.5rem;
        height: 7rem!important;
        justify-content: space-between;
        z-index: 1054;

        .offcanvas-header {
            height: fit-content;
            padding: 0;
        }
    }
    /* Contenitore risultati di ricerca */
    .search-result-container {
        position: fixed;
        z-index: 10;
        width: 100%;
        top: 5rem;
        height: calc(100dvh - 5rem);
        background-color: var(--light);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .header-search {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 4rem;
            display: flex;
            gap: 0.5rem;
            align-items: center;
            padding: 0 2%;
            border-bottom: 1px solid var(--grigio_light-opacity);
        }
        .header-search p {
            display: none;
        }
        .header-search::before {
            content: "Risultati";
            font-size: clamp(16px, 4vw, 18px);
            font-weight: 700;
        }
        .header-search .text-big-bold {
            color: var(--dark);
        }
        .header-search button {
            margin-left: auto;
        }

        .search-result-box {
            width: 100%;
            position: relative;
            z-index: 2;
            overflow-y: auto;
            height: 100%;
        }
        .container-prodotti {
            height: auto;
            min-height: auto;
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            width: 100%;
            position: relative;
            padding: 0.75rem 5% 2rem 5%;
            background-color: var(--light);
        }
        .container-card {
            width: 240px;
            max-width: 100%;
            min-height: fit-content;
        }
        .container-card .img-card-container {
            height: 12rem;
        }
        .error-message {
            position: absolute;
            top: 50%;
            left: 50%;
            width: fit-content;
            max-width: 90%;
            transform: translate(-50%, -50%);
            padding: 0;
            height: 100%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light);
            z-index: 1;
        }
        .container-productNotFound {
            width: 100%;
            height: 100%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .container-productNotFound img {
            display: none;
        }
        .text-prodNotFound {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
    }
    .search-result-container::before {
        content: "";
        position: absolute;
        /* top: 50%;
        left: 50%; */
        width: 60px;
        height: 60px;
        border: 6px solid transparent;
        border-top-color: var(--secondarioScuro);
        border-bottom-color: var(--secondarioScuro);
        border-radius: 50%;
        transform-origin: center;
        animation: rotation 1s linear infinite;
        /* transform: translate(-50% , -50%); */
        z-index: 1;
    }
    /* Carosello prodotti risultati di ricerca */
    .carousel-search {
        height: auto;
        background: var(--primarioScuro);
        border-bottom: 16px solid var(--light);
        position: relative;

        .header-carousel {
            display: flex;
            flex-wrap: wrap;
            padding: 0 2%;
            justify-content: space-between;
            align-items: center;
            gap: .25rem;
            width: 100%;
            margin: 0 auto 1rem auto;
            height: 4rem;
            border-bottom: 4px solid var(--light);
        }
        .text-header-container {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .text-header-container .text-link {
            background: transparent;
            padding: 0.5rem;
            border: 1px solid transparent;
            color: var(--secondarioScuro);
            text-decoration: underline;
        }
        .text-header-container .text-link:hover {
            text-decoration: none;
            background: var(--light);
            color: var(--secondarioScuro);
            border: 1px solid var(--secondarioScuro);
        }
        .swiper-slide {
            width: auto;
            margin: 0 0.5rem 0 0!important;
        }
        .swiper-slide:first-child {
            margin: 0 0.5rem 0 4rem!important;
        }
        .swiper-slide:last-child {
            margin: 0 4rem 0 0!important;
        }
        .swiper-button-next, .swiper-button-prev {
            background: var(--grigio_base);
            border-radius: 0;
            position: absolute!important;
            top: 50%;
        }
        .swiper-button-next {
            right: 0.5rem;
        }
        .swiper-button-prev {
            left: 0.5rem;
        }
    }

    /* MENU  FULL */
    .menu-top-full {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 0 1rem;
        height: 3rem;
        align-items: center;

        .menu-item-container {
            width: auto;
            height: auto;
        }
        /* Comparsa Submenù */
        .menu-item-container:hover .container-subMenu {
            display: block;
        }
        .menu-item-container:hover .btn-rounded {
            background: var(--light);
            border-bottom: 3px solid var(--dark);
            font-weight: 600;
        }
        .menu-item-container:hover + .overlay-menu {
            display: block;
        }
        .overlay-menu {
            display: none;
            width: 100%;
            height: calc(100dvh - 8rem);
            position: fixed;
            z-index: 999;
            background: var(--grigio_dark-opacity);
            top: 8rem;
            left: 0;
        }
        .btn-main {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
            padding: 0.5rem;
            justify-content: center;
            align-items: center;
            font-size: clamp(16px, 4vw, 18px);
            font-weight: 400;
            color: var(--secondarioChiaro);
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }
        .btn-main:hover {
            text-decoration: underline;
            color: var(--secondarioScuro);
        }
        .btn-main::after {
            content: "";
            width: 100%;
            border-bottom: 1px solid var(--secondarioChiaro-opacity);
        }


        .btn-rounded {
            min-width: 6rem;
            height: 3rem;
            border-radius: 0;
            color: currentColor;
        }
        .btn-rounded:active {
            scale: 1;
        }

        /* Bottone con sub-menu */
        .submenu-hover {
            position: relative; /* Necessario per posizionare il sottomenu */
            transition: all 0.1s linear;
            transition: all 0.25s linear;
            border: none;
        }
        .submenu-hover:hover {
            background-color: var(--light);
            color: var(--dark);
            border-radius: 0;
            box-shadow: none;
        }

        /* Bottone submenù */
        .item-subMenu {
            height: auto;
            display: flex;
            padding: 0.5rem;
            border-bottom: none;
            text-align: start;
            transition: all 0.2s ease-in-out;
            flex-direction: column;
            color: var(--light-medium);
        }
        .item-subMenu:hover {
            background: transparent;
            box-shadow: none;
        }
        .item-subMenu .text-big-bold {
            color: var(--black);
        }
        .sottogruppo-item {
            width: 100%;
        }
        .text-item {
            display: block;
            padding: 0;
            width: 100%;
            font-size: clamp(13px, 4vw, 15px);
            font-weight: 400;
            color: var(--grigio_dark);
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }
        .text-item:hover {
            text-decoration: underline;
            font-weight: 500;
            color: var(--dark);
        }
        /* Contenitore Submenù */
        .container-subMenu {
            display: none;
            width: 100%;
            position: fixed;
            top: 8rem;
            left: 0;
            background-color: var(--light);
            z-index: 1000;
            padding: 1rem 2%;
            min-width: 100%;
            list-style-type: none;
            margin-bottom: 0;
            border-radius: 0;
            overflow-y: auto;
            height: fit-content;
            max-height: calc(80dvh - 8rem);
            box-shadow: 0 5dvh 100px var(--grigio_dark-opacity);
            border-top: 6px solid var(--light);
        }
        .container-subMenu::-webkit-scrollbar {
            width: 0;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
        }
        .container-sottogruppi {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.5rem 0.5rem 0 0;
            list-style: none;
            max-height: 300px;
            overflow-y: auto;
            margin: 0.5rem 0 0 0;
            border-top: 1px solid var(--secondarioChiaro-opacity);
        }
        .brand-container {
            max-height: calc(80dvh - 13.5rem);
            overflow-y: auto;
        }
    }

    /* MENU MOBILE */
    .offcanvas-menu-mobile {
        z-index: 1054;

        .offcanvas-header {
            height: fit-content;
            padding: 0.5rem 0.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .offcanvas-body {
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .btn-rounded {
            width: 100%;
            height: 4rem;
            position: sticky;
            top: 0;
            z-index: 11;
            color: var(--white);
            background: var(--grigio_dark);
            border-bottom: 2px solid var(--white);
            border-radius: 0;
            font-size: clamp(18px, 4vw, 20px);
            font-weight: 600;
            transition: all 0.2s ease-in-out;
        }
        .btn-rounded:active {
            background: var(--grigio_base);
        }
        .btn-rounded:active {
            background: var(--grigio_base);
            scale: 1;
        }
        .accordion-item {
            border: none;
        }
        .accordion-button {
            padding: 1rem;
        }
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='rgb(125, 125, 125)' d='M352 128C352 110.3 337.7 96 320 96C302.3 96 288 110.3 288 128L288 288L128 288C110.3 288 96 302.3 96 320C96 337.7 110.3 352 128 352L288 352L288 512C288 529.7 302.3 544 320 544C337.7 544 352 529.7 352 512L352 352L512 352C529.7 352 544 337.7 544 320C544 302.3 529.7 288 512 288L352 288L352 128z'/%3E%3C/svg%3E");
        }
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='rgb(125,125,125)' d='M96 320C96 302.3 110.3 288 128 288L512 288C529.7 288 544 302.3 544 320C544 337.7 529.7 352 512 352L128 352C110.3 352 96 337.7 96 320z'/%3E%3C/svg%3E");
        }
        ul {
            padding: 0;
        }
        .accordion-header {
            position: sticky;
            top: 4rem;
            z-index: 10;
        }
        .offcanvas-body .text-big-bold {
            display: block;
            padding: 0;
            color: var(--dark);
            width: fit-content;
            background-color: transparent;
            transition: all 0.2s ease-in-out;
            position: absolute;
            z-index: 10;
            top: 50%;
            transform: translateY(-50%);
            left: 1rem;
            font-weight: 500;
        }
        .list-punti {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 0 0 1rem 1rem;
            border-bottom: 1px solid var(--grigio_base-opacity);
            margin-bottom: 0;
        }
        li {
            display: flex;
            flex-direction: column;
        }
        li .text-bold {
            text-transform: lowercase;
            padding: 1rem 2rem;
            color: var(--primarioChiaro);
        }
        .item-subMenu:hover {
            background: transparent;
        }
        .text-item {
            padding: 1rem 2rem;
            width: 100%;
            font-size: clamp(14px, 4vw, 16px);
            font-weight: 400;
            color: var(--grigio_dark);
            text-decoration: none;
            transition: all 0.2s;
        }
        .text-item:active {
            background: var(--grigio_light);
        }
        ::-webkit-scrollbar-thumb {
            background-color: var(--grigio_base-opacity);
            border-radius: 0;
            padding: 0;
            width: 0;
        }
        ::-webkit-scrollbar-thumb:hover {
            background-color:var(--grigio_base);
        }
        ::-webkit-scrollbar-track {
            background-color: var(--light);
        }
    }

    /* OFFCANVAS USER */ 
    #offcanvasUser {
        .header-user {
            height: 5rem;
            max-height: 5rem;
            min-height: 5rem;
            width: 100%;
            padding: 0.5rem 1rem;
        }
        .header-user i, h5 {
            color: var(--grigio_base);
        }
        .nav-tabs {
            height: 4rem;
            max-height: 4rem;
            min-height: 4rem;
            box-shadow: none;
        }
        .nav-tabs .log-btn.active {
            background-color: var(--primarioScuro);
            border-top-left-radius: 0;
            border-top-right-radius: 8px;
            border-bottom: none !important;
            color: var(--dark);
        }
        .nav-tabs .reg-btn.active {
            background-color: var(--primarioScuro);
            color: var(--dark);
            border-top-left-radius: 8px;
            border-top-right-radius: 0;
            border-bottom: none !important;
        }
        .tab-content {
            position: relative;
            margin-top: -2px;
        }
        .tab-pane {
            height: calc(100dvh - 8rem);
        }
        .tab-content>.active {
            background-color: var(--primarioScuro);
            border-top: 6px solid var(--primarioScuro);
        }
        .tab-header {
            height: fit-content;
            width: 100%;
            padding: 2rem 1rem 1rem 1rem;
            color: var(--light);
        }
        .container-inline p,
        .tab-header p {
            color: var(--grigio_base);
            font-size: clamp(14px, 4vw, 16px);
            text-wrap: auto;
        }
        .tab-header h6 {
            color: var(--dark);
        }
        .tab-container {
            height: fit-content;
            padding: 2rem 1rem;
            gap: 1.75rem;
        }
        .btn-large-round-outline {
            box-shadow: 0 0 8px 1px var(--light-medium);
            background-color: var(--secondarioScuro)!important;
        }
        .btn-large-round-outline p {
            color: var(--secondarioScuro)!important;
        }
        .form-floating>.form-control:focus~label {
            color: var(--dark);
        }
        .footer-tab {
            height: fit-content;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: auto;
            margin-bottom: 0;
        }
        .btn-forgot-password {
            color: var(--dark);
            background-color: transparent;
        }
        .collapse-up {
            top: 0;
        }
        .container-inline {
            padding: 2rem 1rem 1rem 1rem!important;
        }
        .container-inline h6 {
            color: var(--dark)!important;
        }
        #m-register-error-message,
        #m-login-error-message {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: var(--primarioScuro) !important;
            padding: 0.5rem;
            position: absolute;
            z-index: 100;
            color: var(--secondarioScuro);
        }
        #m-register-error-message p,
        #m-login-error-message p {
            position: absolute;
            top: calc(40% + 6rem);
            width: 90%;
            line-height: 130%;
            font-weight: 400;
        }
        .loader-status::before {
            content: "";
            width: 50px;
            height: 50px;
            border: 6px solid transparent;
            border-top-color: var(--secondarioScuro);
            border-bottom-color: var(--secondarioScuro);
            border-radius: 50%;
            transform-origin: center;
            position: absolute;
            bottom: calc(50% + 1rem);
            left: 50%;
            animation: spin 0.8s linear infinite;
        } 
        .loader-status {
            bottom: 0;
            left: 0;
            z-index: 100;
            min-height: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;
            gap: 1rem;
            position: absolute;
            z-index: 1;
        }
        .loader-status::after {
            content: "Caricamento";
            font-size: clamp(16px, 4vw, 18px);
            font-weight: 600;
            color: var(--secondarioScuro);
            width: 100%;
            text-align: center;
            margin-top: 1rem;
        }
        .error-status {
            bottom: 0;
            left: 0;
            z-index: 100;
            min-height: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;
            gap: 1rem;
            position: absolute;
            z-index: 1;
            color: var(--secondarioScuro);
            background-color: var(--primarioScuro);
        }
        .error-status::before {
             content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NDAgNjQwIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0zMjAgNTc2QzQ2MS40IDU3NiA1NzYgNDYxLjQgNTc2IDMyMEM1NzYgMTc4LjYgNDYxLjQgNjQgMzIwIDY0QzE3OC42IDY0IDY0IDE3OC42IDY0IDMyMEM2NCA0NjEuNCAxNzguNiA1NzYgMzIwIDU3NnpNMzIwIDIwMEMzMzMuMyAyMDAgMzQ0IDIxMC43IDM0NCAyMjRMMzQ0IDMzNkMzNDQgMzQ5LjMgMzMzLjMgMzYwIDMyMCAzNjBDMzA2LjcgMzYwIDI5NiAzNDkuMyAyOTYgMzM2TDI5NiAyMjRDMjk2IDIxMC43IDMwNi43IDIwMCAzMjAgMjAweiBNMjkzLjMgNDE2QzI5Mi43IDQwNi4xIDI5Ny42IDM5Ni43IDMwNi4xIDM5MS41QzMxNC42IDM4Ni40IDMyNS4zIDM4Ni40IDMzMy44IDM5MS41QzM0Mi4zIDM5Ni43IDM0Ny4yIDQwNi4xIDM0Ni42IDQxNkMzNDcuMiA0MjUuOSAzNDIuMyA0MzUuMyAzMzMuOCA0NDAuNUMzMjUuMyA0NDUuNiAzMTQuNiA0NDUuNiAzMDYuMSA0NDAuNUMyOTcuNiA0MzUuMyAyOTIuNyA0MjUuOSAyOTMuMyA0MTZ6Ii8+PC9zdmc+");
            width: 56px;
            height: 56px;
            border-radius: 50%;
            position: absolute;
            color: currentColor;
            top: 31%;
            opacity: 0.75;
            box-shadow: 0 0 6px 2px var(--secondarioScuro);
            animation: pulseFade 1s linear infinite;
        } 
        .error-status::after {
            content: "Attenzione!";
            font-size: clamp(16px, 4vw, 18px);
            font-weight: 600;
            width: 100%;
            text-align: center;
            margin-top: 0;
            position: absolute;
            top: calc(31% + 5rem);
        }
        .success-status {
            bottom: 0;
            left: 0;
            z-index: 100;
            min-height: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;
            gap: 1rem;
            position: absolute;
            z-index: 1;
            color: var(--secondarioScuro);
            background-color: var(--primarioScuro)!important;
        }
        .success-status::before {
            content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NDAgNjQwIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0zMjAgNTc2QzQ2MS40IDU3NiA1NzYgNDYxLjQgNTc2IDMyMEM1NzYgMTc4LjYgNDYxLjQgNjQgMzIwIDY0QzE3OC42IDY0IDY0IDE3OC42IDY0IDMyMEM2NCA0NjEuNCAxNzguNiA1NzYgMzIwIDU3NnpNNDA0LjQgMjc2LjdMMzI0LjQgNDA0LjdDMzIwLjIgNDExLjQgMzEzIDQxNS42IDMwNS4xIDQxNkMzOTcuMiA0MTYuNCAyODkuNiA0MTIuOCAyODQuOSA0MDYuNEwyMzYuOSAzNDIuNEMyMjguOSAzMzEuOCAyMzEuMSAzMTYuOCAyNDEuNyAzMDguOEMyNTIuMyAzMDAuOCAyNjcuMyAzMDMgMjc1LjMgMzEzLjZMMzAyLjMgMzQ5LjZMMzYzLjcgMjUxLjNDMzcwLjcgMjQwLjEgMzg1LjUgMjM2LjYgMzk2LjggMjQzLjdDNDA4LjEgMjUwLjggNDExLjUgMjY1LjUgNDA0LjQgMjc2Ljh6Ii8+PC9zdmc+");
            width: 46px;
            height: 48px;
            border-radius: 50%;
            position: absolute;
            color: currentColor;
            bottom: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        } 
        /* .success-status::after {
            content: "Perfetto!";
            font-size: clamp(16px, 4vw, 18px);
            font-weight: 600;
            width: 100%;
            text-align: center;
            margin-top: 0;
            position: absolute;
            top: calc(31% + 5rem);
        } */
         .body-collapse-forgot-password .btn-large-round-outline i {
            width: auto;
            height: auto;
            display: none;
         }
    }
    /* Dropdown User */
    .user-dropdown {
        .text-account {
            padding: 1rem;
            flex-direction: column;
            gap: 0.5rem;
        }
    }

    /* OFFCANVAS CARRELLO */
    #offcanvasCart {

        .offcanvas-cart-header {
            border-bottom: 1px solid var(--grigio_light);
            padding: 0.5rem 1rem;
            box-shadow: none;
        }
        .cart-body {
            width: 100%;
            height: fit-content;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 10rem;
        }
        .offcanvas-cart-header i, h5 {
            color: var(--grigio_base);
        }
        .cart-footer {
            height: 7rem;
            gap: 3rem;
            box-shadow: 0 -2px 6px var(--grigio_light);
        }
        .cart-footer  .btn-square {
            color: var(--secondarioScuro);
            height: 56px;
            width: 56px;
            border: 1px solid var(--secondarioScuro);
            border-radius: 4px;
            transition: all 0.2s ease-in-out;
            min-width: 56px;
        }
        .cart-footer .btn-large-round-outline {
            border-radius: 4px;
            background: var(--secondarioScuro);
        }
        .btn-square:hover {
            color: var(--white);
            background: var(--primarioScuro);
            border: 1px solid transparent;
        }
        .cart-footer .container-inline-accordion-btn .btn-square {
            border: none;
        }
        /* #collapseSvuotaCarrello {
            position: absolute;
            z-index: 1;
            background: radial-gradient(var(--grigio_dark), var(--grigio_base));
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
        } */
    }
    /* CARD CARRELLO */
    .cart-card-container {
        height: fit-content;
        min-height: fit-content;
        box-shadow: none;
        border: none;
        border-bottom: 2px solid var(--grigio_base-opacity);

        .cart-header {
            background: transparent;
            border-bottom: 1px solid var(--grigio_light);
        }
        .title-prod-cart {
            font-size: 14px;
        }
    }

/* BODY */
.wrap-section-large {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    height: auto;
    padding: 0;

}
    /* SLIDER */
    .section-fullPage-slide {
        height: 840px;
        margin: 0;
        position: relative;
        animation: none;
        opacity: 1;
        flex: 1 0 100%;
        max-height: 82dvh;

        .fullPage-slide-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }
        .cont-text-container-might {
            position: absolute;
            top: auto;
            bottom: 0;
            left: 6rem;
            transform: translateX(0);
            z-index: 2;
            width: 600px;
            max-width: 100%;
            display: flex;
            gap: 1rem;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            text-align: start;
            padding: 1.5rem;
            background: transparent;
            height: 100%;
        }
        .btn-primary-classic {
            position: absolute;
            left: 7rem;
            bottom: 15%;
            z-index: 2;
            width: fit-content;
            height: 4rem;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            border-radius: 8px;
            border: 1px solid var(--white);
            min-width: 25%;
            box-shadow: none;
            background: transparent;
            transition: all 0.6s ease-in-out;
        }
        .btn-primary-classic:hover {
            border: 1px solid transparent;
            background: var(--secondarioScuro);
            box-shadow: none;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            animation: none;
        }
        .overlay-full-box {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(140deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0) 100%);
        }
        .full-slide-next, .full-slide-prev {
            position: relative !important;
            background-color: transparent;
            padding: 0;
            height: 4rem !important;
            width: 4rem !important;
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--white) !important;
            border: none;
            border-radius: 6px;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .2s ease-in-out;
            -moz-transition: all .2s ease-in-out;
            -webkit-transition: all .2s ease-in-out;
        }
        .full-slide-next:hover, .full-slide-prev:hover {
            color: var(--dark)!important;
            background-color: var(--light-opacity);
        }
        .container-btn-right,
        .container-btn-left {
            position: absolute;
            top: 0;
            height: 100%;
            z-index: 1;
            padding: 0;
            display: flex;
            align-items: center;
        }
        .container-btn-right {
            right: 0.5rem;
        }
        .container-btn-left {
            left: 0.5rem;
        }
        .title-parallax {
            height: fit-content;
            width: fit-content;
            font-family: "Tenor Sans", sans-serif;
            font-weight: 400;
            font-style: normal;
            line-height: 115%;
            font-size: clamp(36px, 4vw, 56px);
            text-align: start;
        }
        .subtitle-parallax {
            height: fit-content;
            width: fit-content;
            font-size: clamp(16px, 4vw, 24px);
            font-weight: 300;
            text-align: start;
        } 
    }

    /* BANNER PROMO */
    .banner-promo {
        padding: 0!important;
        position: sticky !important;
        top: calc(8rem - 2px);
        z-index: 1;

        .header-section {
            display: none!important;
        }
        .rectangular-box {
            border-radius: 0!important;
            background-color: var(--secondarioScuro)!important;
            scale: 1!important;
            min-height: fit-content!important;
        }
        a {
            pointer-events: none;
        }
        img {
            display: none;
        }
        .text-sottotitolo {
            display: none;
        }
        .container-info-box {
            height: auto!important;
            flex-direction: row !important;
            flex-wrap: wrap;
            justify-content: center !important;
            padding: 0.5rem 1rem !important;
        }
        .container-info-box .text-big-bold {
            color: var(--white);
            font-size: clamp(14px, 4vw, 16px);
            font-weight: 500;
            width: fit-content !important;
            min-height: fit-content !important;
        }
        .container-info-box .text-small { 
            display: none;
        }
        .container-info-box .text {
            font-size: clamp(12px, 4vw, 14px);
            font-weight: 400;
            color: var(--grigio_light);
            text-align: center!important;
        }
    }

    /* BOX CONTENUTO */
    .box-1-container {
        width: 35%;
        height: 65dvh;
        position: relative;
        overflow: hidden;
        animation: slideInRight 0.2s linear forwards;
        opacity: 0;

        .img-Box-1 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            /* animation: zoomInImageSlow 5s ease-in-out, slideInRight 5s ease-in-out; */
        }
        .info-box {
            position: absolute;
            bottom: 0;
            left: 0;
            height: fit-content;
            min-height: 50%;
            width: 480px;
            max-width: 100%;
            padding: 3% 4%;
            background: linear-gradient(180deg, var(--primarioChiaro) 35%, var(--primarioChiaro-opacity) 100%);
            color: var(--white);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            justify-content: space-around;
        }
        .info-box .text-big {
            font-size: clamp(13px, 4vw, 15px);
        }
        .btn-primary {
            width: 100%;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
    }

    /* CAROSELLO CARD PRODOTTI "Novità" */
    .product-new-container {
        height: 100%;
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        width: 100%;
        position: relative;
        padding: 0.75rem;
        min-height: fit-content;
        margin: 1rem auto;
        background-color: var(--light);
        /* box-shadow: 0 0 16px 0px var(--grigio_light); */
        padding: 0 1rem !important;

        .header-carousel {
            align-items: end;
            border-bottom: 1px solid var(--primarioScuro);
            gap: 0.25rem;
            margin: 0 0 0.5rem 0;
        }
        .header-carousel p {
            font-family: "Tenor Sans", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(28px, 4vw, 30px);
            width: fit-content;
            max-width: 100%;
            line-height: 120%;
            text-wrap: balance;
            word-wrap: break-word;
            margin-bottom: 0;
            color: var(--secondarioChiaro);
        }
        .header-carousel a  {
            color: var(--secondarioScuro);
        }
        .text-header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-inline: auto;
        }
        .swiper-button-next, .swiper-button-prev {
            color: var(--white) !important;
            border: none;
            background: var(--secondarioScuro);
            border-radius: 0;
            position: absolute !important;
            top: 50%;
        }
        /* .swiper-slide {
            margin: 0 0.5rem 0 0!important;
        } */
        .swiper-slide:first-child {
            margin: 0 0 0 3.5rem!important;
        }
        .swiper-slide:last-child {
            margin: 0 3.5rem 0 0!important;
        }
    }
    .swiper-carousel-card {
        padding: 1rem 0 2rem 0;
    }

    /* KLARNA BANNER */
    .container-centered-banner {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 2rem auto;
        background: #feb3c7;

        klarna-placement {
            width: auto;
            max-width: 100%;
            flex-wrap: wrap;
            display: flex;
        }
    }

    /* AZIENDA BOX */
    .wrap-full-box {
        width: 100%;
        height: auto;
        padding: 2rem 2%;
        display: flex;
        flex-wrap: wrap;
        gap: 5%;

        img {
            height: 460px;
            object-fit: cover;
            object-position: top;
            display: block;
            margin: 0 auto;
            flex: 1 0 1080px;
            width: 1080px;
            max-width: 100%;
        }
        .info-box {
            max-width: 96%;
            margin: 2rem auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex: 1 0 420px;
            align-items: center;
        }
        .info-box h3 {
            width: 420px;
            max-width: 100%;
            font-family: "Tenor Sans", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(24px, 4vw, 28px);
        }
        .info-box h6, p {
            width: 420px;
            max-width: 100%;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(14px, 4vw, 16px);
            line-height: 160%;
            color: var(--grigio_base);
        }
        .btn-primary {
            width: 420px;
            margin: 1.5rem 0 0 0;
            min-width: fit-content;
            max-width: 100%;
            height: 3rem;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondarioScuro);
            border-radius: 8px;
            border: 1px solid var(--secondarioScuro);
            box-shadow: none;
            background: transparent;
            transition: all 0.3s ease-in-out;
        }
        .btn-primary:hover {
            border: 1px solid transparent;
            background: var(--secondarioScuro);
            color: var(--white);
            box-shadow: none;
        }
    }

    /* CARD PRODOTTO */
    .container-card {
        width: 260px;
        max-width: 100%;
        min-height: 25rem;
        height: fit-content;
        max-height: 30rem;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        background-color: var(--white);
        position: relative;
        overflow: hidden;
        border-radius: 0;
        max-width: 100%;
        scale: 1;
        /* animation: zoomIn 0.4s ease-in-out forwards; */
        animation: none;
        transition: all 0.15s ease-in-out;
        padding: 0;
        box-shadow: none;

        .container-imgBrand {
            position: relative;
            width: 100%;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            z-index: 2;
            padding: 0.25rem 0;
            border-bottom: 1px solid var(--grigio_light-opacity);
        }
        .container-imgBrand img {
            width: auto;
            height: 100%;
            object-fit: contain;
        }

        .img-segnaposto {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            object-fit: contain;
            background: var(--primarioChiaro);
            opacity: 0;
            animation: fadeIn 2s ease-in-out forwards;
            transition: all .4s ease-in-out;
            -moz-transition: all .4s ease-in-out;
            -webkit-transition: all .4s ease-in-out;
            scale: 1;
        }
        .img-card-container {
            position: relative;
            overflow: hidden;
            height: 20rem;
            background-color: transparent;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
        }
        .img-card-container::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 48px;
            height: 48px;
            transform: translate(-50%, -50%);
            border: 3px solid rgba(0, 0, 0, 0.3);
            border-top-color: var(--primarioScuro);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 1;
            border-bottom-color: var(--primarioScuro);
        }
        .img-card {
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            background: var(--white);
            animation: fadeIn 0.2s linear forwards;
        }
        .img-card::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            transform: translate(-50%, -50%);
            border: 3px solid rgba(0, 0, 0, 0.2);
            border-top-color: var(--primarioChiaro);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 1;
        }
        .img-card-container .image {
            width: 100%;
            height: 100%;
            position: relative;
            object-fit: contain;
            padding: 1.25rem;
            opacity: 0;
            transform: translateX(0);
            border-radius: 4px;
            /* box-shadow: 0 0 6px 1px var(--grigio_dark-opacity); */
            position: absolute;
            z-index: 1;
            font-size: 16px;
            color: var(--primarioChiaro);
            place-content: end;
            text-align: center;
            animation: fadeIn 0.35s ease-in-out forwards;
            transition: scale 0.25s linear, transform 3.5s ease-in-out 0.5s;
            -moz-transition: scale 0.25s linear, transform 3.5s ease-in-out 0.5s;
            -webkit-transition: scale 0.25s linear, transform 3.5s ease-in-out 0.5s;
        }
        /* .img-card:hover {
            transform-origin: left center;
            scale: 2;
            transform: translateX(-50%);
        }
        .img-card:not(:hover) {
            transition: none;
            scale: 0.9;
            transform: translateX(0);
        } */
         /* .img-card:hover {
            scale: 1;
        } */
        .container-new {
            background: transparent;
            font-weight: 800;
            color: var(--secondarioScuro);
        }
        .container-sconto {
            background-color: transparent;
            flex-direction: row;
            gap: 0.25rem;
            top: 0.25rem;
            left: 0.25rem;
        }
        .container-sconto p {
            color: var(--sales-color);
        }
        .container-sconto,
        .container-new {
            z-index: 2;
            box-shadow: none;
            animation: none;
            border-radius: 0;
        }
        .nome-marketplace {
            position: absolute;
            z-index: 2;
            width: 90%;
            margin: 0 auto;
            bottom: 1rem;
            height: fit-content;
            padding: 0.5rem 0 0.75rem 0;
            text-align: center;
            background-color: var(--primarioChiaro-opacity);
            color: var(--white);
            border-radius: 8px;
            font-size: clamp(10px, 4vw, 12px);
            font-weight: 400;
            max-width: 100%;
            line-height: 125%;
            text-wrap: balance;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.25s ease-in-out;
        }
        /* .img-card:hover + .nome-marketplace {
            border-radius: 0;
            bottom: 0;
            width: 100%;
            font-weight: 600;
            padding: 1.5rem 0 1.5rem 0;
        } */
        .info-container {
            width: 100%;
            position: relative;
            max-height: 10rem;
            height: 100%;
            min-height: 10rem;
            bottom: 0;
            padding: 0.5rem 0.5rem 0.75rem 0.5rem;
            border-radius: 0.5rem;
            background: transparent;
            box-shadow: none;
            display: flex;
            flex-direction: column;
            gap: 4%;
        }
        .container-descrizione-dett {
            width: 100%;
            height: 100%;
            min-height: 3rem;
            max-height: 35%;
            color: var(--secondarioChiaro);
        }
        .container-descrizione-dett .text {
            font-weight: 600;
        }
        .container-descrizione {
            width: 100%;
            height: 100%;
            min-height: 3rem;
            max-height: 32%;
            color: var(--secondarioScuro);
        }
        .container-price {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            align-items: baseline;
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            max-width: 100%;
            min-height: auto;
            height: fit-content;
            max-height: 25%;
            border-top: 1px solid var(--primarioScuro);
            color: var(--secondarioScuro);
            padding: 0.25rem 0 0 0;
            background-color: transparent;
            border-radius: 4px;
            margin: auto auto 0 auto;
        }
        .container-price .text-big-bold {
            font-weight: 600;
        }
        .taglio {
            font-weight: 500;
            font-size: clamp(15px, 4vw, 16px);
        }
        .swiper-lazy-preloader {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            margin-left: 0;
            margin-top: 0;
            z-index: 10;
            transform-origin: 0;
            box-sizing: border-box;
            border: none;
            border-radius: 0.5rem;
            border-top-color: transparent;
            background: linear-gradient(90deg, 
            var(--grigio_light) 25%, 
            var(--light) 50%, 
            var(--grigio_light) 75%);
            background-size: 200% 100%;
            animation: placeholderShimmer 1.5s infinite!important;
        }
        .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
            animation: placeholderShimmer 1.5s infinite;
        }
        .overlay-varianti {
            position: absolute;
            z-index: 4;
            bottom: 10rem;
            left: 0.25rem;
            top: auto;
            width: auto;
            height: fit-content;
            opacity: 0;
            text-align: center;
            border-radius: .5rem;
            display: flex;
            flex-direction: row;
            gap: .25rem;
            align-items: center;
            justify-content: space-between;
            transform: translateX(-100%);
            min-width: fit-content;
            transition: all .3s ease;
            -moz-transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
        }
        .btn-round-label {
            display: inline-block;
            height: 2rem;
            width: fit-content;
            min-width: fit-content;
            max-width: 3rem;
            font-weight: 400;
            line-height: 0;
            text-align: center;
            text-decoration: none;
            vertical-align: middle;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            border: none;
            border-radius: 6px;
            font-size: 0.8rem;
            color: var(--secondarioChiaro);
            background-color: transparent;
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
        }
        .overlay-varianti p {
            color: var(--secondarioChiaro);
            font-size: 11px;
        }   
    }
    .container-card:hover {
        scale: 1;
        box-shadow: 0 0 8px var(--grigio_light);
    }
    .container-card:hover .img-card {
        scale: 1.05;
    }
    .container-card:hover .nome-marketplace {
        border-radius: 0;
        bottom: 0;
        width: 100%;
        font-weight: 600;
        padding: 1rem 0;
        background-color: var(--primarioScuro-opacity);
    }

    /* GRIGLIA CONTENUTI */
    .container-grid-contenuti {
        width: 100%;
        height: auto;

        .header-section {
            display: none;
        }
        .title-section {
            color: var(--white);
            text-align: center;
        }

        .grid-contenuti-squareBox {
            height: auto;
            display: grid;
            column-gap: 2%;
            width: 100%;
            max-width: 100%;
            position: relative;
            padding: 0 2%;
            row-gap: 2rem;
            margin: 4% auto;
            grid-template-columns: 1fr 1fr 1fr 1fr;
        }
    
        .square-box {
            height: 700px;
            max-height: 100%;
            min-height: 100%;
            /* flex: 1 0 280px; */
            border-radius: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 6px var(--grigio_light-opacity);
            background-color: var(--white);
            animation: zoomIn 0.5s ease-out forwards;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }
        .square-box::after {
            content: "";
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(transparent 15%, var(--grigio_dark-opacity) 90%);
        }
        img {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 0;
            object-fit: cover;
            transition: all 3s ease-in-out;
            -moz-transition: all 3s ease;
            -webkit-transition: all 3s ease;
        }
        img:hover {
            scale: 1;
        }
        .container-info-box {
            position: absolute;
            z-index: 2;
            color: var(--light);
            bottom: 0;
            left: 0;
            transform: translateY(0);
            padding: 1.5rem 1rem;
            width: 100%;
            height: fit-content;
            text-align: center;
            background: linear-gradient(to bottom, transparent, var(--black-opacity));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border-radius: 0;
            transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            -webkit-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }
        .square-box:hover {
            box-shadow: 0 0 12px 1px var(--light-opacity);
        }
        .square-box:hover .container-info-box {
            transform: translateY(0);
            height: 100%;
        }
        .square-box:hover img {
            scale: 1.25;
        }
        .square-box:hover::after {
           background: radial-gradient(transparent 60%, var(--black-opacity) 100%);
        }
        .container-info-box .title {
            font-family: "Tenor Sans", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(24px, 4vw, 28px);
            color: var(--white);
        }
        .container-info-box .text-big {
            color: var(--primarioChiaro);
        }
    }

    /* GRIGLIA CONTENUTI */
    .gridBox-Span-4 {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: radial-gradient(var(--primarioChiaro) 60%, var(--primarioScuro) 100%);
        padding: 2rem 0 4rem 0;
        gap: 2rem;

        .header-section {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid var(--white);
            padding: 0 0.5rem 1.5rem 0.5rem;
        }
        .title-section {
            color: var(--white);
            text-align: center;
        }

        .grid-contenuti-squareBox {
            height: auto;
            display: grid;
            column-gap: 4%;
            grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
            width: 85%;
            position: relative;
            padding: 0;
            row-gap: 2rem;
            margin: 0 auto;
        }
    
        .rectangular-box {
            width: 100%;
            min-width: 240px;
            height: 100%;
            max-height: 23rem;
            min-height: fit-content;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 6px var(--grigio_light-opacity);
            background-color: var(--light);
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }
        .rectangular-box:hover {
            scale: 1.025;
            box-shadow: 0 0 12px 1px var(--light-opacity);
        }
        .img-box {
            width: 100%;
            height: auto;
            overflow: hidden;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 6px 12px 1px var(--grigio_light);
            transition: all 1.5s ease-in-out;
            -moz-transition: all 1.5s ease;
            -webkit-transition: all 1.5s ease;
        }
        .img-box:hover {
            scale: 1;
        }
        .container-info-box {
            position: static;
            color: var(--light);
            padding: 1.5rem 1rem;
            width: 100%;
            height: auto;
            text-align: center;
            background: transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border-radius: 0;
            transform: none;
            will-change: transform;
        }
        .container-info-box h3 {
            text-align: start;
            min-height: 4.5rem;
            width: 100%;
            color: var(--primarioChiaro);
        }
        .container-info-box p {
            opacity: 1;
            transform: translateY(0);
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-clamp: 3;
            -webkit-line-clamp: 3;
            max-height: fit-content;
            white-space: normal;
            text-align: start;
            color: var(--secondarioScuro);
            will-change: contents;
            backface-visibility: hidden;
        }
    }

    /* CAROSELLO CONTENUTI */
    .carousel-box {
        width: 100%;
        height: auto;
        position: relative;
        /* box-shadow: 0 0 6px var(--grigio_base-opacity); */
        padding: 0 1rem 2rem 1rem;

        .header-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem 1rem 1rem 1rem;
            border-bottom: 1px solid var(--primarioChiaro);
        }
        .title-section {
            color: var(--primarioChiaro);
        }
        .rectangular-box {
            width: 100%;
            min-width: 240px;
            height: 100%;
            max-height: 28rem;
            min-height: 28rem;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 6px var(--grigio_base-opacity);
            background-color: var(--grigio_light-opacity);
            display: flex;
            flex-direction: column;
            scale: 0.9;
            transition: all 0.15s ease-in-out;
            -moz-transition: all 0.15s ease-in-out;
            -webkit-transition: all 0.15s ease-in-out;
        }
        .rectangular-box:hover {
            scale: 0.975;
        }
        .container-info-box {
            position: relative;
            color: var(--light);
            padding: 1rem;
            width: 100%;
            height: 12rem;
            text-align: center;
            background: transparent;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 0.5rem;
            border-radius: 0;
            transform: translateY(0);
        }
        .img-box {
            width: 100%;
            height: 260px;
            min-height: 260px;
            overflow: hidden;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 6px 12px 1px var(--grigio_base-opacity);
            transition: all 1.5s ease-in-out;
            -moz-transition: all 1.5s ease;
            -webkit-transition: all 1.5s ease;
        }
        .img-box:hover {
            scale: 1;
        }
        .text-sottotitolo {
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            height: fit-content;
            width: fit-content;
            padding: 0.5rem;
            box-shadow: 3px 3px 6px var(--grigio_dark-opacity);
            background-color: var(--primarioScuro-opacity);
            border-radius: 0 0 4px 0;
            color: var(--white);
        }
        .container-info-box .text-big-bold {
            transform: translateY(0);
            text-align: start;
            min-height: 3rem;
            width: 100%;
            color: var(--primarioChiaro);
        }
        .container-info-box p {
            transform: translateY(0);
            opacity: 1;
            color: var(--secondarioScuro);
            text-align: start;
        }
        .data-pubblicazione {
            margin-top: auto;
            margin-left: auto;
            color: var(--primarioScuro-opacity)!important;
        }
    }

/* FILTRI */
.filters-component {
    /* position: sticky;
    top: 8rem;
    z-index: 1054; */
    background: var(--light);
    border-bottom: 1px solid var(--grigio_light);

    .filters-nav-container {
        width: 100%;
        overflow-x: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 5%;
    }

    .filterSide-container {
        top: 0;
        left: 0;
        width: 400px;
        /* border-right: 1px solid rgba(0, 0, 0, .2); */
        /* transform: translateY(100%); */
        height: 100dvh;
        background: var(--white);
        z-index: 1054;
    }
    .offcanvas-header {
        border-bottom: 1px solid var(--grigio_light);
    }
    .offcanvas-body {
        max-height: calc(100dvh - 6rem);
        padding: 0 0 2rem 0;
    }
    .accordion-button {
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 1;
        padding: 2rem 1rem;
        transition: all 0.2s ease-in-out;
    }
    .accordion-button:hover {
        background: var(--light);
    }
    .filter-categories .body-filterBox {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    .filter-varianti .column-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
    .column-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 0 1rem 1.5rem;
    }
    .filter-item-group {
        padding: 0 0 0 0.5rem;
        border-left: 1px solid var(--grigio_light);
        display: flex;
        gap: 0.5rem;
        align-items: baseline;
    }
    .accordion-item {
        background-color: transparent;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    select {
        min-width: fit-content !important;
        width: fit-content!important;
        padding: 0 2rem 0 0.5rem !important;
    }
    .btn-square {
        width: auto;
        min-width: 3rem;
        gap: 0.5rem;
        border-radius: 0;
        border: 1px solid var(--grigio_light);
        padding: 0 0.5rem;
        font-size: clamp(14px, 4vw, 15px);
    }
    .btn-square:hover {
        background-color: var(--white);
        font-weight: 400;
    }
    .btn-square:active {
        scale: 1;
    }
    #labelFiltersSide {
        color: var(--dark);
    }
    .filters-collapse-container {
        top: 0;
        height: 100%;
    }
    .input-filter {
        min-width: fit-content;
        max-width: 100%;
        border: none;
    }
    .radio-tile-label {
        color: var(--dark);
        user-select: none;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
    .form-check-input[type=checkbox] {
        border-radius: 0;
    }

    .checkbox-button:checked + .btn-big-round-outline {
        border: none;
        background-color: var(--secondarioScuro);
        scale: 1;
        color: var(--light);
        font-weight: 600;
    }
    .radio-button:checked + .btn-big-round-outline {
        scale: 1;
        border: none;
        background-color: var(--secondarioScuro);
        color: var(--white);
        box-shadow:none;
        border-radius: 0;
    }
    .input-filter:hover {
        opacity: 0.95;
        scale: 1;
    }
    .dropdown-item {
        color: var(--grigio_light);
    }
    .collapse-gruppi {
        border-left: 1px solid var(--light);
    }
    .collapse-sottogruppi {
        width: 100%;
        padding: 0 0 0 1rem;
    }
    .btn-filters-side {
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        border: none;
        border-radius: 4px 4px 0 0;
        padding: 1rem 6rem 1.5rem 1rem;
        box-shadow: none;
        position: fixed;
        z-index: 100;
        bottom: 0;
        top: auto;
        left: 10.5rem;
        transition: all 0.5s ease-in-out;
        width: fit-content;
        height: fit-content;
        background-color: var(--secondarioChiaro);
        color: var(--white);
        font-size: clamp(16px, 4vw, 18px);
        font-weight: 700;
        max-width: 100%;
        line-height: 120%;
        text-wrap: balance;
    }
    .btn-filters-side:hover {
        scale: 1.025;
        border-radius: 0 4px 4px 0;
        background-color: var(--secondarioChiaroOpacity);
        width: fit-content;
    }
} 

/* PAGINA PRODOTTI */
.container-pageProdotti {
    display: flex;
    width: 100%;
    flex-direction: column;

    /* Contenitore Contenuto */
    .container-infoContenuto {
        display: flex;
        justify-content: center;
        width: 100%;
        position: relative;
        top: 0;
        height: 360px;
        max-height: 100%;
        background: linear-gradient(to bottom, var(--primarioScuro), var(--light));
        overflow: hidden;
        padding: 0;
        /* background-image: url(/assets/images/background-elencoProdotti.webp); */
        /* background-size: cover; */
        /* background-position: center; */
        /* background-repeat: no-repeat; */
        /* animation: slideInLeft 0.6s linear both; */
    }
    .container-infoContenuto::after {
        content: "";
        position: absolute;
        z-index: 0;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(to top, transparent 0, var(--grigio_base-opacity) 80%);
    }
    .container-infoContenuto .img-contenuto-cover {
        position: absolute;
        object-fit: cover;
    }
    .img-container-logo .img-contenuto-cover {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .img-container-logo {
        width: 8rem;
        position: absolute;
        height: 8rem;
        z-index: 1;
        top: 50%;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
    }
    .img-container-logo .image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .image {
        position: absolute;
        object-fit: cover;
    }
    .img-container {
        height: 100%;
        width: 0;
        z-index: 0;
        padding: 0;
        display: flex;
    }
    .img-container::after {
        content: "";
        background: linear-gradient(to top, var(--light) 30%, transparent 100%);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
    }
    /* img {
        position: relative;
        width: auto;
        height: 75%;
        object-fit: contain;
        border-radius: 8px;
        margin: 1rem auto 0 1rem;
        box-shadow: 0 0 6px var(--grigio_base-opacity);
        z-index: 2;
        display: none;
    }
    img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: contain;
        left: 0;
        top: 0;
        object-position: center;
    } */
    .img-categoriaIcon {
        background-color: var(--light);
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        margin: 0;
        border-radius: 0;
        position: absolute;
        z-index: 0;
    }
    .text-container {
        position: relative;
        width: 100%;
        height: fit-content;
        bottom: 0;
        left: 0;
        z-index: 1;
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        padding: 0.5rem 5%;
        margin: auto 0 0 0;
        align-items: flex-end;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .text-container h1 {
        color: var(--black);
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        font-family: "Tenor Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        width: 100%;
        height: fit-content;
        text-transform: capitalize;
    }
    .text-container p:first-child {
        display: none;
    }
    .text-container h6 {
        color: var(--grigio_dark);
        display: none;
    }
    .text-container .items {
        margin: 0 0 0 auto;
        color: var(--grigio_dark);
    }

    /* Contenitore Prodotti */
    .container-prodotti {
        height: auto;
        min-height: 60dvh;
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        width: 100%;
        max-width: 100%;
        position: relative;
        padding: 1rem 5%;
    }
    .container-prodotti::after {
        content: "";
        border: 3px solid transparent;
        border-top-color: var(--dark);
        border-bottom-color: var(--dark);
        border-radius: 50%;
        animation: spin 0.75s ease-in-out infinite forwards;
        position: absolute;
        width: 3rem;
        height: 3rem;
        top: 50%;
        left: 50%;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    .container-prodotti.show-loader::after {
        opacity: 1;
    }
    .container-productNotFound {
        position: absolute;
        height: 100%;
        padding: 2%;
        width: 100%;
    }
    .text-prodNotFound {
        position: absolute;
        z-index: 1;
        top: 15%;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        left: 0;
    }

    .img-background-productNotFound {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
    }

    .container-pagination {
        width: 100%;
        height: fit-content;
        padding: 1rem 0.5rem;
        margin: 2rem 0 1rem 0;
        border-top: 1px solid var(--grigio_light);
    }
    .button-page-list {
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .btn-pagination {
        font-variant-numeric: tabular-nums;
        min-width: 3rem;
        font-style: italic;
        font-weight: 500;
        width: fit-content;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: var(--white);
        color: var(--dark);
        transition: all 0.2s ease-in-out;
    }
    .btn-pagination:hover {
        background: var(--grigio_light);
    }
    .disabled {
        opacity: 0.5;
        cursor: auto;
        pointer-events: none;
    }
    .active {
        background: var(--dark);
        color: var(--white);
    }
}

/* PAGINA ELENCO BRAND */
.elenco-brand-container {
    height: auto;
    min-height: 60dvh;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    width: 1480px;
    max-width: 100%;
    margin: 2rem auto;
    position: relative;
    gap: 1rem;
    padding: 1rem;

    .card-brand {
        width: 100%;
        height: 18rem;
        box-shadow: none;
        background: var(--white);
        display: flex;
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
        border-radius: 6px;
        scale: 0.95;
        transition: all 0.2s ease-in-out;
    }
    .card-brand:hover {
        scale: 1;
        box-shadow: 0 0 6px var(--grigio_base-opacity);
    }
    .img-brand-container {
        width: 100%;
        height: 12rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .img-brand-container .image {
        width: 100%;
        height: inherit;
        object-fit: contain;
        border-radius: 8px;
    }
    .text-big {
        width: 100%;
        text-align: center;
        border-top: 1px solid var(--grigio_light);
        padding: 0.5rem 0 0 0;
        color: var(--dark);
        margin: auto;
    }
}
.elenco-brand-container::after {
    content: "";
    border: 3px solid transparent;
    border-top-color: var(--dark);
    border-bottom-color: var(--dark);
    border-radius: 50%;
    animation: spin 0.75s ease-in-out infinite forwards;
    position: absolute;
    width: 3rem;
    height: 3rem;
    top: 50%;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.elenco-brand-container.show-loader::after {
    opacity: 1;
}

/* PAGINA ELENCO PRODOTTI PER BRAND */
.brandProdotti-container {

    .container-infoContenuto {
        display: flex;
        justify-content: center;
        width: 100%;
        /* position: sticky; */
        z-index: -1;
        /* top: 8rem; */
        height: 420px;
        max-height: 100%;
        background: linear-gradient(to bottom, var(--primarioScuro), var(--light));
        overflow: hidden;
        padding: 0;
        /* background-image: url(/assets/images/background-elencoProdotti.webp); */
        /* background-size: cover; */
        /* background-position: center; */
        /* background-repeat: no-repeat; */
        /* animation: slideInLeft 0.6s linear both; */
    }
    .container-infoContenuto .img-contenuto-cover {
        object-fit: cover;
    }
    .img-container-brand {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .img-container-brand .image {
        width: auto;
        height: 100px;
        object-fit: contain;
        padding: 1rem;
        background: var(--white);
        box-shadow: 0 0 6px 1px var(--grigio_base-opacity);
    }
    .img-container {
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        padding: 0;
        display: flex;
    }
    .img-container .image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* PAGINA DETTAGLIO PRODOTTO */
.wrap-container-2-col {
    display: flex;
    gap: 0;
    padding: 0;
    min-height: 100%;
    width: 1480px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
}
    /* Gallery */
    #m-prodotto-gallery {
        overflow: hidden;
        background: transparent;
        flex: 1 0 720px;
        max-width: 100%;
        height: fit-content;
        min-height: 60dvh;
        background: var(--grigio_light-opacity);
        position: relative;
        margin: 2% 0 0 0;
    }
    #m-prodotto-gallery::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, var(--grigio_light) 50%, transparent 100%);
        animation: shimmer 1s infinite;
    }

    .gallery-section {
        height: auto;
        min-height: 60dvh;
        max-height: 100%;
        display: flex;
        flex-direction: row-reverse;
        gap: 1%;
        transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        padding: 0 5% 5% 5%;
        background: var(--light);
        animation: none;
        opacity: 1;

        .container-thumb-slider {
            display: flex;
            gap: 0.5rem;
            border-top: 1px solid var(--primarioChiaro);
            padding: 1%;
            border-bottom: 1px solid var(--primarioChiaro);
        }
        .container-thumb-slider .swiper-slide {
            height: auto!important;
        }
        .img-gallery-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100%;
            padding: 1rem;
            background: var(--white);
        }
        .img-gallery-product {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            max-height: 100%;
        }
        .text-slideIn {
            display: none;
            z-index: 2;
            color: var(--white);
            text-shadow: 1px 1px black;
            filter: drop-shadow(0px 0px 1px var(--dark));
            width: 100%;
            text-align: center;
            justify-content: center;
        }
        .container-btn-thumb {
            height: fit-content;
            max-width: 30%;
            width: 3rem;
            display: flex;
            justify-content: space-between;
            position: absolute;
            align-items: flex-end;
            min-height: fit-content;
            margin: 0 auto;
            bottom: 0.5rem;
            right: 0.5rem;
            gap: 1rem;
            z-index: 10;
        }
        .thumb-gallery-slider .img-gallery-container {
            width: 8rem;
            height: auto;
            border: 1px solid var(--grigio_light-opacity);
            background: var(--white);
            padding: 0.25rem;
            transition: all 0.2s ease-in-out;
            background: var(--white);
        }
        .thumb-gallery-slider .img-gallery-thumb-product {
            width: 100%;
            height: 100%;
            object-fit: contain;
            aspect-ratio: 1 / 1;
        }
        .thumb-prev,
        .thumb-next {
            position: relative!important;
            background-color: transparent;
            padding: 1.5rem;
            border-radius: 50%;
            height: 3rem!important;
            width: 3rem!important;
            color: var(--primarioChiaro)!important;
            border: 1px solid var(--primarioChiaro);
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 500;
        }
        .gallery-prev, .gallery-next {
            border-radius: 0;
            background-color: transparent;
            color: var(--secondarioScuro) !important;
            border: 1px solid var(--secondarioScuro);
        }
        .gallery-prev:hover, 
        .gallery-next:hover {
            border-radius: 0;
            background-color: var(--primarioChiaro);
            color: var(--white);
        }
        .swiper-pagination-fraction {
            background-color: var(--primarioScuro-opacity);
            color: var(--secondarioScuro);
            min-width: fit-content;
            padding: .25rem 1rem;
            border-radius: 0;
            margin: auto auto 0.5rem 0.5rem;
            inset: 0;
            height: 2rem;
            max-width: 5rem;
            font-size: clamp(12px, 4vw, 14px);
        }
        .swiper-slide-thumb-active {
            border: 2px solid var(--secondarioChiaro);
            box-shadow: none;
        }
    }

    /* Info prodotto */
    .container-info-product {
        position: relative;
        box-shadow: none;
        height: 100%;
        width: auto;
        background: transparent;
        color: var(--black);
        max-height: 100%!important;
        animation: slideInRight 0.5s ease-in-out;
        overflow-y: auto;
        scrollbar-gutter: stable both-edges;
        direction: ltr;
        flex: 1 0 520px;
        max-width: 100%;

        .container-price {
            display: flex;
            gap: 1rem;
            flex-direction: column;
        }
        .container-price .container-inline-price:nth-child(2) {
            display: none;
        }
        .container-inline-price {
            gap: 0.5rem;
        }
        .btn-sconto {
            width: fit-content;
            height: fit-content;
            background-color: var(--red-color);
            box-shadow: 0 0 2px var(--grigio_light-opacity);
            display: flex;
            flex-direction: row;
            gap: .25rem;
            align-items: center;
            justify-content: center;
            padding: .25rem;
            animation: none;
        }

        #m-buttons-container {
            padding: 1rem 0;
            width: 100%;
            height: fit-content;
        }
        .m-addCart-buttons-container {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            flex-direction: row-reverse;
        }
        .selettore-quantita {
            width: auto;
            height: 4rem;
            display: flex;
            justify-content: space-between;
            padding: .25rem;
            border: .5px solid var(--grigio_light);
            border-radius: 4px;
            min-width: fit-content;
            max-width: auto;
            flex: 1 0 250px;
        }

        #m-prodotto-descrizione {
            padding: 1rem 0 0 0;
            font-family: "Tenor Sans", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        .wrap-container-asimmetric {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            padding: 5% 0 0 0;
            direction: ltr;
        }
        .little-info-col {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: relative;
            width: 100%;
            align-items: flex-start;
            justify-content: space-between;
        }
        #accordionDescrizioneLibera {
            direction: ltr;
            padding: 1rem;
        }
        .accordion-button,
        .accordion-outline {
            background-color: transparent;
        }
        .accordion-button::after {
            flex-shrink: 0;
            width: 1.25rem;
            height: 1.25rem;
            margin-left: auto;
            content: "";
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000' %3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-size: 1.25rem;
            transition: transform .2s ease-in-out;
        }
        .body-descrizione {
            padding: 1rem 6% 1rem 0;
        }
        .body-descrizione .text {
            font-size: clamp(14px, 4vw, 15px);
        }
        .btn-animate-1.animation {
            width: 100%;
            background-image: linear-gradient(to left, 
                                                var(--secondarioScuro), 
                                                var(--secondarioChiaro), 
                                                var(--secondarioScuro), 
                                                var(--secondarioChiaro));
            box-shadow: 2px 2px 6px 0 var(--grigio_light);
            color: var(--light);
            flex: 1 0 200px;
        }
        .btn-animate-1.animation span {
            display: none;
        }
        .btn-add-cart {
            position: relative;
            overflow: hidden;
        }
        .btn-add-cart .fa-cart-arrow-down {
            position: absolute;
            opacity: 0;
            transform: translateX(-5rem);
            padding: 0;
            background-color: var(--secondarioChiaro);
            border-radius: 50%;
            transition: padding 0.4s ease-in-out, opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
        }
        .btn-add-cart:hover .fa-cart-arrow-down {
            opacity: 1;
            transform: translateX(-8rem);
            padding: 3rem 2rem 3rem 8rem;
        }
        .btn-add-cart::after {
            content:"Aggiungi al carrello";
            font-size: 16px;
            font-weight: 600;
            color: var(--grigio_light);
            margin: 0 auto;
            transition: all 0.2s ease-in-out;
        }
        .btn-add-cart:hover::after {
            content:"Aggiungi";
            font-weight: 800;
            color: var(--white);
            margin: 0 15% 0 auto;
        }
        .fa-check,
        .fa-x,
        .fa-spin {
            position: absolute;
            width: 200%;
            padding: 16rem 0;
            background: radial-gradient(var(--secondarioScuro), var(--secondarioChiaro));
        }
        .fa-check,
        .fa-x {
            animation: none;
        }
        .message-addCart {
            width: 100%;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
        }
        .btn-container {
            padding: 1rem;
            direction: ltr;
        }
        .pagamenti-container,
        .might-container-col {
            direction: ltr;
            border-left: 1px solid var(--grigio_light);
        }
        a.text-link {
            color: var(--secondarioChiaro);
        }

        .varianti-container {
            direction: ltr;
            width: 100%;
            display: block;
            height: auto;
            margin: 0 auto;
            background: var(--grigio_light-opacity);
            min-height: 13.5rem;
            position: relative;
            z-index: 0;
            overflow: hidden;
        }
        .varianti-container::after {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: -150%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, var(--grigio_light) 50%, transparent 100%);
            animation: shimmer 1.5s infinite;
        }
        .slider-section {
            animation: slideInLeft .2s ease-out forwards;
        }
        .carousel-varianti {
            background: var(--light);
        }
        .carousel-varianti .swiper {
            padding: .5rem !important;
        }
        .swiper-slide {
            width: auto;
        }
        .btn-varianti {
            user-select: none;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 9rem;
            max-height: 9rem;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem;
            border: .5px solid var(--grigio_light);
            text-align: center;
            cursor: pointer;
            background-color: var(--white);
            width: auto;
            min-width: 6rem;
            max-width: 6rem;
            transition: all .15s ease-in-out;
            -moz-transition: all .15s ease-in-out;
            -webkit-transition: all .15s ease-in-out;
        }
        .btn-check:checked + .btn-varianti {
            border: 2px solid var(--secondarioChiaro);
            box-shadow: none;
            transform: translateY(-0.4rem);
        }
        .btn-check:disabled + .btn-varianti {
            cursor: default;
            opacity: 0.4;
        }
        .container-btn-carousel {
            height: 3.25rem;
        }
        .swiper-button-next, .swiper-button-prev {
            color: var(--secondarioScuro) !important;
            border: 1px solid var(--secondarioScuro-opacity);
            border-radius: 0;
        }

        .box-info-container {
            height: auto;
            margin: 2% auto 2rem auto;
            gap: 0.5rem;
        }
        .box-info-container .box-container {
            flex: 1 0 100%;
            height: fit-content;
            min-height: fit-content;
            background: var(--primarioScuro-opacity);
            flex-direction: row;
            gap: 1rem;
            align-items: center;
            justify-content: flex-start;
            padding: 1rem;
        }
        .box-info-container .text-container {
            align-items: flex-start;
        }
        .box-info-container .text {
            text-align: left;
        }
        .btn-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            border: none;
            background: var(--white);
            color: forestgreen;
            margin: 0 0 1rem 0;
            padding: 1rem;
            transition: all 0.2s ease-in-out;
        }
        .btn-whatsapp:hover {
            background: forestgreen;
            color: var(--white);
        }
    }
    /* Ridurre la larghezza della scrollbar */
    .container-info-product::-webkit-scrollbar {
        width: 12px; /* Larghezza verticale */
        height: 12px; /* Altezza orizzontale */
    }
    /* Stile del track (sfondo della scrollbar) */
    .container-info-product::-webkit-scrollbar-track {
        background: var(--light);
        border-radius: 0;
    }
    /* Stile del thumb (maniglia della scrollbar) */
    .container-info-product::-webkit-scrollbar-thumb {
        background: var(--primarioChiaro-opacity);
        border-radius: 0;
    }
    /* Effetto hover */
    .container-info-product::-webkit-scrollbar-thumb:hover {
        background: var(--primarioChiaro);
    }
    /* Nascondere i bottoni di default che causano la duplicazione */
    /* .container-info-product::-webkit-scrollbar-button {
        display: none; /* Nasconde tutti i bottoni per default 
    } */ 

    /* Widget */
    .widget-container {
        display: flex;
        width: 94%;
        height: auto;
        padding: 0.75rem;
        gap: 0.5rem;
        margin: 0 auto;
        border-top: 1px solid var(--grigio_light);

        .img-widget {
            width: 52px;
            height: 52px;
            object-fit: contain;
            aspect-ratio: 1 / 1;
            padding: 0.35rem;
            background-color: var(--light);
            border-radius: 4px;
            box-shadow: 0 0 3px var(--grigio_base-opacity);
        }
        .img-pagamenti {
            width: fit-content;
            height: 40px;
            object-fit: contain;
        }
        .text-container {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .flex-column {
            flex-direction: column;
        }
        .error-container {
            background-color:#7e161d;
            color: var(--white);
        }
    }
    .alert-container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        height: fit-content;
        padding: 0.5rem;
        border: 1px solid var(--red-color);
        margin: 0.5rem auto 1rem auto;
        .text-big-bold {
            color: var(--red-color);
        }
        .text {
            font-size: clamp(12px, 4vw, 14px);
            font-weight: 300;
        }
    }
    .politiche-container {
        width: 100%;
        padding: 0.5rem 0;
        border: none;

        a {
            color: var(--primarioChiaro);
            transition: all 0.2s ease-in-out;
        }
        a:hover {
            text-decoration: underline;
        }
    }
    .pagamenti-container {
        display: flex;
        flex-direction: column;
        border: none;
        width: 94%;
        gap: 1rem;
        padding: 1rem;
        border-top: 1px solid var(--grigio_light);
    }
    #accordionFidelityBuy {
        direction: ltr;
        padding: 0 0 0 1rem;

        .body {
            display: flex;
            flex-direction: column;
            padding: 1rem;
            gap: 1rem;
        }
        .card-fidelity-acquistata {
            background: var(--light);
            border-radius: 6px;
            color: var(--primarioScuro);
            display: flex;
            overflow: hidden;
            box-shadow: 0 0 4px var(--grigio_base-opacity);
        }
        .img {
            width: auto;
            height: 100%;
            object-fit: contain;
            aspect-ratio: 1 / 1;
        }
        .info {
            display: flex;
            flex-direction: column;
            padding: 1rem;
            height: auto;
            justify-content: space-between;
            width: 100%;
        }
    }
    /* Box Info Cliente */
    .box-info-container {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        margin: 2% auto;

        .box-container {
            flex: 1 0 200px;
            height: fit-content;
            min-height: 16rem;
            background: var(--primarioScuro);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            aspect-ratio: 1 / 1;
        }
        .text-container {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
        }
        .text {
            text-align: center;
            color: var(--grigio_base);
        }
        .text-link {
            color: var(--secondarioScuro);
            text-decoration: underline;
        }
        .text-link:hover {
            text-decoration: underline;
        }
    }

/* FOOTER */
.footer-light {
    background-color: var(--grigio_base);
    gap: 0;
    min-height: fit-content;
    height: fit-content;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: none;
    justify-content: center;
    position: static;
    z-index: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;

    .section-container {
        position: relative;
        display: flex;
        justify-content: center;
        padding: 4% 0;
        height: fit-content;
        margin: 0 auto;
        flex-wrap: wrap;
        width: 1680px;
        max-width: 96%;
        gap: 2rem 1rem;
    }
    .col-footer {
        padding: 0 0 0 1rem;
        margin: 0 auto;
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        justify-content: flex-start;
        height: auto;
        border-left: none;
        flex: 1 0 340px;
    }
    .col-footer .subtitle {
        font-size: clamp(20px, 4vw, 24px);
        font-weight: 600;
        width: fit-content;
        max-width: 100%;
        line-height: 130%;
        text-wrap: balance;
        word-wrap: break-word;
        color: var(--grigio_light);
    }
    .pagamenti-container .text-big-bold {
        font-size: clamp(20px, 4vw, 24px);
        font-weight: 600;
        color: var(--grigio_light);
    }
    .social-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: auto;
    }
    .social-container .subtitle {
        width: 100%;
    }
    .social-container .text-big-bold {
        margin-right: 0.25rem;
    }
    .social-container a {
        transition: all 0.2s ease-in-out;
    }
    .social-container a:hover {
        scale: 1.1;
    }
    .banner-footer {
        grid-column: span 3;
        margin-top: auto;
        position: static;
        min-height: auto;
        padding: 0.5rem 1rem;
    }
    .logo-footer-container {
        width: auto!important;
        height: 3rem;
    }
    .logo-brand-container {
        width: 12rem;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: auto;
        margin-bottom: 2rem;
        max-width: 40%;
    }
    .footer-img-logo {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .logo-wide {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .licenza-list {
        display: flex;
        width: 100%;
        gap: 1rem;
        flex-wrap: wrap;
        flex-direction: row;
    }
    .data-container-col {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 0.25rem;
        margin: 0;
        justify-content: flex-start;
        flex: 1 0 200px;
        height: fit-content;
    }
    .data-container-col p {
        color: var(--white);
    }
    .grigio_base {
        color: var(--grigio_light)!important;
    }
    .slogan {
        display: none;
    }
    .pagamenti-container {
        width: 100%;
        border: none;
        padding: 0;
    }
}

/* NEWSLETTER */
.newsletter-Boxcontainer {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 520px;
    margin: 4% auto;

    .cover-container {
        width: 100%;
        height: 520px;
    }
    .img-widget {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .body-newsletter {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 337px;
        max-width: 100%;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: 100%;
        justify-content: space-evenly;
        align-items: center;
    }
    .subtitle-big {
        font-size: clamp(24px, 4vw, 26px);
        color: var(--white);
    }
    .text-big {
        color: var(--grigio_light-opacity);
        text-align: center;
    }
    .text {
        color: var(--light);
        text-align: center;
    }
    .form-floating {
        width: 100%;
    }
    .btn-standard {
        padding: .5rem;
        border: none;
        border-radius: .5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .75rem;
        height: 56px;
        width: 100%;
        color: var(--white);
        background: var(--primarioChiaro);
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        font-size: 1rem;
        font-weight: 500;
    }
}

/* NASCONDI ELEMENTI  */
/* Nascondi elemento in versione mobile */
.hide-mobile {
    display: flex;
}
/* Nascondi elemento in versione desktop */
.hide-desktop {
    display: none;
}

/* SCREEN M */
@media screen and (min-width: 1280px) and (max-width: 1480px) {
    .gridBox-Span-4 .grid-contenuti-squareBox {
        column-gap: 4%;
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        width: 60%;
    }
    /* HEADER (MENU SOTTOGRUPPI) */
    .menuScroll-sottogruppi {
        height: 5rem;
    }
    .menuScroll-sottogruppi .box-sottogruppo {
        min-width: 5rem;
        max-width: 5rem;
        scale: 0.9;
    }
    .menuScroll-sottogruppi .box-sottogruppo:hover .img-sottogruppo {
        display: none;
    }
    .menuScroll-sottogruppi  .box-sottogruppo:hover .text-sottogruppo {
        font-size: 8px;
    }
    .menuScroll-sottogruppi .swiper-lazy-preloader {
        top: 28%;
        left: 27%;
    }
}

/* SCREEN S-M */
@media screen and (min-width: 1080px) and (max-width: 1279px) {
    .gridBox-Span-4 .grid-contenuti-squareBox {
        column-gap: 4%;
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        width: 60%;
    }
    /* HEADER (MENU SOTTOGRUPPI) */
    .menuScroll-sottogruppi {
        height: 5rem;
    }
    .menuScroll-sottogruppi .box-sottogruppo {
        min-width: 5rem;
        max-width: 5rem;
        scale: 0.9;
    }
    .menuScroll-sottogruppi .box-sottogruppo:hover .img-sottogruppo {
        display: none;
    }
    .menuScroll-sottogruppi  .box-sottogruppo:hover .text-sottogruppo {
        font-size: 8px;
    }
    .menuScroll-sottogruppi .swiper-lazy-preloader {
        top: 28%;
        left: 27%;
    }
}

/* SCREEN S */
@media screen and (min-width: 768px) and (max-width: 1079px) {
    /* HEADER */
    .nav-interactive .container-fluid {
        padding: 0 2% !important;
    }
    .nav-interactive .nav-left {
        max-width: fit-content;
    }
    .nav-interactive  .nav-right {
        max-width: fit-content;
        gap: 0.25rem;
    }
    /* HEADER (MENU SOTTOGRUPPI) */
    .menuScroll-sottogruppi {
        height: 5rem;
    }
    .menuScroll-sottogruppi .box-sottogruppo {
        min-width: 5rem;
        max-width: 5rem;
        scale: 0.9;
    }
    .menuScroll-sottogruppi .box-sottogruppo:hover .img-sottogruppo {
        display: none;
    }
    .menuScroll-sottogruppi  .box-sottogruppo:hover .text-sottogruppo {
        font-size: 8px;
    }
    .menuScroll-sottogruppi .swiper-lazy-preloader {
        top: 28%;
        left: 27%;
    }
    
    /* BODY */
    .section-fullPage-slide {
        width: 100%;
        height: 65dvh;
    }
    .box-1-container {
        width: 100%;
    }
    .box-1-container .info-box {
        height: 100%;
        gap: 2rem;
    }
    .box-1-container .info-box h3 {
        margin-top: auto;
    }
    .gridBox-Span-4 .grid-contenuti-squareBox {
        column-gap: 4%;
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        width: 80%;
    }
    /* Banner Promo */
    .banner-promo {
        top: calc(5rem - 2px);
    }
    /* Box sottogruppi */
    .container-grid-contenuti .grid-contenuti-squareBox {
        grid-template-columns: 1fr 1fr;
    }

    /* FOOTER */
    .footer-light .section-container {
        grid-template-columns: 1fr 1fr;
    }

    /* PAGINA PRODOTTI */
    .container-pageProdotti {
        display: flex;
        flex-direction: column;
    }
    .container-pageProdotti .img-container {
        padding: 1rem;
    }
    .container-pageProdotti .img-contenuto {
        box-shadow: -80px -40px 1px 1px var(--primarioScuro-opacity);
    }
    .container-pageProdotti .img-categoriaIcon {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .container-pageProdotti .text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .container-pageProdotti .container-infoContenuto {
        position: relative;
        top: 0;
        min-height: fit-content;
        flex-direction: row;
        height: fit-content;
        padding: 3rem 0 0 0;
    }

    /* PAGINA DETTAGLIO PRODOTTO */
    .container-info-product {
        max-height: 100% !important;
        overflow-y: auto;
    }

    /* CARDS */
    .container-card {
        scale: 1;
        width: 100%;
        max-width: 100%;
    }
    .container-card .img-card-container {
        height: 15rem;
    }
    .container-card .nome-marketplace {
        bottom: 0.75rem;
    }
    .container-card .info-container {
        padding: 0 0.5rem;
    }

    /* NASCONDI ELEMENTI  */
    /* Nascondi elemento in versione mobile */
    .hide-mobile {
        display: none;
    }
    /* Nascondi elemento in versione desktop */
    .hide-desktop {
        display: flex;
    }
}

/* XS SCREEN */
@media screen and (max-width: 767px) {
    /* HEADER */
    .nav-interactive {
        height: fit-content!important;
    }
    .nav-interactive .container-fluid {
        padding: 0 1rem 0 0.5rem !important;
        justify-content: space-between !important;
    }
    .nav-right, .nav-left {
        max-width: 100%!important;
    }
    .nav-interactive .nav-left {
        max-width: auto!important;
    }
    .nav-interactive .nav-right {
        gap: 0.25rem!important;
        max-width: auto!important;
    }
    .menuScroll-sottogruppi {
        height: 4rem;
        padding: 0.5rem 0.25rem;
    }
    .menuScroll-sottogruppi .box-sottogruppo {
        min-width: 100%;
        max-width: 100%;
        flex-direction: row;
        padding: 0.5rem;
        border-radius: 4px;
        scale: 0.96;
        gap: 0.25rem;
    }
    .menuScroll-sottogruppi .box-sottogruppo:hover {
        min-width: 100%;
        max-width: 100%;
        scale: none;
        border-radius: 8px;
    }
    .menuScroll-sottogruppi .img-sottogruppo {
        height: 100%;
        width: 25%;
    }
    .menuScroll-sottogruppi .box-sottogruppo:hover .img-sottogruppo {
        scale: none;
    }
    .menuScroll-sottogruppi .text-sottogruppo {
        display: -webkit-box;
        transform: scaleX(0.97);
        letter-spacing: -0.01em;
        transform-origin: center;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        white-space: normal;
        height: fit-content;
    }
    .menuScroll-sottogruppi .swiper-lazy-preloader {
        top: 50%;
        left: 15%;
        transform: translateY(-5%);
    }
    .menuScroll-sottogruppi .swiper-lazy-preloader::after {
        top: 19%;
    }
    /* Dropdown User */
    .user-dropdown {
        margin: 1rem auto !important;
        width: 100%;
        min-width: 98dvw !important;
        left: 1dvw !important;
    }
    /* Ricerca */
    .search-result-container {
        z-index: 1054;
        top: 7rem;
        height: calc(100dvh - 7rem);
    }
    .search-result-container .container-prodotti {
        grid-template-columns: 1fr 1fr;
        padding: 0.5rem;
        gap: 0.25rem;
    }
    .search-result-container .header-carousel {
        padding: 0 2%!important;
    }
    .search-container {
        width: 100%;
    }
    .search-container:focus-within {
        width: 100%;
    }
    .container-prodotti .container-card {
        width: 100%;
    }
    .carousel-search .swiper-slide:first-child {
        margin: 0 0.5rem 0 1rem!important;
    }
    .carousel-search .swiper-slide:last-child {
        margin: 0 1rem 0 0.5rem!important;
    }

    /* HOME-PAGE */
    /* Page container */
    .wrap-section-large {
        padding: 0 !important;
    }
    /* Slides */
    .section-fullPage-slide {
        width: 100%;
        height: 32rem;
        max-height: 100dvh;
    }
    .section-fullPage-slide .cont-text-container-might {
        width: 100%;
        left: 0;
        justify-content: end;
        padding: 5rem 1rem 3rem 1rem;
        align-items: center;
    }
    .section-fullPage-slide .btn-primary-classic {
        width: 100%;
        bottom: 0;
        left: 0;
        height: 100%;
        border: none;
        align-items: end;
        padding: 1rem 1rem 0.75rem 1rem;
        justify-content: center;
        border-radius: 0;
    }
    .section-fullPage-slide .btn-primary-classic:hover {
        background: transparent;
    }
    .section-fullPage-slide .btn-primary-classic:active {
        background: var(--grigio_dark-opacity);
    }
    .section-fullPage-slide .btn-primary-classic p {
        text-decoration: underline;
    }
    .section-fullPage-slide .overlay-full-box {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 20%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0.25) 100%);
    }
    /* Banner promo */
    .banner-promo {
        top: calc(5rem - 2px);
    }
    .product-new-container {
        padding: 0!important;
    }
    /* Carosello prodotti NEW */
    .swiper-carousel-card {
        padding: 1rem 0.5rem 2rem 0;
    }
    .product-new-container .swiper-slide:first-child {
        margin: 0 0 0 0.5rem!important;
    }
    .product-new-container .swiper-slide:last-child {
        margin: 0!important;
    }
    /* Box sottogruppi */
    .container-grid-contenuti .grid-contenuti-squareBox {
        grid-template-columns: 1fr;
    }
    .container-grid-contenuti .square-box {
        height: 25rem;
        min-height: fit-content;
        max-height: 100%;
    }
    .container-grid-contenuti .container-info-box {
        opacity: 1;
        top: auto;
        transform: none;
    }
    .container-grid-contenuti .container-info-box p {
        opacity: 1;
        transform: translateY(0);
    }

    /* Box Azienda */
    .wrap-full-box img {
        height: 100%;
    }

    /* CARDS */
    .container-card {
        scale: 0.98;
        width: 100%;
        max-width: 100%;
    }
    .container-card:hover {
        scale: 1;
    }
    .container-card .img-card-container {
        height: 15rem;
    }
    .container-card .nome-marketplace {
        bottom: 0.75rem;
    }
    .container-card .info-container {
        padding: 0 0.5rem;
    }
    .container-card .container-price {
        flex-wrap: wrap;
        max-width: 100%;
        min-height: fit-content;
        padding: 0.5rem 0;
        margin: auto;
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        font-optical-sizing: auto;
        font-variant: tabular-nums;
    }
    .container-card .container-price .text-big-bold {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0;
    }

    /* PAGINA PRODOTTI */
    .container-pageProdotti {
        display: flex;
        flex-direction: column;
    }
    .container-pageProdotti .img-container {
        width: 100%;
    }
    .container-pageProdotti .img-categoriaIcon {
        bottom: auto;
        top: 1rem;
    }
    .container-pageProdotti .img-contenuto {
        width: 100%;
        height: 100%;
        max-height: 100%;
    }
    .container-pageProdotti .img-contenuto-cover {
        max-height: 100%;
    }
    .container-pageProdotti .text-container {
        position: absolute;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: end;
        background: linear-gradient(to top, var(--grigio_light-opacity), transparent);
    }
    .container-pageProdotti .container-prodotti {
        grid-template-columns: 50% 50%!important;
        padding: 0.75rem 0.5rem;
        gap: 0;
        column-gap: 0.25rem;
        row-gap: 1rem;
    }

    /* PAGINA DETTAGLIO PRODOTTO */
    .wrap-container-2-col {
        grid-template-columns: 1fr;
    }
    .gallery-section {
        width: 100%;
        height: 100% !important;
        max-height: 100%;
        padding: 0;
    }
    .gallery-section .img-gallery-product {
        max-width: 100%;
    }
    .container-thumb-slider {
        height: 100%!important;
    }
    .img-gallery-container {
        padding: 0.25rem !important;
    }

    /* PAGINA PUNTI VENDITA */
    .cover-pageSellingPoint {
        display: flex;
        flex-direction: column-reverse;
        height: 100%;
        max-height: 100%;
    }
    .cover-pageSellingPoint .text-container {
        position: relative;
        width: 100%;
        background: linear-gradient(to top, var(--primarioScuro), #7e161d);
    }
    .cover-pageSellingPoint .img-contenuto-container {
        position: relative;
        width: 100%;
    }
    .carousel-marketplace .header-carousel {
        padding: 1rem !important;
    }
    .carousel-gallery-puntoVendita-container .img-gallery-container:hover {
        scale: 1;
    }
    .corpo-puntoVendita .grid-container-corpo {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }
    /* Corpo punto vendita pagina marketPlace */
    .corpo-puntoVendita .text-container {
        gap: 1rem;
    }

    /* FOOTER */
    .footer-light .section-container {
        grid-template-columns: 1fr
    }
    .footer-light .licenza-list {
        grid-template-columns: 1fr
    }
    .footer-light .banner-footer {
        padding: 1rem 1rem 6rem 1rem!important;
        justify-content: center!important;
    }
    /* .footer-light .banner-footer a {
        width: fit-content!important;
        height: 2rem;
    }
    .footer-light .banner-footer p {
        width: fit-content!important;
        font-size: 10px!important;
    }
    .footer-light .banner-footer button {
        text-align: center;
        width: 100%!important;
    } */

    /* NASCONDI ELEMENTI  */
    /* Nascondi elemento in versione mobile */
    .hide-mobile {
        display: none;
    }
    /* Nascondi elemento in versione desktop */
    .hide-desktop {
        display: flex;
    }
}

/* ANIMAZIONI */
/* Entrata da destra */
@keyframes slideInRight {
    from {
    transform: translateX(100%);
    opacity: 0;
    }
    to {
    transform: translateX(0);
    opacity: 1;
    }
}

/* Rotazione spinner */
@keyframes spin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Movimento del gradiente */
@keyframes placeholderShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
@keyframes shimmer {
  100% {
    left: 150%;
  }
}

@keyframes zoomOutEffect {
    0% {
        transform: scale(15);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateZoom {
  0% {
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(180deg) scale(1.2);
  }
  100% {
    transform: rotateY(360deg) scale(1);
  }
}