/*FONT*/
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

/*ROOT COLORI*/
:root {
    --primo: #ff7676;
    --primo-opacity: #ff76767a;
    --primo-background: rgba(255, 118, 118, 0.3);

    --secondo: #466c95;
    --secondo-opacity: #466c9570;
    --secondo-background: rgba(70, 108, 149, 0.3);

    --terzo: #5dae8b;
    --terzo-opacity: #5dae8b7c;
    --terzo-background: rgba(93, 174, 139, 0.3);

    --quarto: #f6f49d; 
    --quarto-opacity: #f6f59d7e;

    --azienda: #5e524b;
    --azienda-opacity: rgba(94, 82, 75, 0.5);

    --primarioChiaro: #5e524b;
    --primarioChiaro-opacity: rgba(94, 82, 75, 0.5);

    --black-opacity: rgba(0, 0, 0, .4);
}

*
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.grecaptcha-badge {
    z-index: 1000;
}

/* LOADER */
.loaderPulsIn {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    transform: rotate(45deg);
    scale: 2;
}
.loaderPulsIn::before {
    content: '';  
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: -24px;
    padding: 0;
    border-radius: 0;
    animation: animloader 4s ease infinite;
}
.loaderPulsIn::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 0;
    border-radius: 0;
    animation: animloader2 2s ease infinite;
}
.loaderTextSmoke {
    display: none;
}

/* PAGINA SITO IN COSTRUZIONE */
.page-costruction {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: var(--white);

    .img-Box-1 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .info-box {
        position: absolute;
        z-index: 3;
        top: 0;
        height: calc(100% - 4dvh);
        width: 480px;
        max-width: 90%;
        display: flex;
        flex-direction: column;
        gap: 1%;
        justify-content: center;
        padding: 2dvh 3%;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to top, var(--light-medium), var(--white));
    }
    .logo-azienda {
        width: 100%;
        height: 280px;
        max-height: 45%;
        object-fit: contain;
        margin: 0 auto;
    }
    .subtitle {
        font-size: clamp(32px, 4vw, 50px);
        font-weight: 800;
        font-style: normal;
        margin: auto 0 0 0;
        width: 100%;
        text-align: center;
        color: var(--primarioChiaro);
    }
    .text-big-bold {
        font-size: clamp(20px, 4vw, 24px);
        line-height: 110%;
        font-weight: 400;
        width: 100%;
        text-align: center;
        color: var(--primarioScuro);
    }
    .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-container:first-child {
        filter: drop-shadow(2px 1px 0px var(--grigio_base));
    }
    .logo-wide {
        width: auto;
        height: 80px;
        object-fit: contain;
    }
}

/* COOKIE */
.background-cookie {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--grigio_dark-opacity);

    .banner-cookie {
        position: absolute;
        width: 480px;
        max-width: 98%;
        height: fit-content;
        max-height: 100dvh;
        overflow-y: auto;
        bottom: 1%;
        margin: 0 1%;;
        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;
    }
    button {
        max-width: 100%;
        transition: all 0.2s ease-in-out;
    }
    button:hover {
        scale: 1;
        opacity: 0.8;
    }
    .footer-banner button:nth-of-type(2) {
        background: var(--azienda);
        color: var(--white);
    }
}

/* BOTTONE WHATSAPP */
.whatsapp-btn {
    bottom: 5.5rem;
    border-radius: 4px;
}

/* HEADER */
.nav-interactive {
    width: 100%;
    height: fit-content;
    z-index: 1030;
    top: 0;
    background: transparent;
    position: fixed;
    box-shadow: none;
    padding: 0;
    transition: top 0.6s ease-in-out;
    -webkit-transition: top 0.6s ease-in-out;
    -moz-transition: top 0.6s ease-in-out;

    /* Top Bar */
    .container-fluid {
        width: 100%;
        height: 5rem;
        background: transparent;
        box-shadow: none;
        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;
        position: absolute;
        top: 0;
        width: 200px;
        height: 16rem;
        background: var(--white);
        max-width: fit-content;
    }
    .nav-center {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        height: inherit;
        left: 50%;
        transform: translateX(-50%);
        width: 880px;
        max-width: 50%;
    }
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.5rem;
        height: 100%;
        width: 100%;
        max-width: fit-content;
        margin: 0 0 0 auto;
    }
    .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;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 0 8px var(--grigio_dark-opacity);
    }
    .logo-img {
        height: 140px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: left;
        max-height: 100%;
        margin: auto 0 0 0;
    }
    .badge {
        top: 0.65rem !important;
        right: -0.75rem !important;
        left: auto !important;
        padding: 0.25rem 0.45rem !important;
        background-color: #dc3545a6 !important;
    }
    .rounded-pill {
        border-radius: 0!important;
    }
    .btn-rounded {
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        box-shadow: 0 0 6px 1px var(--grigio_dark-opacity);
        color: var(--azienda);
        width: 3rem;
        min-width: 3rem;
        height: 3rem;
        background: var(--light);
        border-radius: 0;
        padding: 0;
        transition: all 0.2s ease-in-out;
    }
    .btn-rounded:hover {
        background: var(--light);
    }
    .btn-rounded i {
        font-weight: 800;
    }

    /* 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(--primo);
        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(--primo);
        text-align: start;
        transition: all 0.2s ease-in-out;
    }
    .item-subMenu:last-child {
        border-bottom: none;
    }
    .item-subMenu:hover {
        background-color: var(--primo-opacity);
        box-shadow: inset 0 0 8px 1px var(--grigio_base-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(--primo);
        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;
    }
}
/* INPUT RICERCA */
.search-container {
    position: relative;
    display: inline-block;
    width: 100%;
    transition: width 0.3s ease-in-out;
    color: var(--azienda);
    max-width: 100%;
    background: transparent;

    .search-icon {
        position: absolute;
        top: 50%;
        left: 16px;
        transform: translateY(-50%);
        pointer-events: none;
        font-size: 1rem;
    }
    .search-input-classic {
        height: 3rem;
        padding: 0.5rem 0.5rem 0.6rem 2.5rem;
        border: none;
        box-shadow: 0 0 6px 1px var(--grigio_base-opacity);
        border-radius: 0;
        outline: none;
        font-size: 1rem;
        background: var(--light-medium);
        color: var(--azienda);
        width: 100%; /* Assicurati che l'input occupi tutto lo spazio del contenitore */
        transition: all 0.3s ease-in-out;
    }
    .search-input-classic:hover {
        background: var(--light);
    }
    .search-input-classic:focus {
        width: 100%;
        color: var(--dark);
        background: var(--light);
    }
}
/* Offcanvas ricerca mobile */
.offcanvas-search {
    padding: 0.5rem;
    height: 7.5rem !important;
    justify-content: space-between;
    z-index: 1054;
    gap: 0.5rem;

    .offcanvas-header {
        height: fit-content;
        padding: 0;
    }
}
/* Contenitore risultati di ricerca */
.search-result-container {
    position: fixed;
    z-index: 1053;
    height: calc(100dvh - 10rem);
    background-color: var(--light);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 880px;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 6px var(--grigio_dark-opacity);
    top: 7.5rem;

    .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_base-opacity);
    }
    .header-search button {
        margin-left: auto;
        width: fit-content;
        padding: 0 1rem;
        color: var(--dark);
        border: 2px solid var(--dark);
    }

    .search-result-box {
        width: 100%;
        position: relative;
        z-index: 2;
        overflow-y: auto;
        height: 100%;
    }
    .container-prodotti {
        height: auto;
        min-height: 100%;
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        width: 100%;
        position: relative;
        padding: 1rem 5%;
        background-color: var(--light);
    }
    .container-card {
        min-width: 16rem;
    }
    .container-card .info-container {
        border-left: none;
        border-top: 1px solid var(--azienda);
    }
    .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;
    }
}
.search-result-container::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 6px solid transparent;
    border-left-color: var(--primo);
    border-right-color: var(--secondo);
    border-bottom-color: var(--terzo);
    border-top-color: var(--quarto);
    transform-origin: center;
    animation: rotation 1s linear infinite;
    z-index: 1;
}

/* MENU */
.offcanvas-menu {
    visibility: visible;
    background: var(--light-medium);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    .offcanvas-header {
        background: var(--light-medium);
    }
    .accordion-item {
        background: transparent;
    }
    .accordion-button {
        position: sticky;
        top: 0;
        background: var(--light-medium);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 1;
    }
    .accordion-button .text-big-bold {
        color: var(--dark);
    }
    .container-body {
        overflow: auto;
    }
    .accordion-body {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .accordion-body .text {
        padding: 1rem 1rem 1rem 2rem;
        width: 100%;
        background: var(--light-opacity);
        color: var(--grigio_dark);
        transition: all 0.2s ease-in-out;
    }
    .accordion-body .text:hover {
        background: var(--light);
    }
    .footer {
        display: none;
    }
}

/* OFFCANVAS CARRELLO */
#offcanvasCart {

    .cart-footer {
        height: 7rem;
        gap: 0.5rem 2%;
        box-shadow: 0 -2px 6px var(--grigio_light);
        flex-wrap: wrap;
        padding: 0.5rem;
    }
    .row-tot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid var(--grigio_base);
        padding: 0 0 0.25rem 0;
    }
    .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(--primarioChiaro);
        flex: 1 0 280px;
    }
    .btn-square:hover {
        color: var(--white);
        background: var(--azienda);
        border: 1px solid transparent;
    }
    .cart-footer .container-inline-accordion-btn .btn-square {
        border: none;
    }
}

/* CARD CARRELLO */
.cart-card-container {

    .cart-header {
        background: transparent;
        padding: 0.35rem;
    }

    .title-prod-cart {
        font-size: clamp(12px, 4vw, 14px);
        font-weight: 500;
    }
}

/* PAGE CONTAINER */
.wrap-full-slide {
    height: 100%;
}

/* COMPONENTE VIDEO (VIMEO) */
.vimeo-wrapper {
  position: relative;
  width: 100vw;
  /* height: 100vh; */
  overflow: hidden; /* taglia i lati */
  aspect-ratio: 16 / 9;
}

.vimeo-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}
/* .vimeo-ratio { position: relative; width:100%; padding-bottom:56.25%;}
.vimeo-ratio iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; } */

/* MAIN SLIDER (AZIENDA) */
.azienda-box {
    position: relative;
    width: 100%;
    height: 1080px;
    margin: 0 auto 9rem auto;
    max-height: 100svh;
    overflow: hidden;

    .video {
        width: 100%;
        height: 720px;

        max-height: 100lvh;
        object-fit: cover;
        /* position: absolute;
        top: 0;
        z-index: 1;
        left: 0; */
    }
    .info-box {
        position: absolute;
        z-index: 2;
        padding: 3%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 920px;
        justify-content: center;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 auto;
        align-items: center;
    }
    /* .info-box::after {
        content: "";
        width: 180px;
        height: 180px;
        background: var(--primo-opacity);
        box-shadow: 0 0 6px 1px var(--grigio_base-opacity);
        position: absolute;
        top: -6rem;
        right: -4rem;
        z-index: -1;
    } */
    /* .info-box::before {
        content: "";
        width: 120px;
        height: 120px;
        background: var(--primo);
        box-shadow: 0 0 6px 1px var(--grigio_base-opacity);
        position: absolute;
        bottom: -5rem;
        left: -5rem;
        z-index: -1;
    } */
    .subtitle {
        font-size: clamp(48px, 4vw, 60px);
        line-height: normal;
        font-family: "Poiret One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: var(--white);
        background: var(--azienda);
        padding: 1rem 2rem;
    }
    .text-big-bold {
        text-align: center;
        color: var(--light);
        line-height: 150%;
        font-weight: 400;
    }
    .text-big {
        display: none;
    }
    .btn-full {
        width: 100%;
        max-width: 380px;
        height: 4rem;
        margin: 3% 0 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--azienda-opacity);
        border: 4px solid var(--light);
        color: var(--white);
        /* box-shadow: 12px 12px 0px 1px var(--light-opacity); */
        transition: all 0.2s ease-in-out;
        font-size: 16px;
        font-weight: 600;
    }
    .btn-full:hover {
        background: var(--azienda);
        color: var(--white);
        box-shadow: 0 0 8px 1px var(--white);
        border: 4px solid transparent;
    }
}
.azienda-box::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    max-height: 100dvh;
    opacity: 0.75;
    background: linear-gradient(to top, var(--black-opacity) 25%, transparent 100%);
}
/* .azienda-box::before {
    content: "";
    background: url(/assets/media/cover-video.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    max-height: 100dvh;
    display: block;
    position: absolute;
    z-index: -1;
} */

/* LEFT BOX */
.left-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    background: var(--terzo-background);

    img {
        height: 640px;
        object-fit: cover;
        aspect-ratio: 1 / 1;
        flex: 1 0 320px;
        max-width: 100%;
        padding: 0 5%;
        top: 3rem;
        position: relative;
    }
    .info-box {
        position: relative;
        height: 640px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 4rem 3rem 8% 5%;
        flex: 1 0 320px;
        max-width: 100%;
        z-index: 1;
    }
    .info-box::after {
        content: "";
        width: 300px;
        max-width: 50%;
        height: 50%;
        background: var(--terzo-opacity);
        position: absolute;
        top: -6rem;
        left: 2rem;
        z-index: -1;
        opacity: 0.5;
    }
    .subtitle {
        font-size: clamp(48px, 4vw, 56px);
        line-height: normal;
        font-family: "Poiret One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: var(--black);
        margin: auto 0 0 0;
    }
    .text-big-bold {
        color: var(--grigio_dark);
        width: 540px;
        max-width: 100%;
        line-height: 150%;
    }
    .text-big {
        color: var(--grigio_dark);
        font-size: 16px;
        width: 620px;
        max-width: 100%;
        line-height: 150%;
    }
    .btn-full {
        width: 100%;
        max-width: 380px;
        height: 4rem;
        margin: auto 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 4px solid var(--terzo);
        color: var(--terzo);
        /* box-shadow: 12px 12px 0px 1px var(--terzo-opacity); */
        transition: all 0.2s ease-in-out;
        font-size: 16px;
        font-weight: 600;
    }
    .btn-full:hover {
        background: var(--terzo);
        color: var(--white);
        box-shadow: none;
        border: 4px solid transparent;
    }

}

/* RIGHT BOX */
.right-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    background: var(--secondo-background);
    /* margin: 9rem auto 0 auto; */

    img {
        height: 640px;
        object-fit: cover;
        aspect-ratio: 1 / 1!important;
        flex: 1 0 320px;
        max-width: 100%;
        padding: 0 5%;
        top: 3rem;
        position: relative;
    }
    .info-box {
        position: relative;
        height: 640px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 4rem 5% 5% 8%;
        flex: 1 0 320px;
        max-width: 100%;
        z-index: 1;
    }
    .info-box::after {
        content: "";
        width: 300px;
        max-width: 50%;
        height: 300px;
        background: var(--secondo-opacity);
        position: absolute;
        top: -7rem;
        left: -2rem;
        z-index: -1;
        opacity: 0.5;
    }
    .subtitle {
        font-size: clamp(48px, 4vw, 56px);
        line-height: normal;
        font-family: "Poiret One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: var(--dark);
        margin: auto 0 0 0;
    }
    .text-big-bold {
        color: var(--grigio_dark);
        width: 540px;
        max-width: 100%;
        line-height: 150%;
    }
    .text-big {
        color: var(--grigio_dark);
        font-size: 16px;
        width: 620px;
        max-width: 100%;
        line-height: 150%;
    }
    .btn-full {
        width: 100%;
        max-width: 380px;
        height: 4rem;
        margin: auto 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 4px solid var(--secondo);
        color: var(--secondo);
        /* box-shadow: -12px 12px 0px 1px var(--secondo-opacity); */
        transition: all 0.2s ease-in-out;
        font-size: 16px;
        font-weight: 600;
    }
    .btn-full:hover {
        background: var(--secondo);
        color: var(--white);
        box-shadow: none;
        border: 4px solid transparent;
    }
}

/* CENTER BOX */
.center-box {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    overflow: hidden;

    .video {
        width: 100%;
        height: auto;
        max-height: 70dvh;
        object-fit: cover;
    }
    .info-box {
        position: absolute;
        z-index: 3;
        width: 480px;
        max-width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        padding: 3% 1rem 3rem 2rem;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: var(--white);
    }
    .info-box::after {
        content: "";
        width: 200px;
        height: 200px;
        background: var(--primo-opacity);
        position: absolute;
        top: -6rem;
        right: -6rem;
        z-index: 2;
        opacity: 0.75;
    }
    .subtitle {
        font-size: clamp(48px, 4vw, 56px);
        line-height: normal;
        font-family: "Poiret One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: var(--black);
        margin: auto 0 0 0;
        text-align: center;
    }
    .text-big-bold {
        color: var(--grigio_dark);
        font-weight: 400;
    }
    .text-big {
        color: var(--grigio_base);
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }
    .btn-full {
        width: 100%;
        max-width: 380px;
        height: 4rem;
        margin: auto auto 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 4px solid var(--primo);
        color: var(--primo);
        /* box-shadow: -12px 12px 0px 1px var(--primo-opacity); */
        transition: all 0.2s ease-in-out;
        font-size: 16px;
        font-weight: 600;
    }
    .btn-full:hover {
        background: var(--primo);
        color: var(--white);
        box-shadow: none;
        border: 4px solid transparent;
    }
}
.center-box::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(transparent 65%, var(--dark) 100%);
}
/* .center-box::before {
    content: "";
    background: url(/assets/media/cover-video.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: -1;
} */

/* CAROUSEL PRODUCT */
.product-carousel {
    width: 100%;
    padding: 0;
    overflow: auto;
    margin: 4% 0 8% 0;
    min-height: 306px;
    display: flex;
    align-items: center;
    justify-content: center;

    .loader {
        width: 48px;
        height: 48px;
        display: inline-block;
        position: relative;
        transform: rotate(45deg);
        scale: 1.5;
    }
    .loader::before {
        content: '';  
        box-sizing: border-box;
        width: 24px;
        height: 24px;
        position: absolute;
        left: 0;
        top: -24px;
        animation: animloader 4s ease infinite;
    }
    .loader::after {
        content: '';  
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 24px;
        height: 24px;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        animation: animloader2 2s ease infinite;
    }

    .header-carousel {
        padding: 0!important;
    }
    .text-header-container {
        display: none;
    }
    .swiper-button-next {
        position: absolute !important;
        right: 0.5rem;
        border-radius: 0;
        top: 50%;
        bottom: 0;
        background: var(--azienda);
        color: var(--white) !important;
        padding: 0;
        height: 3.5rem !important;
        border: none;
        box-shadow: 0 0 6px 1px var(--grigio_light);
        width: 3.5rem !important;
        transform: translateY(-50%);
    }
    .swiper-button-prev {
        position: absolute !important;
        left: 0.5rem;
        border-radius: 0;
        top: 50%;
        bottom: 0;
        background: var(--azienda);
        color: var(--white) !important;
        padding: 0;
        height: 3.5rem !important;
        border: none;
        box-shadow: 0 0 6px 1px var(--grigio_light);
        width: 3.5rem !important;
        transform: translateY(-50%);
    }
    .swiper-pagination-bullet {
        border-radius: 0;
    }
    .swiper-pagination-bullet-active {
        background: var(--azienda);
    }
    .swiper-carousel-card {
        padding: 2rem 0;
    }
    .swiper-slide {
        width: fit-content;
    }
    .swiper-slide:first-child {
        margin: 0 0 0 4.5rem;
    }
    .swiper-slide:last-child {
        margin: 0 4.5rem 0 0;
    }
    .container-card {
        container-type: normal;
        min-width: fit-content;
    }
}

/* CARD PRODOTTO */
.container-card {
    width: 480px;
    min-width: auto;
    max-width: 100%;
    height: fit-content;
    max-height: fit-content;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 0 6px var(--grigio_light);
    min-height: 15rem;
    margin: 0 auto;
    container-type: inline-size;
    container-name: card;

    .container-img,
    .img-card-container {
        flex: 1 0 180px;
        max-width: 240px;
        height: 240px;
        padding: 0.5rem;
    }
    a {
        flex: 1 0 180px;
    }
    .info-container {
        flex: 1 0 170px;
        position: relative;
        max-height: 100%;
        height: 100%;
        min-height: fit-content;
        bottom: 0;
        padding: 1rem;
        border-radius: .5rem;
        background: transparent;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        border-left: 1px solid var(--azienda);
        border-radius: 0;
        max-width: 300px;
    }
    .container-descrizione-dett {
        width: 100%;
        height: 100%;
        min-height: 3rem;
        max-height: fit-content;
        color: var(--azienda);
    }
    .container-descrizione {
        width: 100%;
        height: 100%;
        min-height: 3rem;
        max-height: fit-content;
        color: var(--dark);
    }
    .container-new {
        position: absolute;
        top: .5rem;
        left: .5rem;
        background-color: var(--azienda);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        box-shadow: 0 -1px 12px var(--grigio_base-opacity);
        animation: zoomInLoop 3s infinite;
        height: 2.5rem;
        width: 2.5rem;
    }
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        aspect-ratio: 1 / 1;
    }
    .img-card {
        width: 100%;
        height: 100%;
        object-fit: contain;
        aspect-ratio: 1 / 1;
        padding: 0;
    }
    .container-price {
        border: none;
        color: var(--azienda);
        justify-content: flex-start;
    }
    .container-price p {
        font-weight: 500;
    }
}

/* CONTAINER CARD */
@container card (max-width: 340px) {
    .info-container {
        border-left: none!important;
        border-top: 1px solid var(--azienda);
    }
}

/* 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;
    }
    .offcanvas-footer {
        width: 100%;
        height: fit-content;
        padding: 0.5rem;
    }
    .offcanvas-footer .btn-square {
        width: 100%;
        background: var(--primarioScuro);
    }
    .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 ELENCO PRODOTTI */
.container-pageProdotti {
    height: 100%;
    min-height: 90dvh;

    .container-infoContenuto {
        height: 540px;
        max-height: 100dvh;
        width: 100%;
        position: relative;
    }
    .img-container {
        width: 100%;
        height: 100%;
        border-bottom: 12px solid var(--azienda-opacity);
    }
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .text-container {
        position: absolute;
        left: auto;
        width: 460px;
        max-width: 100%;
        height: calc(100% - 12px);
        min-height: fit-content;
        right: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-end;
        background: var(--azienda-opacity);
        color: var(--white);
        padding: 5rem 1rem 1rem 2rem;
        box-shadow: 0 0 6px var(--grigio_base-opacity);
    }
    .text-container h1 {
        font-size: clamp(24px, 4vw, 28px);
        font-weight: 600;
    }
    .text-container h5 {
        font-size: clamp(18px, 4vw, 20px);
        font-weight: 500;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        white-space: normal;
        height: fit-content;
    }
    .text-container h6 {
        font-size: clamp(14px, 4vw, 16px);
        font-weight: 400;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-clamp: 2;
        -webkit-line-clamp: 5;
        white-space: normal;
        height: fit-content;
    }
    .img-contenuto-cover {
        width: 100%;
        object-position: center;
        height: 100%;
        object-fit: cover;
    }
    .img-categoriaIcon {
        display: none;
    }
    .container-prodotti {
        width: 1480px;
        max-width: 100%;
        padding: 2rem 0.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
        margin: 2rem auto 0 auto;
        gap: 1rem 0.5rem;
    }

    .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 DETTAGLIO PRODOTTO */
.wrap-container-2-col {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    padding: 0;
    min-height: calc(100dvh - 6rem);
    width: 1440px;
    margin: 6rem auto 2rem auto;
    max-width: 100%;
}
    /* Gallery */
    #m-prodotto-gallery {
        overflow: auto;
        background: transparent;
    }
    .gallery-section {
        height: 100%;
        max-height: 100%;
        display: flex;
        flex-direction: column;
        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% 6rem;
        background: transparent;

        .swiper {
            height: auto;
        }
        .main-gallery-slider:hover {
            border: 1px solid var(--azienda);
            cursor: zoom-in;
        }
        .container-thumb-slider {
            display: flex;
            height: 11.5rem;
            gap: 0.5rem;
            border-top: 1px solid var(--azienda-opacity);
            padding: 0.75rem;
            border-bottom: 1px solid var(--azienda-opacity);
        }
        .img-gallery-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100%;
            padding: 0;
            background: var(--white);
        }
        .img-gallery-product {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            max-height: 100%;
            aspect-ratio: 1 / 1;
        }
        .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 {
            width: auto;
        }
        .thumb-gallery-slider .swiper-slide {
            width: auto;
        }
        .thumb-gallery-slider .img-gallery-container {
            width: 10rem;
            height: 100%;
            border: 1px solid var(--grigio_light-opacity);
            padding: 0.25rem;
            transition: all 0.2s ease-in-out;
        }
        .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(--azienda)!important;
            border: 1px solid var(--azienda);
            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: var(--light-medium);
            color: var(--azienda) !important;
            border: 1px solid var(--azienda);
        }
        .gallery-prev:hover, 
        .gallery-next:hover {
            border-radius: 0;
            background-color: var(--azienda);
            color: var(--white)!important;
        }
        .swiper-pagination-fraction {
            background-color: var(--azienda);
            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(--azienda);
            box-shadow: none;
        }
    }
    /* BACKGROUND PHOTOSWIPE */
    .pswp__bg {
        background: var(--white)!important;
        opacity: 1!important;
    }
    .pswp__caption {
        background-color: var(--primarioChiaro)!important;
    }
    .pswp__caption__center {
        color: var(--white)!important;
        font-weight: 400!important;
        font-size: clamp(14px, 4vw, 16px)!important;
    }

    /* Info prodotto */
    .container-info-product {
        position: relative;
        height: 100%;
        width: 100%;
        background: transparent;
        color: var(--black);
        box-shadow: none;
        animation: slideInRight 0.5s ease-in-out;

        .text-link {
            pointer-events: none;
        }
        #m-prodotto-descrizione {
            padding: 0;
            color: var(--azienda);
            line-height: 120%;
            font-family: "Poiret One", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(28px, 4vw, 40px);
        }
        .wrap-container-asimmetric {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            padding: 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;
        }
        .might-container-col p {
            color: var(--dark);
        }
        #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;
        }
        .selettore-quantita {
            width: auto;
            height: 4rem;
            display: flex;
            justify-content: space-between;
            padding: .25rem;
            border: .5px solid var(--grigio_light);
            border-radius: 4px;
            max-width: none;
            min-width: fit-content;
            flex: 1 0 250px;
        }
        .btn-animate-1.animation {
            width: auto;
            background-image: linear-gradient(to left, var(--azienda), var(--azienda-opacity), var(--azienda), var(--azienda-opacity));
            box-shadow: 2px 2px 6px 0 var(--grigio_light);
            color: var(--light);
            flex: 1 0 250px;
        }
        .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(--azienda);
            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(--azienda), var(--azienda));
        }
        .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;
        }
        .btn-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: calc(100% - 2rem);
            border: 1px solid var(--azienda);
            border-radius: 6px;
            background: transparent;
            color: var(--azienda);
            margin: 0 auto 1rem auto;
            padding: 1rem;
            transition: all 0.2s ease-in-out;
        }
        .btn-whatsapp:hover {
            background: var(--azienda);
            color: var(--white);
        }
    }
    /* Dati logistici */
    .tab-datiLogistici {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        border: 1px solid var(--grigio_light);
        padding: 0.5rem;
        gap: 0.5rem;

        .text-big-bold {
            width: 100%;
            padding: 0 0 0.25rem 0;
            border-bottom: 1px solid var(--grigio_base);
        }
        .text {
            flex: 1 0 49%;
            display: flex;
            justify-content: space-between;
            gap: 0.5rem;
            background: var(--primarioChiaro);
            padding: 0.5rem;
            align-items: anchor-center;
            color: var(--white);
            border-radius: 2px;
        }
        .text-bold {
            margin: 0 0 0 auto;
        }
    }
    
/* FOOTER */
.footer-light {
    background-color: var(--grigio_light);
    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: 1440px;
        max-width: 94%;
        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: 1px solid var(--grigio_base-opacity);
        flex: 1 0 425px;
    }
    .col-footer .subtitle {
        font-size: clamp(16px, 4vw, 18px);
        font-weight: 700;
        width: fit-content;
        max-width: 100%;
        line-height: 130%;
        text-wrap: balance;
        word-wrap: break-word;
        color: var(--grigio_dark);
    }
    .pagamenti-container .text-big-bold {
        color: var(--grigio_dark);
    }
    .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 {
        margin-top: auto;
        position: static;
        padding: 0.5rem 1rem;
        min-height: auto;
    }
    .logo-footer-container {
        width: auto;
        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(--dark);
    }
    .grigio_base {
        color: var(--grigio_light)!important;
    }
    .slogan {
        display: none;
    }
    .pagamenti-container {
        width: 100%;
        border: none;
        padding: 0;
    }
    .pagamenti-container .img-pagamenti {
        height: auto;;
    }
}

/* SCREEN */
@media screen and (min-width: 768px) and (max-width: 1279px) {
    .container-btn-gallery {
        right: 1rem;
    }
    .container-info-product {
        max-height: 100%!important;
        overflow-y: visible;
    } 
}

/* SCREEN XS */
@media screen and (max-width: 767px) {
    /* Navigazione */
    /* .nav-interactive .container-fluid {
        background: var(--light-medium);
    } */
    .nav-interactive .nav-left {
        position: relative;
        height: auto;
        background: transparent;
        width: 100%;
    }
    .nav-interactive .logo {
        padding: 0.25rem;
        background: var(--white);
        box-shadow: none;
        height: 100%;
        width: auto;
    }
    .nav-interactive .logo-img {
        height: 100%;
        width: auto;
    }
    /* Contenitore risultati di ricerca */
    .search-result-container {
        height: calc(100dvh - 7.5rem);
    }

    /* Box */
    .azienda-box {
        margin: 0 0 2rem 0;
    }
    .azienda-box::after {
        background: linear-gradient(to top, var(--black-opacity) 40%, transparent 80%);
    }
    .azienda-box .info-box {
        padding: 1rem 1.5rem 2rem 1rem;
        gap: 1rem;
    }
    .azienda-box .subtitle {
        text-align: center;
        background: transparent;
        padding: 0;
    }
    .azienda-box .video {
        height: 640px;
        max-height: 100svh;
    }
    .azienda-box img {
        width: 100%;
        height: 100%;
    }

    .right-box .img-Box-1,
    .left-box .img-Box-1 {
        height: auto;
    }
    .center-box {
        flex-direction: column;
    }
    .center-box .text-big {
        text-align: left;
    }
    .center-box .info-box,
    .right-box .info-box,
    .left-box .info-box {
        height: fit-content;
        min-height: 320px;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        align-items: flex-start;
    }
    .left-box .info-box::after,
    .right-box .info-box::after,
    .center-box .info-box::after {
        display: none;
    }

    .left-box img,
    .right-box img,
    .center-box img {
        height: 320px;
        width: 100%;
        object-fit: cover;
    }

    .product-carousel .swiper-carousel-card {
        padding: 2rem 1rem;
    }
    .product-carousel .swiper-slide:first-child {
        margin: 0;
    }
    .product-carousel .swiper-slide:last-child {
        margin: 0;
    }
    .product-carousel .info-container {
        border-top: 1px solid var(--azienda);
        border-left: none;
        border-radius: 0;
    }

    #btn-menu-mobile {
        display: none;
    }
    .hide-desktop {
        display: flex;
    }

    /* PAGINA DETTAGLIO PRODOTTO */
    .wrap-container-2-col {
        grid-template-columns: 1fr;
    }
    .gallery-section {
        height: calc(100dvh - 9rem) !important;
        max-height: calc(100dvh - 9rem);
        padding: 0;
    }
    .gallery-section .img-gallery-product {
        max-width: 100%;
    }
    .container-thumb-slider {
        height: auto !important;
    }
    .img-gallery-container {
        padding: 0.25rem !important;
    }
    .m-addCart-buttons-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .vimeo-wrapper {
        width: auto;
        height: 100svh;
        max-height: 100svh;
        right: 125%;
        aspect-ratio: 9 / 5;
    }
    .vimeo-wrappern iframe {
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
    }
    .left-box, .right-box {
        overflow-x: hidden;
        overflow-y: clip;
    }
}

@keyframes animloader {
    0% {
        box-shadow:
            0 24px var(--primo-opacity),
            24px 24px var(--secondo-opacity),
            24px 48px var(--terzo-opacity),
            0px 48px var(--quarto-opacity);
    }
    12% {
        box-shadow:
            0 24px var(--primo),
            24px 24px var(--secondo-opacity),
            24px 48px var(--terzo-opacity),
            0px 48px var(--quarto-opacity);
    }
    25% {
        box-shadow:
            0 24px var(--primo),
            24px 24px var(--secondo),
            24px 48px var(--terzo-opacity),
            0px 48px var(--quarto-opacity);
    }
    37% {
        box-shadow:
            0 24px var(--primo),
            24px 24px var(--secondo),
            24px 48px var(--terzo),
            0px 48px var(--quarto-opacity);
    }
    50% {
        box-shadow:
            0 24px var(--primo),
            24px 24px var(--secondo),
            24px 48px var(--terzo),
            0px 48px var(--quarto);
    }
    62% {
        box-shadow:
            0 24px var(--primo-opacity),
            24px 24px var(--secondo),
            24px 48px var(--terzo),
            0px 48px var(--quarto);
    }
    75% {
        box-shadow:
            0 24px var(--primo-opacity),
            24px 24px var(--secondo-opacity),
            24px 48px var(--terzo),
            0px 48px var(--quarto);
    }
    87% {
        box-shadow:
            0 24px var(--primo-opacity),
            24px 24px var(--secondo-opacity),
            24px 48px var(--terzo-opacity),
            0px 48px var(--quarto);
    }
    100% {
        box-shadow:
            0 24px var(--primo-opacity),
            24px 24px var(--secondo-opacity),
            24px 48px var(--terzo-opacity),
            0px 48px var(--quarto-opacity);
    }
}

@keyframes animloader2 {
    0% {
        transform: translate(0, 0) rotateX(0) rotateY(0);
    }
    25% {
        transform: translate(100%, 0) rotateX(0) rotateY(180deg);
    }
    50% {
        transform: translate(100%, 100%) rotateX(-180deg) rotateY(180deg);
    }
    75% {
        transform: translate(0, 100%) rotateX(-180deg) rotateY(360deg);
    }
    100% {
        transform: translate(0, 0) rotateX(0) rotateY(360deg);
    }
}