/* ----------------------------------------------- General */
:root {
    --body-font-size: 18px;
    --font1:"Montserrat", sans-serif;
    --font2:'Montserrat', serif; 
    /* --font1:"Gotham SSm", sans-serif;
    --font2:'Gotham Narrow SSm', serif; */
    --activeColor: #3279A2;
    --activeColorHover: #09AAD4;
    --activeColorHoverTrasp: rgb(9 170 212 / 26%);
    --activeColorHoverTrasp10: rgb(9 170 212 / 10%);
    --white: #FFF;
    --white50: rgb(255 255 255 /50%);
    --white15: rgb(255 255 255 /15%);
    --beige: #f7f4ef;
    --black: #000;
    --black5: rgb(0 0 0 /5%);
    --black10: rgb(0 0 0 /10%);
    --black20: rgb(0 0 0 /20%);
    --black40: rgb(0 0 0 /40%);
    --shadowgrey: #c9c9c9;
    --linegrey: #f0f0f0;
    --superlightgrey: #FAFAFA;
    --success: #e9f7d9;
    --green: #39b43d;
    --brand-carbon: #2E2D2C;
    --brand-grey: #9DA0A1;
    --brand-lightgrey: #EAE8E9;
    --brand-cardgrey: #F5F5F5;
    --brand-cyan: #09AAD4;
    --brand-lightcyan: #ECF4F9;
    --brand-blu: #3279A2;
    --brand-lightviolet: #8D9BFF;
    --brand-violet: #414D9C;
    --brand-coral: #D4544A;
    --brand-green: #00A19A;
    --brand-ocra: #F49830;
}

/* ----------------------------------------------- Bootstrap Form Overrides */
.form-control,
.form-select {
    border-radius: 0;
    border: 1px solid var(--brand-carbon);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--activeColor);
    box-shadow: 0 0 0 3px rgba(50, 121, 162, 0.1);
}


.darkForm .form-control,
.darkForm .form-select {
    color: var(--white);
    border-radius: 0;
    border: 1px solid var(--white);
    background: transparent;
}

.darkForm .form-control::placeholder,
.darkForm .form-select::placeholder {
    color: var(--white15);
}

.darkForm .form-control:focus,
.darkForm .form-select:focus {
    border-color: var(--activeColor);
    box-shadow: 0 0 0 3px rgba(50, 121, 162, 0.1);
}

.darkForm .form-check-input,
.darkForm .form-check-input:checked {
    border: 1px solid var(--white);
}

.darkForm .form-check-input:focus,
.darkForm .form-check-input:focus {
    border: 1px solid var(--white);
}

.availability {
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.availability:before {
    content: "●";
    position: relative;
    line-height: 2rem;
    margin-right: 3px;
}

.activeColor,
.activecolor {
    color: var(--activeColor) !important;
}

.activeColorHover {
    color: var(--activeColorHover);
}

.cyan {
    color: var(--brand-cyan);
}

.lightviolet {
    color: var(--brand-lightviolet);
}

.lightcyan {
    color: var(--brand-lightcyan);
}

.violet {
    color: var(--brand-violet);
}

.coral {
    color: var(--brand-coral);
}

.green {
    color: var(--brand-green);
}

.ocra {
    color: var(--brand-ocra);
}

.bg_carbon {
    background: var(--brand-carbon);
}

.bg_cyan {
    background: var(--brand-cyan);
}

.bg_lightviolet {
    background: var(--brand-lightviolet);
}

.bg_lightcyan {
    background: var(--brand-lightcyan);
}

.bg_violet {
    background: var(--brand-violet);
}

.bg_coral {
    background: var(--brand-coral);
}

.bg_green {
    background: var(--brand-green);
}

.bg_ocra {
    background: var(--brand-ocra);
}


/* Scrollbar */
::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    border-radius: 10px;
    background-color: var(--white);
    background: var(--brand-lightgrey);
    width: 6px;
}

::-webkit-scrollbar {
    width: 12px;
    /* background-color: var(--brand-lightgrey); */
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    width: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
    background-color: var(--brand-grey);
    width: 6px;
}

.multiply {
    mix-blend-mode: multiply;
}

/* Text Selection */
/*::selection {
  background: var(--official-green);
}
::-moz-selection {
  background: var(--official-green);
}
*/

.activeColor {
    color: var(--activeColor);
}


/* General style */

body {
    background: var(--white);
    font-family: var(--font1);
    font-weight: 300;
    font-size: 17px;
    color: var(--brand-carbon);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font1);
    font-weight: 600;
    color: var(--brand-carbon);
}

strong {
    font-weight: bolder;
}

p.lead {
    font-weight: 400;
}

h1.extra {
    font-size: 50px;
}


a:link,
a:visited {
    color: var(--body-font-color);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover {
    /* opacity: 0.7; */
    text-transform: none;
}


a.lnk:link,
a.lnk:visited {
    color: var(--activeColor);
    font-weight: 400;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

a.lnk:hover {
    /* opacity: 0.7; */
    color: var(--activeColorHover);
    text-transform: none;
}

/* Icona più piccola nei link .lnk */
a.lnk svg,
a.lnk i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    transition: transform 0.3s ease-in-out;
}

/* Animazione bounce solo sull'icona all'hover del link */
a.lnk:hover svg,
a.lnk:hover i {
    animation: bounceRight 0.6s ease-in-out;
}

.sectorListSelector a.lnk:link,
a.lnk:visited {
    color: var(--brand-carbon);
}

.sectorListSelector a.lnk.active:link,
a.lnk.active:visited {
    color: var(--activeColor);
}

.sectorListSelector a.lnk:hover {
    /* opacity: 0.7; */
    color: var(--activeColorHover);
    text-transform: none;
}



/* Animazione bounce verso destra */
@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(3px);
    }
}




input[type="submit"].cta-standard,
button.cta-standard,
a.cta-standard {
    background: var(--brand-carbon);
    border: 1px solid var(--brand-carbon);
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 1em;
    padding: 10px 20px;
    border-radius: 0px;
    width: max-content;
    transition: all 0.3s ease-in-out;
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="submit"].cta-standard:hover,
button.cta-standard:hover,
a.cta-standard:hover {
    border: 1px solid var(--activeColorHover);
    background: var(--activeColorHover);
    transition: all 0.3s ease-in-out;
}

input[type="submit"].cta-standard-white,
button.cta-standard-white,
a.cta-standard-white {
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--brand-carbon);
    font-weight: 400;
    font-size: 16px;
    line-height: 1em;
    padding: 10px 20px;
    border-radius: 0px;
    width: max-content;
    transition: all 0.3s ease-in-out;
    display: block;
        max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="submit"].cta-standard-white:hover,
button.cta-standard-white:hover,
a.cta-standard-white:hover {
    color: var(--white);
    border: 1px solid var(--brand-carbon);
    background: var(--brand-carbon);
    transition: all 0.3s ease-in-out;
}

input[type="submit"].cta-standard-outline,
button.cta-standard-outline,
a.cta-standard-outline {
    background: transparent;
    color: var(--brand-carbon);
    border: 1px solid var(--brand-carbon);
    font-weight: 400;
    font-size: 16px;
    line-height: 1em;
    padding: 10px 20px;
    border-radius: 0px;
    width: max-content;
    transition: all 0.3s ease-in-out;
    display: block;
    text-decoration: none;
    cursor: pointer;
        max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="submit"].cta-standard-outline:hover,
button.cta-standard-outline:hover,
a.cta-standard-outline:hover {
    background: var(--brand-carbon);
    border: 1px solid var(--brand-carbon);
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

input[type="submit"].cta-standard-outline-white,
button.cta-standard-outline-white,
a.cta-standard-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 1em;
    padding: 10px 20px;
    border-radius: 0px;
    width: max-content;
    transition: all 0.3s ease-in-out;
    display: block;
    text-decoration: none;
    cursor: pointer;
        max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="submit"].cta-standard-outline-white:hover,
button.cta-standard-outline-white:hover,
a.cta-standard-outline-white:hover {
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--brand-carbon);
    transition: all 0.3s ease-in-out;
}

input[type="submit"].cta-standard.big,
button.cta-standard.big,
a.cta-standard.big,
input[type="submit"].cta-standard-outline.big,
button.cta-standard-outline.big,
a.cta-standard-outline.big,
input[type="submit"].cta-standard-outline-white.big,
button.cta-standard-outline-white.big,
a.cta-standard-outline-white.big {
    font-size: 18px;
    padding: 12px 30px;
    display: block;
}

input[type="submit"].cta-standard.long,
button.cta-standard.long,
a.cta-standard.long,
input[type="submit"].cta-standard-outline.long,
button.cta-standard-outline.long,
a.cta-standard-outline.long,
input[type="submit"].cta-standard-outline-white.long,
button.cta-standard-outline-white.long,
a.cta-standard-outline-white.long {
    width: 100%;
    text-align: center;
}

@media (max-width: 767px) {

    input[type="submit"].cta-standard.big,
    button.cta-standard.big,
    a.cta-standard.big,
    input[type="submit"].cta-standard-outline.big,
    button.cta-standard-outline.big,
    a.cta-standard-outline.big,
    input[type="submit"].cta-standard-outline-white.big,
    button.cta-standard-outline-white.big,
    a.cta-standard-outline-white.big {
        font-size: 16px;
        padding: 10px 20px;
        display: block;
    }

}


.squareBan {
    position: relative;
    overflow: hidden;
    height: 410px;
}

.squareBan .overText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding: 40px;
    background: rgb(0 0 0 /20%);
}

.squareBan .overText .banTitle {
    font-size: 40px;
    font-weight: 600;
}

.squareBan img {
    min-height: 100%;
    transition: all 0.3s ease-in-out;
}

.squareBan:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}




.catCard .card-body {
    background: var(--brand-cardgrey);
    transition: all 0.3s ease-in-out;
}

.catCard:hover .card-body {
    background: var(--activeColorHoverTrasp);
}

.catCard .card-body a {
    display: block;
    transition: all 0.3s ease-in-out;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.catCard .card-body a img {
    mix-blend-mode: multiply;
    transform: scale(1);
    /* filter: brightness(0.9) grayscale(0.3) saturate(1); */
    transition: all 0.3s ease-in-out;
}

.catCard:hover .card-body a img {
    transform: scale(1.05);
    /* filter: brightness(0.8) grayscale(0) saturate(1.5); */
    transition: all 0.3s ease-in-out;
}

.catCard:hover .card-footer a {
    color: var(--activeColorHover);
}

@media (max-width: 767px) {
    .catCard .card-footer a h5 {
        font-size: 16px;
    }
}








.rectBan {
    position: relative;
    overflow: hidden;
    height: 410px;
}

.rectBan .overText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 40px;
    background: rgb(0 0 0 /20%);
}

.rectBan .overText .banTitle {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.05em;
}

.rectBan .overText .banArgument {
    font-size: 20px;
}

.rectBan img {
    min-width: 100%;
    min-height: 100%;
    transition: all 0.3s ease-in-out;
}

.rectBan:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}



.bt {
    border-top: 1px solid var(--linegrey);
}

.br {
    border-right: 1px solid var(--linegrey);
}

.bl {
    border-left: 1px solid var(--linegrey);
}

.bb {
    border-bottom: 1px solid var(--linegrey);
}

ul.nodot {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* TOP UTILITY NAV */

.top-nav-utility {
    background: var(--superlightgrey);
    padding: 5px;
    z-index: 99999999;
    /* box-shadow: 0px 0px 20px var(--shadowgrey); */
}

.top-nav-utility .top-nav-utility-menu a,
.top-nav-utility .top-nav-utility-menu a:link,
.top-nav-utility .top-nav-utility-menu a:visited {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    margin-right: 15px;
    /* background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(
      to right,
      rgba(50, 121, 162, 1),
      rgba(9, 170, 212, 1)
  );
  background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms; */
    transform: all 0.3s ease-in-out;
}

.top-nav-utility .top-nav-utility-menu a:hover {
    color: var(--activeColor);
    /* background-size: 0 1px, 100% 1px; */
    transform: all 0.3s ease-in-out;
}


/* TOP NAV */
.top-nav {
    padding: 0;
    background: var(--white);
    box-shadow: 0px 0px 30px -20px var(--shadowgrey);
}

#top_nav.fixed-top {
    top: 35px;
}

.top-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.top-nav ul li a {
    line-height: 60px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 14px;
    transform: all 0.3s ease-in-out;
}

.top-nav ul li a:hover {
    color: var(--activeColorHover);
}


.top-nav .top-nav-actions a.iconTog,
.top-nav-utility-lang a.iconTog {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.top-nav .top-nav-actions a.iconTog:hover,
.top-nav-utility-lang a.iconTog:hover,
.top-nav .top-nav-actions a.iconTog.active,
.top-nav-utility-lang a.iconTog.active {
    color: var(--white) !important;
    background: var(--activeColorHover) !important;
}

/* Toggle icon states for all widgets */
#searchToggle .icon-close,
#userToggle .icon-close,
#cartToggle .icon-close,
#mobileMenuToggle .icon-close {
    display: none;
}

#searchToggle.active .icon-search,
#userToggle.active .icon-user,
#cartToggle.active .icon-cart,
#mobileMenuToggle.active .icon-menu {
    display: none;
}

#searchToggle.active .icon-close,
#userToggle.active .icon-close,
#cartToggle.active .icon-close,
#mobileMenuToggle.active .icon-close {
    display: block;
}

.productMenuWrap {
    background: var(--superlightgrey);
    position: absolute;
    top: 94px;
    padding: 20px 0;
    height: 0;
    width: 100%;
    overflow: hidden;
    z-index: 30;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 20px 20px rgb(0 0 0 /20%);
    transition: all 0.3s ease-in-out;
}

.productMenuWrap.active {
    height: auto;
    overflow: initial;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.top-nav.fixed-top~.productMenuWrap {
    position: fixed;
    top: 95px;
    transition: all 0.3s ease-in-out;
}

.productMenuWrap h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 0;
}


.sectorMenuWrap {
    background: var(--superlightgrey);
    position: absolute;
    top: 94px;
    padding: 0;
    height: 0;
    width: 100%;
    overflow: hidden;
    z-index: 80;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 20px 20px rgb(0 0 0 /20%);
    transition: all 0.3s ease-in-out;
}

.sectorMenuWrap.active {
    height: auto;
    overflow: initial;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}


.top-nav.fixed-top~.sectorMenuWrap {
    position: fixed;
    top: 95px;
    transition: all 0.3s ease-in-out;
}

.top-nav~.sectorMenuWrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.top-nav~.sectorMenuWrap a {
    padding: 0px 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 3rem;
    display: block;
    transition: all 0.3s ease;
}

.top-nav~.sectorMenuWrap a:hover {
    color: var(--activeColorHover);
    transition: all 0.3s ease;
}

/* Company Menu Wrap - Same style as sectorMenuWrap */
.companyMenuWrap {
    background: var(--superlightgrey);
    position: absolute;
    top: 95px;
    height: 0;
    width: 100%;
    overflow: hidden;
    z-index: 80;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 20px 20px rgb(0 0 0 /20%);
    transition: all 0.3s ease-in-out;
}

.companyMenuWrap.active {
    height: auto;
    overflow: initial;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.top-nav.fixed-top~.companyMenuWrap {
    position: fixed;
    top: 95px;
    transition: all 0.3s ease-in-out;
}

.top-nav~.companyMenuWrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.top-nav~.companyMenuWrap a {
    padding: 0px 10px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    line-height: 3rem;
    display: block;
}

.top-nav~.companyMenuWrap a:hover {
    color: var(--activeColorHover);
    transition: all 0.3s ease;
}

.sectorMenuWrap h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 0;
}

/* Search Box */
.search-box {
    border: 1px solid var(--linegrey);
    border-radius: 20px;
    background: var(--white);
}

.search-box button {
    border: 0;
    background: transparent;
    border-radius: 20px;
}

.search-box input {
    border: 0;
    background: transparent;
    padding-left: 20px;
}

.search-box input::placeholder {
    color: var(--brand-grey);
    padding-left: 10px;
}

.productMenuWrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.productMenuWrap ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
}

.productMenuWrap ul li a:hover {
    color: var(--activeColorHover);
    background: var(--white);
    box-shadow: 0px 0px 20px -10px var(--shadowgrey);
}


.productMenuWrap ul li a svg {
    width: 18px;
    height: 18px;
    color: var(--brand-carbon);
}

.productMenuWrap ul li a:hover svg {
    color: var(--brand-cyan);
}

/* ============================================ */
/* MULTI-LEVEL MENU STYLES */
/* ============================================ */

/* Container per i 3 livelli di menu */
.menu-container {
    position: relative;
    width: 100%;
    min-height: 300px;
}

/* Menu Level 1 - Categorie principali */
.menuLev1 {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 33.333%;
}

.menuLev1>li {
    position: relative;
}

.menuLev1>li:last-child {
    border-bottom: none;
}

.menuLev1>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 15px;
    font-weight: 500;
    font-size: 15px;
    color: var(--brand-carbon);
    transition: all 0.3s ease;
}

.menuLev1>li>a.active,
.menuLev1>li>a:hover {
    background: var(--white);
    color: var(--brand-blu);
    box-shadow: 0px 0px 20px -10px var(--shadowgrey);
}

.menuLev1>li>a svg {
    width: 18px;
    height: 18px;
    color: var(--brand-blu);
    flex-shrink: 0;
}

.menuLev1>li>a svg:last-child {
    width: 16px;
    height: 16px;
    color: var(--brand-grey);
    margin-left: auto;
    transition: all 0.3s ease;
}

.menuLev1>li>a:hover svg:last-child {
    color: var(--brand-blu);
    transform: translateX(3px);
}

/* Menu Level 2 - Sottocategorie */
.menuLev2 {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    left: calc(100% + 10px);
    top: 0;
    width: 100%;
    z-index: 100;
}

.menuLev1>li.hasSubNav.active>.menuLev2 {
    display: flex;
}

.menuLev2>li {
    position: relative;
}

.menuLev2>li:last-child {
    border-bottom: none;
}

.menuLev2>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--brand-carbon);
    transition: all 0.3s ease;
}

.menuLev2>li.hasSubNav>a svg {
    width: 16px;
    height: 16px;
    color: var(--brand-grey);
    margin-left: auto;
    transition: all 0.3s ease;
}

.menuLev2>li>a:hover {
    background: var(--superlightgrey);
    color: var(--brand-blu);
}

.menuLev2>li>a:hover svg {
    color: var(--brand-blu);
    transform: translateX(3px);
}

/* Menu Level 3 - Voci di terzo livello */
.menuLev3 {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left: calc(100%);
    top: 0;
    width: 100%;
    margin-right: 10px;
    z-index: 101;
}

.menuLev2>li.hasSubNav.active>.menuLev3 {
    display: flex;
}

.menuLev3>li:last-child {
    border-bottom: none;
}

.menuLev3>li>a {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--brand-grey);
    transition: all 0.3s ease;
}

.menuLev3>li>a:hover {
    background: var(--superlightgrey);
    color: var(--brand-blu);
}

/* Lucide Icons General Styles */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}

.top-nav-actions a svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.top-nav-utility-lang a svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Language Selector Dropdown */
.top-nav-utility-lang {
    position: relative;
}

.lang-selector-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.lang-selector-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-selector-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

/* Custom Language Select */
.lang-select-custom {
    position: relative;
    width: 100%;
}

.lang-select-custom .lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
    font-weight: 400;
    color: var(--brand-carbon);
}

.lang-select-custom .lang-option.selected {
    background: var(--superlightgrey);
    border: 1px solid var(--linegrey);
    position: relative;
}

.lang-select-custom .lang-option.selected .chevron-icon {
    margin-left: auto;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease-in-out;
}

.lang-select-custom.open .lang-option.selected .chevron-icon {
    transform: rotate(180deg);
}

.lang-select-custom .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lang-options-list {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.lang-select-custom.open .lang-options-list {
    display: flex;
    max-height: 300px;
}

.lang-options-list .lang-option:hover {
    background: var(--superlightgrey);
}

.lang-options-list .lang-option.active {
    background: var(--activeColor);
    color: var(--white);
}

/* ============================================ */
/* CART WIDGET DROPDOWN */
/* ============================================ */

/* Cart Wrapper */
.cart-wrapper {
    position: relative;
}

/* Cart Toggle with Badge */
.top-nav-actions a {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--activeColor);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    line-height: 1;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0;
    width: 400px;
    max-width: 90vw;
    max-height: 80vh;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

/* Cart Dropdown Header */
.cart-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--linegrey);
    flex-shrink: 0;
}

.cart-dropdown-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--superlightgrey);
    color: var(--brand-carbon);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50%;
    padding: 3px;
}

.cart-close-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--superlightgrey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.cart-close-btn:hover {
    background: var(--brand-carbon);
    color: var(--white);
}

.cart-close-btn svg {
    width: 18px;
    height: 18px;
}

/* Cart Dropdown Body */
.cart-dropdown-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 10px 30px 0px;
}

.cart-empty-icon {
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-empty-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-carbon);
    margin-bottom: 25px;
}

/* Cart Dropdown Content (Scrollable) */
.cart-dropdown-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

/* Cart Dropdown Footer (Fixed) */
.cart-dropdown-footer {
    flex-shrink: 0;
    padding: 20px 25px;
    border-top: 1px solid var(--linegrey);
    background: var(--white);
    border-radius: 0 0 20px 20px;
}

/* Free Shipping Progress */
.cart-shipping-progress {
    background: var(--superlightgrey);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.shipping-text {
    font-size: 13px;
    color: var(--brand-carbon);
    margin: 0 0 10px 0;
}

.shipping-text strong {
    color: var(--activeColor);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    /* background: linear-gradient(90deg, var(--brand-blu) 0%, var(--brand-cyan) 100%); */
    background: var(--brand-grey);
    border-radius: 10px;
    transition: width 0.3s ease-in-out;
}

/* Cart Items List */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    position: relative;
}

.cart-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0;
    line-height: 1.3;
    padding-right: 20px;
}

.cart-item-code {
    font-size: 11px;
    color: var(--brand-grey);
    margin: 0;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--linegrey);
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.qty-btn:hover {
    border-color: var(--activeColor);
    background: var(--activeColor);
    color: var(--white);
}

.qty-btn svg {
    width: 12px;
    height: 12px;
}

.qty-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-carbon);
    min-width: 20px;
    text-align: center;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0;
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--brand-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.cart-item-remove:hover {
    background: var(--activeColorHover);
    color: var(--white);
}

.cart-item-remove svg {
    width: 14px;
    height: 14px;
}

/* Cart Totals */
.cart-totals {
    margin-bottom: 15px;
}

.cart-subtotal,
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cart-subtotal {
    font-size: 14px;
    color: var(--brand-grey);
}

.cart-total {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
}

/* Cart Actions */
.cart-actions {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
}

/* 
.cart-dropdown-footer .cart-actions a {
  display: block !important;
  width: 100% !important;
  text-align: center;
  border-radius: 5px !important;
  padding: 12px 20px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.cart-dropdown-footer .cart-actions a.cta-standard-outline {
  background: transparent !important;
  color: var(--brand-carbon) !important;
  border: 1px solid var(--brand-carbon) !important;
}

.cart-dropdown-footer .cart-actions a.cta-standard {
  background: var(--brand-carbon) !important;
  color: var(--white) !important;
  border: 1px solid var(--brand-carbon) !important;
}

.cart-dropdown-footer .cart-actions a.cta-standard-outline:hover {
  background: var(--brand-carbon) !important;
  color: var(--white) !important;
}

.cart-dropdown-footer .cart-actions a.cta-standard:hover {
  background: var(--activeColorHover) !important;
  border-color: var(--activeColorHover) !important;
}


 */


#videoSection{
    scroll-margin-top: 200px;
}

.demo-truck-wrapper {
    position: relative;
}

.demo-truck-video-wrapper {
    position: relative;
}

.demo-truck-wrapper:before {
    content: "";
    width: 100%;
    height: 30%;
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.demo-truck-wrapper:after {
    content: "";
    width: 100%;
    height: 30%;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
}

.demo-truck-wrapper .overText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.demo-truck-video-wrapper .overText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.demo-truck-video-wrapper:hover .overText {
    transform: scale(1.3);
    transition: all 0.3s ease-in-out;
}

.bgforest {
    background: url(../img/forest-truck-square.jpg);
    background-size: cover;
    background-position: center;
}

.testimWrap {
    position: relative;
}

.testimWrap .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: var(--white);
    border-radius: 20px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 20px;
    color: var(--fon--brand-carbon);
}




footer ul {
    padding: 0;
}

footer ul li {
    list-style: none;
}


#newsletterSubscribe input {
    background: var(--superlightgrey);
    border: 0;
    padding: 8px 20px;
}

/* ============================================ */
/* USER WIDGET DROPDOWN */
/* ============================================ */

/* User Wrapper */
.user-wrapper {
    position: relative;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0;
    width: 350px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

/* User Dropdown Header */
.user-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--linegrey);
    flex-shrink: 0;
}

.user-dropdown-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0;
}

.user-close-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--superlightgrey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.user-close-btn:hover {
    background: var(--brand-carbon);
    color: var(--white);
}

.user-close-btn svg {
    width: 18px;
    height: 18px;
}

/* User Dropdown Body */
.user-dropdown-body {
    padding: 25px;
}

/* User Login Form */
.user-login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-login-form label {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-carbon);
}

.user-login-form .form-control {
    padding: 12px 15px;
    border: 1px solid var(--linegrey);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.user-login-form .form-control:focus {
    outline: none;
    border-color: var(--activeColor);
    box-shadow: 0 0 0 3px rgba(50, 121, 162, 0.1);
}

.user-login-form .form-control::placeholder {
    color: var(--brand-grey);
}

.forgot-password {
    font-size: 13px;
    color: var(--activeColor);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.forgot-password:hover {
    color: var(--activeColorHover);
    text-decoration: underline;
}

.register-link {
    text-align: center;
    margin-top: 10px;
}

.register-link p {
    font-size: 14px;
    color: var(--brand-grey);
    margin: 0;
}

.register-link a {
    color: var(--activeColor);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.register-link a:hover {
    color: var(--activeColorHover);
    text-decoration: underline;
}

/* User Logged In */
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--linegrey);
}

.ar-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blu) 0%, var(--brand-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-initials {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.ar-user-info {
    flex: 1;
}

.ar-user-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0 0 5px 0;
}

.user-email {
    font-size: 13px;
    color: var(--brand-grey);
    margin: 0;
}

.user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



/* ============================================ */
/* MOBILE MENU SIDEBAR */
/* ============================================ */

/* Mobile Menu Toggle (Hamburger) */
#mobileMenuToggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

#mobileMenuToggle:hover {
    color: var(--white);
    background: var(--activeColorHover);
}

/* Mobile Menu Sidebar Container */
.mobile-menu-sidebar {
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    height: calc(100vh - 62px);
    z-index: 999;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-sidebar.active {
    pointer-events: all;
}

/* Mobile Menu Overlay - Hidden in new design */
.mobile-menu-overlay {
    display: none;
}

/* Mobile Menu Content */
.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-sidebar.active .mobile-menu-content {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--linegrey);
    flex-shrink: 0;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--superlightgrey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-close:hover {
    background: var(--brand-carbon);
    color: var(--white);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Body */
.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 0;
}

/* Mobile Language Selector */
.mobile-lang-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--superlightgrey);
    margin: 0 25px 20px 25px;
    border-radius: 12px;
}

.mobile-flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.mobile-lang-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: var(--brand-carbon);
    cursor: pointer;
}

.mobile-lang-select:focus {
    outline: none;
}

.mobile-lang-selector i {
    width: 16px;
    height: 16px;
    color: var(--brand-grey);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    position: relative;
    min-height: 400px;
}

/* Mobile Menu Levels */
.mobile-menu-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.mobile-menu-level.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.mobile-menu-level.slide-left {
    transform: translateX(-100%);
}

/* Mobile Menu Item */
/* .mobile-menu-item {
  border-bottom: 1px solid var(--linegrey);
} */

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-link:hover {
    background: var(--superlightgrey);
    color: var(--activeColor);
}

.mobile-menu-link .toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--brand-carbon);
    transition: transform 0.3s ease-in-out;
}

/* Mobile Submenu */
.mobile-submenu {
    background: var(--superlightgrey);
    padding: 10px 0;
    display: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px 12px 40px;
    font-size: 15px;
    font-weight: 400;
    color: var(--brand-carbon);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.mobile-submenu-link:hover {
    color: var(--activeColor);
}

.mobile-submenu-link i {
    width: 16px;
    height: 16px;
    color: var(--brand-grey);
}

/* Mobile Menu Back Button */
.mobile-menu-back {
    border-bottom: 1px solid var(--linegrey);
    margin-bottom: 10px;
}

.mobile-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.mobile-back-btn:hover {
    background: var(--superlightgrey);
    color: var(--activeColor);
}

.mobile-back-btn i {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    border-top: 1px solid var(--linegrey);
    flex-shrink: 0;
}

.mobile-contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--brand-carbon);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.mobile-contact-btn:hover {
    color: var(--white);
    background: var(--activeColorHover);
    transform: scale(1.1);
}

.mobile-contact-btn svg {
    width: 24px;
    height: 24px;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    #mobileMenuToggle {
        display: none !important;
    }

    .mobile-menu-sidebar {
        display: none !important;
    }
}

/* ----------- Media Query  ----------- */

/* Mobile - Hide desktop elements */
@media (max-width: 991px) {

    /* Hide top utility nav in mobile */
    .top-nav-utility {
        display: none !important;
    }

    /* Hide desktop menu */
    .top-nav-menu {
        display: none !important;
    }

    /* Add padding to top-nav in mobile */
    .top-nav {
        padding: 10px 0 !important;
    }

    /* Hide mobile menu header in mobile */
    .mobile-menu-header {
        display: none !important;
    }

    /* Hide close buttons inside widgets in mobile */
    .cart-dropdown-header .cart-close-btn,
    .user-dropdown-header .user-close-btn {
        display: none !important;
    }

    /* Ensure top-nav icons are above widgets */
    .top-nav, #top_nav.fixed-top {
        z-index: 1000 !important;
        top:0;
    }

    .top-nav-actions {
        z-index: 1001 !important;
        position: relative;
    }
}

/* Desktop - Show all elements */
@media (min-width: 992px) {
    .top-nav-utility {
        display: block !important;
    }

    .top-nav-menu {
        display: block !important;
    }

    .top-nav-actions .iconTog {
        display: flex !important;
    }

    .cart-wrapper {
        display: block !important;
    }
}

@media (max-width: 575px) {
    .mobile-menu-content {
        max-width: 100%;
    }
}

/* Cart & User Dropdown Full-Screen in Mobile */
@media (max-width: 991px) {

    .cart-dropdown,
    .user-dropdown {
        position: fixed !important;
        top: 62px !important;
        right: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: calc(100vh - 62px) !important;
        max-height: calc(100vh - 62px) !important;
        border-radius: 0 !important;
        transform: translateY(0) !important;
        opacity: 0;
        visibility: hidden;
        z-index: 999 !important;
    }

    .cart-dropdown.active,
    .user-dropdown.active {
        opacity: 1;
        visibility: visible;
    }

    .cart-dropdown::before,
    .user-dropdown::before {
        display: none !important;
    }
}

@media (max-width: 767px) {}

@media (max-width: 768px) {}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}

/* ============================================
   SEARCH WIDGET STYLES (same style as productMenuWrap)
   ============================================ */

.top-nav+.searchMenuWrap {
    background: var(--superlightgrey);
    position: absolute;
    top: 108px;
    padding: 20px 0;
    height: 0;
    max-height: 500px;
    width: 100%;
    overflow: hidden;
    z-index: 53;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 20px 20px var(--shadowgrey);
    transition: all 0.3s ease-in-out;
}

.top-nav+.searchMenuWrap.active {
    height: auto;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.top-nav.fixed-top~.searchMenuWrap {
    position: fixed;
    top: 95px;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

.searchMenuWrap h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 20px;
}

.searchMenuWrap .row.mt-4 {
    max-height: 400px;
    overflow-y: auto;
}

.search-input-wrapper {
    margin-bottom: 30px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--linegrey);
    border-radius: 20px;
    background: var(--white);
    font-size: 14px;
    transition: border-color 0.2s;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--activeColor);
}

.search-input-wrapper input::placeholder {
    color: var(--brand-grey);
}

.search-results-section {
    margin-bottom: 30px;
}

.search-results-section:last-child {
    margin-bottom: 0;
}

.search-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--activeColor);
}

.search-section-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-carbon);
}

.results-count {
    font-size: 14px;
    color: #666;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
}

.search-result-item:hover {
    border-color: var(--activeColor);
    box-shadow: 0px 0px 20px -10px var(--shadowgrey);
}

.search-result-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
}

.search-result-code {
    margin: 0 0 6px 0;
    font-size: 13px;
    color: #666;
}

.search-result-price {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--activeColor);
}

.search-result-date {
    margin: 0 0 6px 0;
    font-size: 13px;
    color: #999;
}

.search-result-excerpt {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-link {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--activeColor);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-result-link:hover {
    color: var(--brand-cyan);
    transform: translateX(3px);
}

.search-result-link svg {
    width: 18px;
    height: 18px;
}

.search-suggestions {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    margin-top: 20px;
}

.search-suggestions h5 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
}

.search-suggestions ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.search-suggestions li {
    margin-bottom: 10px;
}

.search-suggestions li:last-child {
    margin-bottom: 0;
}

.search-suggestions a {
    color: var(--brand-carbon);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-suggestions a svg {
    width: 16px;
    height: 16px;
    color: var(--activeColor);
    transition: color 0.3s ease;
}

.search-suggestions a:hover {
    color: var(--activeColorHover);
}

.search-suggestions a:hover svg {
    color: var(--brand-cyan);
}

/* Mobile responsive for search widget */
@media (max-width: 991px) {
    .top-nav+.searchMenuWrap {
        max-height: 100vh;
        top: 62px;
    }

    .top-nav+.searchMenuWrap.active {
        height: 100vh;
    }

    .searchMenuWrap .row.mt-4 {
        max-height: calc(100vh - 200px);
    }
}

/* Section 3D Tabs */
.tab3d {
    background: #fff;
    box-shadow: 0px 0px 20px #ccc;
    /*border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;*/
    padding: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    font-weight: 400;
    font-size: 15px;
    width: 300px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab3d:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    height: 100%;
    width: 8px;
    background: #09AAD4;
    transition: all 0.3s ease;
}

.tab3d.active:before,
.tab3d:hover:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    display: block;
    height: 100%;
    width: 8px;
    background: #09AAD4;
    transition: all 0.3s ease;
}

.tab3d.active .check img {
    display: block;
    transition: all 0.3s ease;
}

.tab3d .check img {
    display: none;
    transition: all 0.3s ease;
}

.tab3d .iconWrap {
    width: 50px;
    text-align: center;
    margin-right: 10px;
}

.tab3d.active .check {
    display: flex;
    justify-content: center;
    opacity:0;
}

.tab3d .check {
    width: 40px;
    text-align: center;
}

.tab3d .iconWrap img {
    width: 50px;
    height: auto;
}

/* Zone SVG: spente di default, accese in hover/active */
#section3d-inline .zone polygon,
#section3d-inline .zone path {
    opacity: 0;
    transition: opacity .25s ease;
    cursor: pointer;
}

#section3d-inline .zone.is-hover polygon,
#section3d-inline .zone.is-hover path,
#section3d-inline .zone.is-active polygon,
#section3d-inline .zone.is-active path {
    opacity: .2;
}

/* CTA Shake Animation */
@keyframes ctaShake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}

.cta-shake {
    animation: ctaShake 0.45s ease;
}

.work-peacefully {
    background: var(--superlightgrey);
}

.divisionCard {
    padding: 20px;
    min-height: 150px;
    transition: all 0.3s ease;
}

.divisionCard:hover {
    background: var(--white);
    box-shadow: 0px 0px 20px -10px var(--shadowgrey);
    transition: all 0.3s ease;
    cursor: pointer;
}

.divisionCard .divisionImg {
    display: block;
    position: relative;
    width: 80px;
}

.divisionCard .divisionImg img {
    width: 100%;
    transition: all 0.3s ease;
}

.divisionCard .divisionImg img.flat {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.divisionCard .divisionImg img.extrude {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.divisionCard:hover .divisionImg img.extrude {
    opacity: 1;
    visibility: visible;
}

.divisionCard:hover .divisionImg img.flat {
    opacity: 0;
    visibility: hidden;
}

.divisionCard .divisionInfo {
    padding-left: 10px;
    width: calc(100% - 80px);
}

.hspacer-100 {
    height: 100px;
}

/* ----------------------------------------------- References Owl Carousel */

section.references {
    background: var(--superlightgrey);
    background: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(250, 250, 250, 1) 30%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
}

#owlReference {
    box-shadow: 30px 70px 30px -50px #434d8a87;
}

#owlReference .reference-slide {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

#owlReference .reference-content {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

#owlReference .reference-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#owlReference .reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#owlReference .reference-overlay-multiply {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #8D9BFF;
    mix-blend-mode: multiply;
    z-index: 2;
    pointer-events: none;
}

#owlReference .reference-text-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    padding: 40px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

#owlReference .reference-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
}

#owlReference .reference-author {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--white);
}

#owlReference .reference-description {
    font-family: var(--font1);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--white);
}

/* Owl Carousel Navigation */
#owlReference .owl-nav {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

#owlReference .owl-nav button {
    width: 40px;
    height: 40px;
    background-color: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

#owlReference .owl-nav button:hover {
    /* background-color: var(--white) !important; */
    color: var(--activeColorHover);
}

#owlReference .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#owlReference .owl-nav button svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    #owlReference .reference-overlay-multiply {
        width: 100%;
    }

    #owlReference .reference-text-content {
        width: 100%;
        position: relative;
        min-height: 300px;
    }

    #owlReference .reference-content {
        flex-direction: column;
    }

    #owlReference .reference-title {
        font-size: 20px;
    }

    #owlReference .reference-description {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    #owlReference .reference-text-content {
        padding: 30px 20px;
    }

    #owlReference .owl-nav {
        bottom: 20px;
        left: 20px;
    }

    #owlReference .owl-nav button {
        width: 35px;
        height: 35px;
    }
}

/* ----------------------------------------------- Logo Slider Showcase */
#showcaseLogo {
    overflow: hidden;
    width: 100%;
    position: relative;
    background-color: var(--white);
    padding: 40px 0;
}

#showcaseLogo .logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
    will-change: transform;
}

#showcaseLogo .logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#showcaseLogo .logo-item:hover {
    opacity: 0.7;
}

#showcaseLogo .logo-item img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

#showcaseLogo .logo-item:hover img {
    filter: grayscale(100%);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pausa animazione al hover */
#showcaseLogo:hover .logo-track {
    animation-play-state: paused;
}

@media (max-width: 767px) {
    #showcaseLogo .logo-track {
        gap: 40px;
        animation-duration: 20s;
    }

    #showcaseLogo .logo-item {
        height: 60px;
    }

    #showcaseLogo .logo-item img {
        max-height: 60px;
        max-width: 150px;
    }
}


.sectorSlides {
    display: flex;
    gap: 20px;
}

.sectorSlides .sectorWrap {
    width: 10%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sectorSlides .sectorWrap:hover {
    filter: brightness(0.5);
    transition: all 0.3s ease;
}

.sectorSlides .sectorWrap.active {
    width: 80%;
    cursor: initial;
    transition: all 0.3s ease;
}

.sectorSlides .sectorWrap.active:hover {
    filter: none;
}

.sectorSlides .sectorWrap .iconWrap {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.sectorSlides .sectorWrap.active .iconWrap {
    top: -50px;
    right: -50px;
    transition: all 0.3s ease;
}

.sectorSlides .sectorWrap .sectorInfo {
    position: absolute;
    left: 0;
    background: var(--white);
    width: max-content;
    bottom: -200px;
    padding: 20px;
    margin: 20px;
    z-index: 3;
    transition: all 0.3s ease;
}

.sectorSlides .sectorWrap.active .sectorInfo {
    display: block;
    background: var(--white);
    width: calc(100% - 40px);
    padding: 20px;
    margin: 20px;
    bottom: 0;
    left: 0;
    z-index: 3;
    transition: all 0.3s ease;
}

.sectorSlides .sectorWrap.active .sectorInfo:hover {
    bottom: 10px;
    background: var(--activeColorHover);
    color: var(--white);
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .sectorSlides {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sectorSlides .sectorWrap {
        width: 100%;
        height: 100px;
        position: relative;
        overflow: hidden;
        background: #ccc;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .sectorSlides .sectorWrap.active {
        width: 100%;
        height: 400px;
        cursor: initial;
        transition: all 0.3s ease;
    }
}

/* Product Carousel Styles */

.prdCarousel {
    background: var(--brand-carbon);
    color: var(#fff);
}


.product-carousel {
    position: relative;
    padding: 60px 0 40px;
    overflow: visible !important;
}

.product-carousel .owl-stage-outer {
    overflow: visible !important;
}

.product-carousel .owl-stage {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.product-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 400px !important;
    margin-right: 20px !important;
}

/* Primo item (attivo) - 600x600px */
.product-item:first-child {
    width: 600px !important;
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/* Secondo item - 90% opacity */
.product-item:nth-child(2) {
    opacity: 0.9;
    transform: scale(1);
}

/* Terzo item - 80% opacity */
.product-item:nth-child(3) {
    opacity: 0.8;
    transform: scale(1);
}

/* Quarto item - 70% opacity */
.product-item:nth-child(4) {
    opacity: 0.7;
    transform: scale(1);
}

/* Quinto item - 60% opacity */
.product-item:nth-child(5) {
    opacity: 0.6;
    transform: scale(1);
}

/* Sesto item e successivi - 50% opacity */
.product-item:nth-child(n+6) {
    opacity: 0.5;
    transform: scale(1);
}

.product-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-item:first-child .product-card {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-title {
    position: relative;
    padding: 15px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    font-family: var(--font1);
    color: white;
}

.product-item:first-child .product-title {
    font-size: 22px;
    padding: 20px 25px;
}

#owlPrdEvidence .product-title {
    font-size: 24px;
}


/* Owl Carousel Navigation - Stile come #owlReference */
.product-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.product-carousel .owl-nav button {
    background: rgba(255, 255, 255, 0.1) !important;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
}

.product-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.product-carousel .owl-nav button i {
    color: white;
    width: 24px;
    height: 24px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .product-item:first-child {
        width: 500px !important;
    }

    .product-item {
        width: 350px !important;
    }
}

@media (max-width: 992px) {
    .product-item:first-child {
        width: 400px !important;
    }

    .product-item {
        width: 300px !important;
        margin-right: 15px !important;
    }
}

@media (max-width: 768px) {
    .product-item:first-child {
        width: 100% !important;
        max-width: 400px;
    }

    .product-item {
        width: 250px !important;
        margin-right: 10px !important;
    }

    .product-carousel .owl-nav {
        top: auto;
        bottom: -60px;
        right: 50%;
        transform: translateX(50%);
    }
}

/* Custom Navigation for Product Carousels */
.custom-nav-prd {
    display: flex;
    gap: 15px;
}

.custom-nav-prd button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-nav-prd button:hover {
    opacity: 1 !important;
}

.custom-nav-prd button i,
.custom-nav-prd button svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.custom-nav-prd .owl-prev-prd {
    opacity: 0.5;
}

.custom-nav-prd .owl-next-prd {
    opacity: 1;
}

/* Product Items Styles */
.product-evidence-item,
.product-thumb-item {
    cursor: pointer;
}

.product-evidence-item a,
.product-thumb-item a {
    display: block;
    overflow: hidden;
    position: relative;
}

/* Overlay applicato a tutti gli item del carousel thumb */
#owlPrdThumb .product-thumb-item a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--brand-carbon));
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s ease-out;
}

/* Nascondi overlay per tutti gli item di default */
#owlPrdThumb .owl-item .product-thumb-item a::after {
    opacity: 0;
}

/* Mostra overlay solo sull'item più opacizzato */
#owlPrdThumb .owl-item.most-opaque .product-thumb-item a::after {
    opacity: 1;
}

/* Rimuovi overlay all'hover */
#owlPrdThumb .owl-item.most-opaque:hover .product-thumb-item a::after {
    opacity: 0;
}

/* News Grid con Bootstrap */
#newsGrid.row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

/* Card quadrata (colonna 1 - 50%) */
.news-card-square {
    height: 600px;
}

/* Card piccola (40%) */
.news-card-small {
    height: 230px;
}

/* Card grande (60%) */
.news-card-large {
    height: 350px;
}

/* News Card Styles */
.news-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.news-card a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
    transition: transform 0.6s ease-out;
}

.news-card:hover img {
    transform: scale(1.05);
}

/* News Overlay */
.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-title {
    color: white;
    font-family: var(--font1);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* News Badges */
.news-badges-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    z-index: 2;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.news-badge {
    background: white;
    color: black;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 500;
    display: inline-block;
}

/* Tablet Layout (768px - 991px) */
@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .news-card-large {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .news-card-medium-1 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .news-card-medium-2 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .news-card-medium-3 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .news-card-medium-4 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
}

/* Mobile Layout (< 768px) */
@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .news-card-large,
    .news-card-medium-1,
    .news-card-medium-2,
    .news-card-medium-3,
    .news-card-medium-4 {
        grid-column: 1 / 2;
        grid-row: auto;
    }
}

.product-evidence-item img,
.product-thumb-item img {
    transition: transform 0.6s ease-out, filter 0.6s ease-out, opacity 0.4s ease;
    display: block;
    width: 100%;
    height: auto;
}

.product-evidence-item:hover img,
.product-thumb-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.3);
}

/* Opacity progressiva per Owl2 thumbnails - gestita via JavaScript */
/* Al hover riporta opacity a 1 */
#owlPrdThumb .owl-item:hover {
    opacity: 1 !important;
}



.megaCta {
    position: relative;
}

.megaCta .overTextWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.megaCta .overTextWrap .overText {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 40px);
    padding: 30px;
    color: var(--white);
    margin: 20px;
}

.megaCta .overTextWrap .overText::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: var(--brand-violet); */
    background: rgba(65, 77, 156, 0.5);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.megaCta .overTextWrap .overText>* {
    position: relative;
    z-index: 1;
    mix-blend-mode: normal;
}

.megaCta .overTextWrap .overText .header {
    font-weight: 600;
}

.megaCta .overTextWrap .overText .body {
    font-size: 30px;
    font-weight: 600;
}

.megaCta .overTextWrap .overText .footer {
    display: flex;
    justify-content: flex-end;
}


@media (max-width: 767px) {
    .megaCta .overTextWrap .overText .body {
        font-size: 22px;
    }
}



.hero-content .hero-slide {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.hero-content .hero-slide .overText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: calc(100% - 40px); */
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content .hero-slide .overText .heroTitle {
    color: var(--white);
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 20px;
}

.hero-content .hero-slide .overText .heroArgument {
    color: var(--white);
    font-size: 24px;
}

.hero-content .hero-slide img.bckImgOwl{
    width: 100%;
    min-height: 800px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .hero-content .hero-slide .overText {
        padding: 0 60px
    }

    .hero-content .hero-slide .overText .heroTitle {
        color: var(--white);
        font-size: 40px;
        text-transform: uppercase;
        font-weight: 600;
        line-height: 1em;
        margin-bottom: 20px;
    }

    .hero-content .hero-slide .overText .heroArgument {
        color:var(--white);
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    /* .h-100 {
        height: 0px !important;
    } */
    .card.h-100,
    #services360 .h-100{
        height:auto !important;
    }
    #heroCarousel .owl-next {
        right: 10px;
    }

    #heroCarousel .owl-prev {
        left: 10px;
    }

    .hero-content .hero-slide .overText {
        padding:0 20px;
    }

    .hero-content .hero-slide .overText .heroTitle {
        color: var(--white);
        font-size: 40px;
        text-transform: uppercase;
        font-weight: 600;
        line-height: 1em;
        margin-bottom: 20px;
    }
}


/* Owl General Arrow */

#heroCarousel {
    position: relative;
}

#heroCarousel.owl-carousel .owl-stage-outer {
    position: relative;
    /*height: 800px;*/
}

#heroCarousel .hero-content .hero-slide {
    height: 800px;
}

#heroCarousel .owl-next,
#heroCarousel .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

#heroCarousel .owl-next {
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

#heroCarousel .owl-prev {
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

#heroCarousel .owl-next,
#heroCarousel .owl-prev {
    background: transparent;
    color: var(--white);
}

#heroCarousel .owl-next:hover,
#heroCarousel .owl-prev:hover {
    background: rgb(0 0 0 /10%);
}

#heroCarousel .owl-next i,
#heroCarousel .owl-prev i {
    font-size: 30px;
}

#heroCarousel .owl-dots {
    position: absolute;
    z-index: 15;
    bottom: 8px;
    width: 100%;
}

#heroCarousel .owl-dots button.owl-dot span {
    background: rgb(255 255 255 / 20%);
    transition: all 0.3s ease-in-out;
}

#heroCarousel .owl-dots button.owl-dot.active span {
    background: rgb(255 255 255);
    width: 15px;
    transition: all 0.3s ease-in-out;
}



.breadc a {
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.breadc a:hover {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.breadc svg {
    width: 14px;
}


.heroArea .hero-content .breadc,
.heroAreaOverlayed .hero-content .breadc {
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    z-index: 50;
    overflow: hidden;
}

.heroArea .hero-content .breadc svg,
.heroAreaOverlayed .hero-content .breadc svg {
    color: var(--white50);
}


.heroArea .hero-content .breadc a,
.heroAreaOverlayed .hero-content .breadc a {
    color: var(--white);
}


.heroArea .hero-content {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.heroArea .hero-content .bck {
    width: 100%;
}

.heroArea .hero-content .overText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgb(0 0 0 /70%); */
}

.heroArea .hero-content .overText .heroTitle {
    color: var(--white);
    font-size: 60px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 20px;
}

.heroArea .hero-content .overText .heroArgument {
    color: var(--white);
}

@media (max-width: 991px) {
    .heroArea .hero-content .overText {
        padding: 0 60px
    }

    .heroArea .hero-content .overText .heroTitle {
        color: var(--white);
        font-size: 40px;
        font-weight: 600;
        line-height: 1em;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .heroArea .hero-content .hero-slide .overText {
        padding: 0 60px
    }

    .heroArea .hero-content .hero-slide .overText .heroTitle {
        color: var(--white);
        font-size: 40px;
        text-transform: uppercase;
        font-weight: 600;
        line-height: 1em;
        margin-bottom: 20px;
    }
}



.heroAreaOverlayed .hero-content {
    position: relative;
    overflow: hidden;
}

.heroAreaOverlayed .hero-content .overText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgb(0 0 0 /70%); */
}

.heroAreaOverlayed .hero-content .overlayImgResp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: multiply;
    transition: all 0.3s ease-in-out;
}

.heroAreaOverlayed .hero-content .overlayImgResp img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.heroAreaOverlayed .hero-content .overText .heroTitle {
    color: var(--white);
    font-size: 60px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 20px;
}

.heroAreaOverlayed .hero-content .overText .heroArgument {
    color: var(--white);
}

@media (max-width: 991px) {
    .heroAreaOverlayed .hero-content .overText {
        padding: 0 60px
    }

    .heroAreaOverlayed .hero-content .overText .heroTitle {
        color: var(--white);
        font-size: 40px;
        font-weight: 600;
        line-height: 1em;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .heroAreaOverlayed .hero-content .hero-slide .overText {
        padding: 0 60px
    }

    .heroAreaOverlayed .hero-content .hero-slide .overText .heroTitle {
        color: var(--white);
        font-size: 40px;
        text-transform: uppercase;
        font-weight: 600;
        line-height: 1em;
        margin-bottom: 20px;
    }
}






/* Footer */
.site-footer {
    font-size: 14px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-company-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-company-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company-info a:hover {
    color: var(--activeColor);
}

.footer-company-info i,
.footer-company-info svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--activeColor);
}

/* Newsletter Form */
.newsletter-form .input-group {
    position: relative;
}

.newsletter-form .form-control {
    border: 1px solid var(--brand-carbon);
    padding: 10px 50px 10px 15px;
    border-radius: 0px;
    font-size: 14px;
}

.newsletter-form .form-control:focus {
    border-color: var(--activeColor);
    box-shadow: none;
}

.newsletter-form .btn-newsletter {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.newsletter-form .btn-newsletter:hover {
    color: var(--activeColor);
}

.newsletter-form .btn-newsletter i,
.newsletter-form .btn-newsletter svg {
    width: 20px;
    height: 20px;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.footer-copyright {
    font-size: 12px;
    color: #666;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-title {
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .footer-menu li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767px) {
    .site-footer {
        font-size: 13px;
    }

    .footer-logo img {
        max-width: 120px;
    }
}

/* ----------------------------------------------- Subcategory Selector */

.subCategorySelector {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.subcat-option {
    position: relative;
}

.subcat-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.subcat-option label {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subcat-img {
    position: relative;
    width: 150px;
    height: 80px;
    background: var(--brand-cardgrey);
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.subcat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
}

.subcat-img .check-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: var(--brand-blu);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.subcat-img .check-icon svg {
    width: 16px;
    height: 16px;
    color: #fff;
    stroke-width: 3;
}

.subcat-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-carbon);
    transition: all 0.3s ease;
}

/* Stato checked */
.subcat-option input[type="radio"]:checked+label .subcat-img {
    /* border-color: var(--brand-blu); */
    background: var(--activeColorHoverTrasp);
}

.subcat-option input[type="radio"]:checked+label .check-icon {
    opacity: 1;
    transform: scale(1);
}

.subcat-option input[type="radio"]:checked+label .subcat-title {
    color: var(--brand-blu);
    font-weight: 600;
}

/* Hover */
.subcat-option label:hover .subcat-img {
    border-color: var(--brand-blu);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subcat-option label:hover .subcat-title {
    color: var(--brand-blu);
}

/* Responsive */
@media (max-width: 767px) {
    .subcat-img {
        width: 100px;
        height: 100px;
    }

    .subcat-title {
        font-size: 12px;
    }
}

/* ----------------------------------------------- Owl Six Products Carousel */

.product-card-evidence-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.product-card-evidence-nav button {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--brand-carbon);
}

.product-card-evidence-nav button:hover {
    color: var(--brand-blu);
    transform: scale(1.1);
}

.product-card-evidence-nav button svg {
    width: 20px;
    height: 20px;
}

.owlSixProducts .product-card-evidence {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.owlSixProducts .product-card-evidence a {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.owlSixProducts .product-card-evidence a .badgeWrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 10px;
    gap: 10px;
}

.owlSixProducts .product-card-evidence a .badge {
    color: var(--white);
    background: var(--activeColorHover);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 12px;
}


.owlSixProducts .product-card-evidence a:hover h6 {
    color: var(--activeColorHover);
    transition: all 0.3s ease-in-out;
}

.owlSixProducts .product-img-wrap {
    background: var(--brand-cardgrey);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.owlSixProducts .product-card-evidence:hover .product-img-wrap {
    background: var(--activeColorHoverTrasp);
    transition: all 0.3s ease-in-out;
}

.owlSixProducts .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transform: scale(1);
    filter: grayscale(0.3) saturate(1);
    transition: all 0.3s ease-in-out;
}

.owlSixProducts .product-card-evidence:hover .product-img-wrap img {
    transform: scale(1.05);
    filter: grayscale(0) saturate(1.5);
    transition: all 0.3s ease-in-out;
}

.owlSixProducts .product-code {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    margin-bottom: 8px;
    text-align: left;
}

.owlSixProducts .product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 0;
    line-height: 1.3;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.owlSixProducts h6.product-title.text-uppercase {
    margin: 0;
    padding: 0;
}






.megaCta2 {
    position: relative;
    width: 100%;
    height: 700px;
}

.megaCta2 .message {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 60px;
    line-height: 1em;
    font-weight: 600;
    color: var(--white);
    padding: 0 15%;
}

.megaCta2 .cta {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 20;
    width: 100%;
    padding: 20px;
}

.megaCta2 .cta .payoff {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

.megaCta2 .bg {
    position: absolute;
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 700px;
}





.megaCta3 {
    position: relative;
    width: 100%;
    height: 700px;
}

.megaCta3 .message {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    line-height: 1em;
    font-weight: 600;
    color: var(--white);
    padding: 0 15%;
}

.megaCta3 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.megaCta3 .cta {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 20;
    width: 100%;
    padding: 20px;
}

.megaCta3 .cta .payoff {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

.megaCta3 .bg {
    position: absolute;
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 700px;
}













a.prodCard {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

a.prodCard .badgeWrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 10px;
    gap: 10px;
}

a.prodCard .badge {
    color: var(--white);
    background: var(--activeColorHover);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
}


a.prodCard:hover h6 {
    color: var(--activeColorHover);
    transition: all 0.3s ease-in-out;
}

a.prodCard .product-img-wrap {
    background: var(--brand-cardgrey);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

#modelCarousel {
    background: var(--brand-cardgrey);
}

#modelCarousel img {
    mix-blend-mode: multiply;
}

a.prodCard:hover .product-img-wrap {
    background: var(--activeColorHoverTrasp);
    transition: all 0.3s ease-in-out;
}

a.prodCard .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transform: scale(1);
    filter: grayscale(0.3) saturate(1);
    transition: all 0.3s ease-in-out;
}

a.prodCard:hover .product-img-wrap img {
    transform: scale(1.05);
    filter: grayscale(0) saturate(1.5);
    transition: all 0.3s ease-in-out;
}

a.prodCard .product-code {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    margin-bottom: 8px;
    text-align: left;
}

a.prodCard .product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 0;
    line-height: 1.3;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.prodCard h6.product-title.text-uppercase {
    margin: 0;
    padding: 0;
}

#filters button {
    background: transparent;
    border: 1px solid transparent;
    color: var(--brand-carbon);
    transition: all 0.3s ease-in-out;
    padding: 4px 10px;
}

#filters button.is-checked {
    background: transparent;
    border: 1px solid var(--activeColor);
    color: var(--activeColor);
    transition: all 0.3s ease-in-out;
}

/* Category filter buttons when selected */
#category-filters button.is-checked {
    background: transparent;
    border: 1px solid var(--brand-blu);
    color: var(--brand-blu);
    transition: all 0.3s ease-in-out;
}

/* Sector filter buttons when selected */
#sector-filters button.is-checked {
    background: transparent;
    border: 1px solid #6c757d;
    color: #6c757d;
    transition: all 0.3s ease-in-out;
}

/* ----------------------------------------------- Product Detail Page Carousels */

/* Product Preview Carousel */
.product-preview-carousel-wrap {
    position: relative;
    overflow: hidden;
}

#owlPrdPreview .product-preview-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: var(--brand-cardgrey);
}

#owlPrdPreview .product-preview-item .product-preview-zoom-but {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 4;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px -2px var(--shadowgrey);
    pointer-events: none;
}

#owlPrdPreview .product-preview-item:hover .product-preview-zoom-but {
    opacity: 1;
    pointer-events: auto;
}

#owlPrdPreview .product-preview-item {
    cursor: pointer;
}

#owlPrdPreview .product-preview-item .product-preview-zoom-but img {
    width: 20px;
    height: 20px;
}


#owlPrdPreview .owl-nav {
    margin-top: 0;
}

#owlPrdPreview .product-preview-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Product Thumbnails Carousel */
.product-thumbs-carousel-wrap {
    position: relative;
}

#owlPrdThumbs .product-thumb-item {
    cursor: pointer;
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--brand-cardgrey);
}

#owlPrdThumbs .product-thumb-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

#owlPrdThumbs .product-thumb-item:hover {
    border-color: var(--activeColorHover);
}

#owlPrdThumbs .product-thumb-item:hover img {
    transform: scale(1.05);
}

/* Active Thumb State */
#owlPrdThumbs .owl-item.active-thumb .product-thumb-item {
    background: var(--activeColorHoverTrasp);
    background: var(--activeColorHoverTrasp);
}

#owlPrdThumbs .owl-item.active-thumb .product-thumb-item img {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #owlPrdPreview .product-preview-item {
        min-height: 300px;
    }

    .product-preview-carousel-wrap {
        padding: 15px;
    }

    #owlPrdThumbs .product-thumb-item {
        padding: 8px;
    }
}

/* Product Preview Carousel Navigation Arrows (same style as heroCarousel) */
#owlPrdPreview .owl-next,
#owlPrdPreview .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    background: transparent;
    color: var(--brand-carbon);
}

#owlPrdPreview .owl-next {
    right: 20px;
}

#owlPrdPreview .owl-prev {
    left: 20px;
}

#owlPrdPreview .owl-next:hover,
#owlPrdPreview .owl-prev:hover {
    background: rgb(0 0 0 /10%);
}

#owlPrdPreview .owl-next i,
#owlPrdPreview .owl-prev i {
    font-size: 30px;
}

/* Responsive adjustments for arrows */
@media (max-width: 768px) {
    #owlPrdPreview .owl-next {
        right: 10px;
    }

    #owlPrdPreview .owl-prev {
        left: 10px;
    }
}

/* ----------------------------------------------- Art Carousel in Offcanvas (Assistenza) */
/* Duplicate styles from Product Preview for Art Preview */



#owlArtPreview .art-preview-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: var(--brand-cardgrey);
}

#owlArtPreview .art-preview-item .art-preview-zoom-but {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 4;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px -2px var(--shadowgrey);
    pointer-events: none;
}

#owlArtPreview .art-preview-item:hover .art-preview-zoom-but {
    opacity: 1;
    pointer-events: auto;
}

#owlArtPreview .art-preview-item {
    cursor: pointer;
}

#owlArtPreview .art-preview-item .art-preview-zoom-but img {
    width: 20px;
    height: 20px;
}

#owlArtPreview .owl-nav {
    margin-top: 0;
}

#owlArtPreview .art-preview-item img {
    max-height: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Art Preview Carousel Navigation Arrows */
#owlArtPreview .owl-next,
#owlArtPreview .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    background: transparent;
    color: var(--brand-carbon);
}

#owlArtPreview .owl-next {
    right: 20px;
}

#owlArtPreview .owl-prev {
    left: 20px;
}

#owlArtPreview .owl-next:hover,
#owlArtPreview .owl-prev:hover {
    background: rgb(0 0 0 /10%);
}

#owlArtPreview .owl-next i,
#owlArtPreview .owl-prev i {
    font-size: 30px;
}

/* Art Thumbnails Carousel */
#owlArtThumbs {
    text-align: left;
}

#owlArtThumbs .owl-stage {
    display: flex;
    align-items: flex-start;
}

#owlArtThumbs .art-thumb-item {
    cursor: pointer;
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--brand-cardgrey);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#owlArtThumbs .art-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

#owlArtThumbs .art-thumb-item:hover {
    border-color: var(--activeColorHover);
}

#owlArtThumbs .art-thumb-item:hover img {
    transform: scale(1.05);
}

/* Active Thumb State for Art */
#owlArtThumbs .owl-item.active-thumb .art-thumb-item {
    background: var(--activeColorHoverTrasp);
}

#owlArtThumbs .owl-item.active-thumb .art-thumb-item img {
    opacity: 1;
}

/* Responsive adjustments for Art carousel */
@media (max-width: 768px) {
    #owlArtPreview .art-preview-item {
        min-height: 300px;
    }

    #owlArtPreview .owl-next {
        right: 10px;
    }

    #owlArtPreview .owl-prev {
        left: 10px;
    }

    #owlArtThumbs .art-thumb-item {
        padding: 8px;
    }
}

/* ----------------------------------------------- Art Accordion (Downloads in Offcanvas) */
.art-accordion {
    margin-top: 10px;
}

.art-accordion .accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.art-accordion .accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-carbon);
    text-align: left;
    transition: all 0.3s ease;
}

.art-accordion .accordion-header:hover {
    color: var(--activeColorHover);
}

.art-accordion .accordion-header.active {
    color: var(--activeColorHover);
}

.art-accordion .accordion-header span {
    flex: 1;
}

.art-accordion .accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.art-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.art-accordion .accordion-content.active {
    max-height: 500px;
    padding-bottom: 16px;
}

.art-accordion .download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.art-accordion .download-list li {
    margin-bottom: 8px;
}

.art-accordion .download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-color: transparent;
    background: transparent;
    /* background: var(--brand-cardgrey);
  border-radius: 4px; */
    text-decoration: none;
    color: var(--brand-carbon);
    transition: all 0.3s ease;
}

.art-accordion .download-item:hover {
    background: var(--activeColorHoverTrasp);
    color: var(--activeColorHover);
}

.art-accordion .download-item i:first-child {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.art-accordion .download-item span {
    flex: 1;
    font-size: 14px;
}

.art-accordion .download-item i:last-child {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ----------------------------------------------- Contact Widgets (Offcanvas) */
.contact-widget {
    /* border: 1px solid #e5e7eb; */
    border-radius: 8px;
    overflow: hidden;
    background: var(--activeColorHoverTrasp10);
}

.contact-widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 0px;
}

.contact-widget-header .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--activeColorHover);
}

.contact-widget-header .contact-icon svg {
    width: 16px !important;
    height: 16px !important;
    transform: scale(0.67);
}

.contact-widget-header .contact-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
}

.contact-widget-body {
    padding: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--activeColorHover);
}

.contact-info-item .contact-company {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 4px;
}

.contact-info-item .contact-address {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.contact-info-item .contact-link {
    font-size: 14px;
    color: var(--brand-carbon);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item .contact-link:hover {
    color: var(--activeColorHover);
}

/* ----------------------------------------------- Dashboard Area Riservata */

/* Equal Height Row */
.ar-row-equal-height {
    display: flex;
    flex-wrap: wrap;
}

.ar-row-equal-height>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* Dashboard Sidebar */
.ar-sidebar {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ar-menu {
    flex: 1;
}

.ar-user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    position: relative;
}

.ar-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--brand-carbon);
    transition: all 0.3s ease;
    margin-left: auto;
}

.ar-menu-toggle:hover {
    color: var(--activeColorHover);
}

@media (max-width: 767px) {
    .ar-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.ar-user-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 20px;
    background: var(--brand-cardgrey);
    color: var(--brand-carbon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.ar-user-info {
    flex: 1;
}

.ar-user-company {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-carbon);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ar-user-name {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
}

/* Dashboard Menu */
.ar-menu {
    padding: 0;
}

.ar-menu-title {
    padding: 16px 20px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ar-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--brand-carbon);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.ar-menu-item i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ar-menu-item span:not(.ar-badge-count) {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.ar-menu-item:hover {
    background: var(--brand-cardgrey);
    color: var(--activeColorHover);
}

.ar-menu-item.active {
    background: var(--activeColorHoverTrasp10);
    border-left-color: var(--activeColorHover);
    color: var(--activeColorHover);
    font-weight: 600;
}

.ar-menu-chevron {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.ar-menu-item[aria-expanded="true"] .ar-menu-chevron {
    transform: rotate(180deg);
}

.ar-menu-subitem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 52px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ar-menu-subitem:hover {
    background: var(--brand-cardgrey);
    color: var(--activeColorHover);
}

.ar-menu-subitem.active {
    color: var(--activeColorHover);
    font-weight: 500;
}

.ar-menu-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.ar-menu-subitem.active .ar-menu-dot {
    background: var(--activeColorHover);
}

.ar-badge-count {
    background: var(--activeColorHover);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
}

/* AR Content */
.ar-content {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ar-content-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 30px;
}

/* AR Card customization (Bootstrap cards) */
.ar-content .card {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.ar-content .card-header {
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 30px;
}

.ar-content .card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-carbon);
}

.ar-content .card-body {}

.ar-content .card-footer {
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    padding: 20px 30px;
}

/* AR Form */
.ar-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-carbon);
    margin-bottom: 8px;
}

.ar-form .form-control,
.ar-form .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ar-form .form-control:focus,
.ar-form .form-select:focus {
    border-color: var(--activeColorHover);
    box-shadow: 0 0 0 3px var(--activeColorHoverTrasp10);
    outline: none;
}

/* Profile Image Upload */
.ar-profile-upload {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ar-profile-preview {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: var(--brand-cardgrey);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.ar-profile-preview i {
    width: 32px;
    height: 32px;
    color: #9ca3af;
}

.ar-btn-upload {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-carbon);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ar-btn-upload:hover {
    background: var(--brand-cardgrey);
    border-color: var(--activeColorHover);
    color: var(--activeColorHover);
}

.ar-btn-upload i {
    width: 16px;
    height: 16px;
}

.ar-upload-hint {
    font-size: 12px;
    color: #9ca3af;
}

/* AR Document Box */
.ar-document-box {
    background: var(--brand-cardgrey);
    border-radius: 8px;
    padding: 20px;
}

.ar-document-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 8px;
}

.ar-document-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: var(--white);
    border-radius: 4px;
    margin-top: 15px;
}

.ar-document-content p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

/* AR Special Conditions */
.ar-special-conditions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ar-condition-item {
    background: var(--brand-cardgrey);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--activeColorHover);
}

.ar-condition-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ar-condition-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0;
}

.ar-condition-item p {
    margin-bottom: 8px;
    font-size: 14px;
}

.ar-condition-item p:last-child {
    margin-bottom: 0;
}

/* AR Icon Button (like topnav) */
.ar-icon-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--brand-carbon);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ar-icon-btn:hover {
    background: var(--activeColorHover);
    color: var(--white);
}

/* AR Shipping Addresses */
.ar-shipping-address {
    background: var(--brand-cardgrey);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.ar-shipping-address:hover {
    border-color: var(--activeColorHover);
}

.ar-shipping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.ar-shipping-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
}

.ar-shipping-actions {
    display: flex;
    gap: 5px;
}

.ar-shipping-details p {
    font-size: 14px;
    color: var(--brand-carbon);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ar-shipping-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ar-shipping-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* ============================================ */
/* AR ORDERS - Area Riservata Orders Section */
/* ============================================ */

/* Frequent Orders Carousel */
.ar-frequent-orders {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--linegrey);
}

/* Carousel Navigation - Same style as product-card-evidence-nav */
.ar-carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.ar-carousel-nav button {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--brand-carbon);
}

.ar-carousel-nav button:hover {
    color: var(--brand-blu);
    transform: scale(1.1);
}

.ar-carousel-nav button svg {
    width: 20px;
    height: 20px;
}

.ar-carousel-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ar-carousel-nav button:disabled:hover {
    transform: none;
    color: var(--brand-carbon);
}

/* Orders Filters */
.ar-orders-filters {
    background: var(--superlightgrey);
    padding: 15px;
    border-radius: 8px;
}

/* Search Input Group - Same style as newsletter */
.ar-search-input-group {
    position: relative;
}

.ar-search-input-group .form-control {
    border: 1px solid var(--brand-carbon);
    padding: 8px 45px 8px 12px;
    border-radius: 0;
    background: var(--white);
    font-size: 14px;
    height: 38px;
}

.ar-search-input-group .form-control:focus {
    border-color: var(--activeColor);
    box-shadow: none;
    outline: none;
}

.ar-search-input-group .ar-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    color: var(--brand-carbon);
    transition: color 0.3s ease;
    z-index: 10;
}

.ar-search-input-group .ar-search-btn:hover {
    color: var(--activeColor);
}

.ar-search-input-group .ar-search-btn i,
.ar-search-input-group .ar-search-btn svg {
    width: 18px;
    height: 18px;
}

.ar-orders-filters .form-select {
    padding: 8px 12px;
    font-size: 14px;
    height: 38px;
    border: 1px solid var(--brand-carbon);
    border-radius: 0;
    background: var(--white);
}

.ar-orders-filters .form-select:focus {
    border-color: var(--activeColor);
    box-shadow: none;
    outline: none;
}

.ar-btn-export {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--brand-carbon);
    color: var(--brand-carbon);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 38px;
    white-space: nowrap;
}

.ar-btn-export:hover {
    background: var(--brand-carbon);
    color: var(--white);
}

.ar-btn-export i {
    width: 16px;
    height: 16px;
}

.ar-orders-filters .cta-standard {
    font-size: 14px;
    padding: 8px 14px;
    height: 38px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.ar-orders-filters .cta-standard i {
    width: 16px;
    height: 16px;
}

/* Orders Table */
.ar-orders-table-wrap {
    overflow-x: auto;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--linegrey);
}

.ar-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.ar-orders-table thead {
    background: var(--superlightgrey);
}

.ar-orders-table thead th {
    padding: 15px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--linegrey);
}

.ar-orders-table tbody tr {
    border-bottom: 1px solid var(--linegrey);
    transition: all 0.3s ease;
}

.ar-orders-table tbody tr:hover {
    background: var(--superlightgrey);
}

.ar-orders-table tbody tr:last-child {
    border-bottom: none;
}

.ar-orders-table tbody td {
    padding: 20px;
    vertical-align: middle;
}

.ar-order-number {
    font-size: 15px;
    font-weight: 600;
    color: var(--activeColor);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ar-order-number:hover {
    color: var(--activeColorHover);
    text-decoration: underline;
}

.ar-order-date {
    font-size: 14px;
    color: var(--brand-carbon);
}

.ar-order-items {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-carbon);
}

.ar-order-total {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-carbon);
}

/* Payment Status with dot (like availability) */
.ar-payment-status {
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-left: 18px;
    display: inline-block;
}

.ar-payment-status:before {
    content: "●";
    position: absolute;
    left: 0;
    line-height: 1.4;
    font-size: 16px;
}

.ar-payment-status.ar-payment-paid {
    color: var(--brand-green);
}

.ar-payment-status.ar-payment-paid:before {
    color: var(--brand-green);
}

.ar-payment-status.ar-payment-pending {
    color: var(--brand-ocra);
}

.ar-payment-status.ar-payment-pending:before {
    color: var(--brand-ocra);
}

.ar-payment-status.ar-payment-cancelled {
    color: var(--brand-coral);
}

.ar-payment-status.ar-payment-cancelled:before {
    color: var(--brand-coral);
}

.ar-payment-status.ar-payment-processing {
    color: var(--brand-cyan);
}

.ar-payment-status.ar-payment-processing:before {
    color: var(--brand-cyan);
}

/* Orders Pagination */
.ar-orders-pagination .pagination {
    gap: 5px;
}

.ar-orders-pagination .page-link {
    border: 1px solid var(--linegrey);
    color: var(--brand-carbon);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ar-orders-pagination .page-link:hover {
    background: var(--superlightgrey);
    border-color: var(--activeColor);
    color: var(--activeColor);
}

.ar-orders-pagination .page-item.active .page-link {
    background: var(--brand-carbon);
    border-color: var(--brand-carbon);
    color: var(--white);
}

.ar-orders-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Orders Table */
@media (max-width: 1200px) {
    .ar-orders-filters .row {
        row-gap: 10px;
    }

    .ar-orders-filters .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ar-orders-filters .col-md-2 {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    .ar-btn-export {
        width: 100%;
        justify-content: center;
    }

    .ar-orders-filters .cta-standard {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ar-frequent-orders h5 {
        font-size: 16px;
    }

    .ar-orders-filters {
        padding: 12px;
    }

    .ar-orders-filters .row {
        row-gap: 8px;
    }

    .ar-orders-filters .col-md-2,
    .ar-orders-filters .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ar-orders-filters .ms-auto {
        margin-left: 0 !important;
    }

    .ar-btn-export,
    .ar-orders-filters .cta-standard {
        width: 100%;
        justify-content: center;
    }

    .ar-orders-table-wrap {
        border: none;
        border-radius: 0;
    }

    .ar-orders-table thead {
        display: none;
    }

    .ar-orders-table tbody tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid var(--linegrey);
        border-radius: 8px;
        padding: 15px;
        background: var(--white);
    }

    .ar-orders-table tbody tr:hover {
        background: var(--superlightgrey);
    }

    .ar-orders-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid var(--linegrey);
    }

    .ar-orders-table tbody td:first-child {
        padding-top: 0;
    }

    .ar-orders-table tbody td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ar-orders-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        color: var(--brand-grey);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .ar-order-number {
        font-size: 14px;
    }

    .ar-order-date {
        font-size: 13px;
    }

    .ar-payment-status {
        font-size: 13px;
    }

    .ar-order-total {
        font-size: 14px;
    }

    .ar-orders-pagination .pagination {
        flex-wrap: wrap;
        gap: 3px;
    }

    .ar-orders-pagination .page-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .ar-orders-list h5 {
        font-size: 16px;
    }

    .ar-orders-filters .cta-standard span {
        display: none;
    }

    .ar-orders-filters .cta-standard i {
        margin-right: 0 !important;
    }
}

/* ============================================ */
/* AR ORDER DETAIL - Dettaglio Ordine */
/* ============================================ */

/* Back Button */
.ar-back-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--linegrey);
    border-radius: 4px;
    color: var(--brand-carbon);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ar-back-btn:hover {
    background: var(--brand-carbon);
    color: var(--white);
    border-color: var(--brand-carbon);
}

/* Action Button */
.ar-btn-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--brand-carbon);
    color: var(--brand-carbon);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 38px;
}

.ar-btn-action:hover {
    background: var(--brand-carbon);
    color: var(--white);
}

.ar-btn-action i {
    width: 18px;
    height: 18px;
}

/* Order Detail Table */
.ar-order-detail-table-wrap {
    overflow-x: auto;
    background: var(--white);
    border-radius: 8px;
    border-bottom: 1px solid var(--linegrey);
}

.ar-order-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.ar-order-detail-table thead {
    background: var(--white);
}

.ar-order-detail-table thead th {
    padding: 15px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--linegrey);
}

.ar-order-detail-table tbody tr {
    border-bottom: 1px solid var(--linegrey);
}

.ar-order-detail-table tbody tr:last-child {
    border-bottom: none;
}

.ar-order-detail-table tbody td {
    padding: 20px;
    vertical-align: middle;
}

/* Order Product */
.ar-order-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ar-order-product-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--superlightgrey);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ar-order-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ar-order-product-info {
    flex: 1;
}

.ar-order-product-code {
    font-size: 12px;
    color: var(--brand-grey);
    margin-bottom: 4px;
}

.ar-order-product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-carbon);
    line-height: 1.4;
}

.ar-order-product-price,
.ar-order-product-qty,
.ar-order-product-total {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-carbon);
}

/* Order Payment Status */
.ar-order-payment-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid var(--linegrey);
}

.ar-order-payment-status .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-carbon);
}

/* Order Summary */
.ar-order-summary {
    padding: 20px 0;
    border-bottom: 1px solid var(--linegrey);
}

.ar-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.ar-summary-row .label {
    color: var(--brand-carbon);
}

.ar-summary-row .value {
    font-weight: 600;
    color: var(--brand-carbon);
}

.ar-summary-discount .value {
    color: var(--brand-green);
}

.ar-summary-total {
    border-top: 1px solid var(--linegrey);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 16px;
}

.ar-summary-total .label,
.ar-summary-total .value {
    font-weight: 700;
}

/* Order Notes */
.ar-order-notes {
    padding: 20px 0;
    height: 100%;
}

.ar-notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ar-notes-header h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0;
}

.ar-notes-edit-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--brand-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ar-notes-edit-btn:hover {
    background: var(--superlightgrey);
    color: var(--activeColor);
}

.ar-notes-content {
    font-size: 14px;
    color: var(--brand-carbon);
    line-height: 1.6;
}

.ar-notes-content p {
    margin: 0;
}

.ar-notes-empty p {
    color: var(--brand-grey);
    font-style: italic;
}

/* Order Info Box */
.ar-order-info-box {
    padding: 20px 0;
    border-right: 1px solid var(--linegrey);
    height: 100%;
    margin-bottom: 15px;
    padding-right: 20px;
}

.ar-order-info-box:last-child {
    border-right: none;
    padding-right: 0;
}

.ar-info-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ar-info-box-header h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0;
}

.ar-info-edit-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--brand-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ar-info-edit-btn:hover {
    background: var(--superlightgrey);
    color: var(--activeColor);
}

.ar-info-box-content {
    font-size: 14px;
    color: var(--brand-carbon);
    line-height: 1.6;
}

.ar-info-box-content p {
    margin: 0;
}

/* Payment Method */
.ar-payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ar-payment-method i {
    color: var(--brand-carbon);
    flex-shrink: 0;
}

/* Responsive Order Detail */
@media (max-width: 768px) {
    .ar-order-detail-table-wrap {
        border: none;
        border-radius: 0;
    }

    .ar-order-detail-table thead {
        display: none;
    }

    .ar-order-detail-table tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid var(--linegrey);
        border-radius: 8px;
        padding: 15px;
        background: var(--white);
    }

    .ar-order-detail-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 8px 0;
        border-bottom: 1px solid var(--linegrey);
    }

    .ar-order-detail-table tbody td:first-child {
        padding-top: 0;
    }

    .ar-order-detail-table tbody td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ar-order-detail-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        color: var(--brand-grey);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-right: 10px;
    }

    .ar-order-product {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .ar-order-payment-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0;
    }

    .ar-order-summary {
        padding: 15px 0;
    }

    .ar-order-notes {
        padding: 15px 0;
    }

    .ar-order-info-box {
        margin-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid var(--linegrey);
        padding-right: 0;
        padding-bottom: 15px;
    }

    .ar-order-info-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .card-header .d-flex.gap-2 {
        flex-direction: column;
        width: 100%;
    }

    .ar-btn-action,
    .card-header .cta-standard {
        width: 100%;
        justify-content: center;
    }
}

/* ----------------------------------------------- Global Checkbox Styles */
/* Override Bootstrap checkbox colors */
.form-check-input:checked {
    background-color: var(--brand-carbon);
    border-color: var(--brand-carbon);
}

.form-check-input:focus {
    border-color: var(--brand-carbon);
    box-shadow: 0 0 0 0.25rem rgba(45, 45, 45, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .ar-row-equal-height {
        display: block;
    }

    .ar-sidebar {
        margin-bottom: 20px;
        height: auto;
    }

    .ar-menu {
        border-top: 1px solid #e5e7eb;
    }

    .ar-content {
        padding: 20px;
        height: auto;
    }

    .ar-content-title {
        font-size: 24px;
    }

    .ar-profile-upload {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ----------------------------------------------- Product Options & Purchase Section */

/* Product Options */
.product-options h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 16px;
}

.product-option-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-option-card:hover {
    border-color: var(--activeColor);
    background-color: #f9fafb;
}

.product-option-card.active {
    border-color: var(--activeColor);
    background-color: #f0f9ff;
}

.product-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-option-card label {
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.product-option-card .option-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 4px;
}

.product-option-card .option-description {
    font-size: 14px;
    color: #6b7280;
}

/* Price Section */
.product-price-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-price-section .price-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-carbon);
}

.product-price-section .price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-price-section .price-original {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
}

.product-price-section .price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-carbon);
}

.product-price-section .price-discount-badge {
    background-color: var(--activeColor);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 12px;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
}

.quantity-controls .qty-btn {
    background: white;
    border: none;
    width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity-controls .qty-btn:hover {
    background-color: #f3f4f6;
}

.quantity-controls .qty-input {
    border: none;
    width: 50px;
    height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-carbon);
    -moz-appearance: textfield;
}

.quantity-controls .qty-input::-webkit-outer-spin-button,
.quantity-controls .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-controls .qty-input:focus {
    outline: none;
}

/* Add to Cart Button */
.btn-add-to-cart {
    flex: 1;
    background-color: var(--brand-carbon);
    color: white;
    border: none;
    border-radius: 0;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
}

.btn-add-to-cart:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-add-to-cart i {
    width: 20px;
    height: 20px;
}

/* Share Button */
.btn-share {
    position: relative;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-share:hover {
    border-color: var(--activeColor);
    background-color: #f0f9ff;
}

.btn-share i {
    width: 20px;
    height: 20px;
    color: var(--brand-carbon);
}

/* Responsive */
@media (max-width: 768px) {
    .product-actions {
        flex-wrap: wrap;
    }

    .btn-add-to-cart {
        width: 100%;
        order: 3;
    }

    .quantity-controls {
        flex: 1;
    }
}

/* Share Dropdown */
.share-dropdown-wrapper {
    position: relative;
}

.share-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--brand-carbon);
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.share-dropdown-item:last-child {
    border-bottom: none;
}

.share-dropdown-item:hover {
    background-color: #f9fafb;
}

.share-dropdown-item i {
    width: 20px;
    height: 20px;
    color: var(--brand-carbon);
}

.share-dropdown-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
    margin-bottom: 60px;
}

.product-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.product-tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--brand-carbon);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -1px;
}

.product-tab-button i {
    width: 20px;
    height: 20px;
}

.product-tab-button:hover {
    color: var(--brand-azure);
}

.product-tab-button.active {
    color: var(--activeColorHover);
    border-bottom-color: var(--activeColorHover);
}

.product-tabs-content {
    padding: 32px 0;
}

.product-tab-pane {
    display: none;
}

.product-tab-pane.active {
    display: block;
}

/* Product Accordion */
.product-accordion {
    border-top: 1px solid #e5e7eb;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--brand-carbon);
    text-transform: uppercase;
}

.accordion-header:hover span {
    color: var(--brand-azure);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: var(--brand-carbon);
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    color: var(--brand-azure);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 2000px;
    padding-bottom: 24px;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--brand-carbon);
    font-size: 14px;
    line-height: 1.6;
}

.accordion-list li i {
    width: 18px;
    height: 18px;
    color: var(--brand-azure);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Download Section */
.download-section {
    padding: 20px 0;
}

.download-section p {
    color: var(--brand-carbon);
    font-size: 16px;
    margin-bottom: 24px;
}

.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-list li {
    margin-bottom: 12px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    color: var(--brand-carbon);
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: #f3f4f6;
    border-color: var(--brand-azure);
}

.download-item i:first-child {
    width: 24px;
    height: 24px;
    color: var(--brand-azure);
}

.download-item span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.download-item i:last-child {
    width: 20px;
    height: 20px;
    color: var(--brand-carbon);
}





.hotspottedPrdFeatures {
    background: var(--brand-cardgrey);
}

.hotspottedPrdFeatures .hospotwrapper {
    position: relative;
}

.hotspottedPrdFeatures .hospotwrapper img {
    mix-blend-mode: multiply;
}

.hotspottedPrdFeatures .hospotwrapper .hotspot {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background: var(--activeColorHover);
    border-radius: 50%;
    border: 2px solid var(--white);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hotspottedPrdFeatures .hospotwrapper .hotspot.active:hover,
.hotspottedPrdFeatures .hospotwrapper .hotspot:hover,
.hotspottedPrdFeatures .hospotwrapper .hotspot.active {
    transform: translate(-50%, -50%) scale(1.67);
    background: var(--brand-lightviolet);
    transition: all 0.3s ease;
}

.hotspottedPrdFeatures .hospotwrapper .hotspot.ecom {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--activeColorHover);
    border-radius: 50%;
    border: 2px solid var(--white);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hotspottedPrdFeatures .hospotwrapper .hotspot.ecom i {
    color: var(--white);
    font-size: 14px;
}

.hotspottedPrdFeatures .hospotwrapper .hotspot.ecom svg {
    color: var(--white);
    stroke: var(--white);
    width: 12px;
    height: 12px;
    fill: none;
}

.hotspottedPrdFeatures .hospotwrapper .hotspot.ecom:hover,
.hotspottedPrdFeatures .hospotwrapper .hotspot.ecom.active {
    transform: translate(-50%, -50%) scale(1.125);
    background: var(--brand-lightviolet);
    transition: all 0.3s ease;
}

ul.featureList li a {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--brand-carbon);
    padding: 5px 10px 5px 15px;
    transition: all 0.3s ease;
}

ul.featureList li a svg {
    width: 12px;
    height: 12px;
    fill: none;
}

ul.featureList li a svg {
    width: 0px;
    transition: all 0.3s ease;
}

ul.featureList li a:hover,
ul.featureList li a.active {
    color: var(--white);
    background: var(--activeColorHover);
    padding: 5px 10px 5px 20px;
    transition: all 0.3s ease;
}

ul.featureList small {
    font-size: 12px;
}

ul.featureList li a.featEconLnk:hover,
ul.featureList li a.featEconLnk.active {
    color: var(--white);
    background: var(--brand-lightviolet);
    transition: all 0.3s ease;
}

ul.featureList li a.featEconLnk:hover svg,
ul.featureList li a.featEconLnk.active svg {
    color: var(--white);
    stroke: var(--white);
    width: 12px;
    height: 12px;
    fill: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.brandDisivionLine {
    height: 8px;
    position: relative;
}

.brandDisivionLine .brandWrapper {
    position: relative;
}

.brandDisivionLine .brandWrapper .brandBox {
    background: var(--white);
    width: max-content;
    position: absolute;
    right: 0;
    top: 0;
    padding: 4px 20px;
    z-index: 2;
    box-shadow: 2px 8px 10px -3px rgba(0, 0, 0, 0.5);
}

.brandDisivionLine .brandWrapper .brandBox:before {
    position: absolute;
    top: -28px;
    left: -26px;
    content: "";
    z-index: 3;
    border-width: 26px;
    border-style: solid;
    border-color: transparent;
    border-top: 26px solid var(--white);
    transform: rotate(-135deg);
}

.brandDisivionLine .brandWrapper .brandBox:after {
    position: absolute;
    top: -28px;
    right: -26px;
    content: "";
    z-index: 3;
    border-width: 26px;
    border-style: solid;
    border-color: transparent;
    border-top: 26px solid var(--white);
    transform: rotate(135deg);
}


.brandDisivionLine .brandWrapper .brandBox img {
    height: 25px;
}

/* Assistance Box */
.assistance-box {
    border: 1px solid var(--linegrey);
    border-radius: 0px;
    background: var(--white);
}

.assistance-box button {
    border: 0;
    background: transparent;
    border-radius: 0px;
}

.assistance-box input {
    border: 0;
    background: transparent;
    padding-left: 20px;
}

.assistance-box input::placeholder {
    color: var(--brand-grey);
    padding-left: 10px;
}


.assistLnk {
    background: var(--brand-cardgrey);
    padding: 30px;
    display: block;
    transition: all 0.3s ease;
}

.assistLnk:hover {
    background: var(--activeColorHoverTrasp);
}

.assistLnk .card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assistLnk .card-header img {
    width: 70px;
    transition: all 0.3s ease;
}

.assistLnk:hover .card-header img {
    width: 80px;
    transition: all 0.3s ease;
}

.artGrid .col a.artCard {
    padding: 10px;
    background: transparent;
    transition: all 0.3s ease;
}

.artGrid .col a.artCard:hover {
    background: var(--activeColorHoverTrasp);
    transition: all 0.3s ease;
}


.artGrid .col a.artCard .art-img-wrap {
    background: var(--brand-cardgrey);
    transition: all 0.3s ease;
}

.artGrid .col a.artCard:hover .art-img-wrap {
    background: transparent;
    transition: all 0.3s ease;
}

.artGrid .col a.artCard .art-img-wrap img {
    mix-blend-mode: multiply;
    transition: all 0.3s ease;

}

.artGrid .col a.artCard .art-info .art-code {
    font-size: 14px;
}

#artOffCanvas {
    width: 60%;
}

/* Responsive */
@media (max-width: 768px) {
    #artOffCanvas {
        width: 100%;
    }
}

/* ============================================ */
/* AR MODAL - Area Riservata Modal */
/* ============================================ */

.ar-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ar-modal.active {
    display: flex;
}

.ar-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.ar-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
    z-index: 1;
}

.ar-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid var(--linegrey);
    flex-shrink: 0;
}

.ar-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin: 0;
}

.ar-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--superlightgrey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ar-modal-close:hover {
    background: var(--brand-carbon);
    color: var(--white);
}

.ar-modal-close i {
    width: 20px;
    height: 20px;
}

.ar-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.ar-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 30px;
    border-top: 1px solid var(--linegrey);
    flex-shrink: 0;
}

.ar-modal-footer button {
    margin: 0;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .ar-modal {
        padding: 10px;
    }

    .ar-modal-content {
        max-height: 95vh;
    }

    .ar-modal-header {
        padding: 20px;
    }

    .ar-modal-title {
        font-size: 18px;
    }

    .ar-modal-body {
        padding: 20px;
    }

    .ar-modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .ar-modal-footer button {
        width: 100%;
    }
}

/* ============================================ */
/* LOGIN PAGE */
/* ============================================ */

.login-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.login-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--brand-carbon);
}

.login-header p {
    font-size: 15px;
    margin-bottom: 0;
}

.login-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i:first-child {
    position: absolute;
    left: 12px;
    color: var(--brand-grey);
    pointer-events: none;
    z-index: 10;
}

.input-with-icon .form-control {
    padding-left: 42px;
    padding-right: 42px;
    border: 1px solid var(--brand-carbon);
    border-radius: 0;
    font-size: 15px;
    height: 48px;
}

.input-with-icon .form-control:focus {
    border-color: var(--activeColor);
    box-shadow: 0 0 0 3px rgba(50, 121, 162, 0.1);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--brand-grey);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 10;
}

.toggle-password:hover {
    color: var(--activeColor);
}

.toggle-password i {
    width: 18px;
    height: 18px;
}

.forgot-password-link {
    font-size: 14px;
    color: var(--activeColor);
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--activeColorHover);
    text-decoration: underline;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.login-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--linegrey);
}

.login-divider span {
    position: relative;
    background: var(--white);
    padding: 0 15px;
    font-size: 14px;
    color: var(--brand-grey);
    text-transform: uppercase;
    font-weight: 500;
}

.register-link {
    color: var(--activeColor);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-link:hover {
    color: var(--activeColorHover);
    text-decoration: underline;
}

/* ============================================ */
/* CONTACT PAGE - Pagina Contattaci */
/* ============================================ */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--linegrey);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-lightcyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-blu);
}

.contact-icon i {
    width: 24px;
    height: 24px;
}

.contact-details {
    flex: 1;
}

.contact-details h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details a {
    font-size: 16px;
    font-weight: 500;
    color: var(--activeColor);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--activeColorHover);
    text-decoration: underline;
}

.contact-details p {
    font-size: 15px;
    color: var(--brand-carbon);
    line-height: 1.6;
}

.contact-map {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-info-item {
        padding: 15px 0;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        width: 20px;
        height: 20px;
    }

    /* ============================================ */
    /* ARTICLE PAGE - Pagina Articolo */
    /* ============================================ */

    .article-header {
        text-align: center;
    }

    .article-category {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--activeColor);
    }

    .article-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--brand-carbon);
        line-height: 1.2;
    }

    .article-meta {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        font-size: 14px;
        color: var(--brand-grey);
    }

    .article-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .article-meta i {
        width: 16px;
        height: 16px;
    }

    .article-featured-image {
        overflow: hidden;
    }

    .article-featured-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.8;
        color: var(--brand-carbon);
    }

    .article-content p.lead {
        font-size: 20px;
        font-weight: 400;
        color: var(--brand-carbon);
        margin-bottom: 30px;
    }

    .article-content h2 {
        font-size: 32px;
        font-weight: 600;
        color: var(--brand-carbon);
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .article-content h3 {
        font-size: 24px;
        font-weight: 600;
        color: var(--brand-carbon);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article-content ul {
        margin: 20px 0;
        padding-left: 25px;
    }

    .article-content ul li {
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .article-quote {
        background: var(--superlightgrey);
        border-left: 4px solid var(--activeColor);
        padding: 25px 30px;
        margin: 30px 0;
        font-size: 20px;
        font-style: italic;
        color: var(--brand-carbon);
    }

    .article-quote cite {
        display: block;
        margin-top: 15px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        color: var(--brand-grey);
    }

    .article-image-grid img {
        width: 100%;
        height: auto;
        display: block;
    }

    .article-footer {
        border-top: 1px solid var(--linegrey);
    }

    .article-tags {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .tag-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--brand-carbon);
    }

    .article-tag {
        display: inline-block;
        padding: 6px 15px;
        background: var(--superlightgrey);
        color: var(--brand-carbon);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        border: 1px solid var(--linegrey);
        transition: all 0.3s ease;
    }

    .article-tag:hover {
        background: var(--brand-carbon);
        color: var(--white);
        border-color: var(--brand-carbon);
    }

    .article-share {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .share-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--brand-carbon);
    }

    .share-btn {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--superlightgrey);
        color: var(--brand-carbon);
        border: 1px solid var(--linegrey);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .share-btn:hover {
        background: var(--brand-carbon);
        color: var(--white);
        border-color: var(--brand-carbon);
        transform: translateY(-2px);
    }

    .share-btn i {
        width: 18px;
        height: 18px;
    }

    /* Responsive Article */
    @media (max-width: 768px) {
        .article-title {
            font-size: 32px;
        }

        .article-meta {
            gap: 15px;
            font-size: 13px;
        }

        .article-content {
            font-size: 16px;
        }

        .article-content p.lead {
            font-size: 18px;
        }

        .article-content h2 {
            font-size: 26px;
            margin-top: 30px;
        }

        .article-content h3 {
            font-size: 20px;
            margin-top: 25px;
        }

        .article-quote {
            padding: 20px;
            font-size: 18px;
        }

        .article-tags,
        .article-share {
            justify-content: center;
        }
    }


    .contact-details h6 {
        font-size: 13px;
    }

    .contact-details a,
    .contact-details p {
        font-size: 14px;
    }

    .contact-map {
        height: 250px;
    }
}

/* Borin Map - Grayscale Effect */
.borinMap {
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.borinMap:hover {
    filter: grayscale(0);
}

/* Responsive Login */
@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
    }

    .login-header h2 {
        font-size: 24px;
    }

    .login-header p {
        font-size: 14px;
    }
}



a.nws-card {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
}

a.nws-card img {
    transition: all 0.3s ease;
}

a.nws-card:hover img {
    filter: saturate(1.2);
    transform: scale(1.06);
    transition: all 0.3s ease;
}

a.nws-card h3.nws-card-title {
    color: var(--white);
}

a.nws-card .nws-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    z-index: 2;
    transition: all 0.3s ease;
}

a.nws-card .nws-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 30px;
}

a.nws-card.mini .nws-card-content .nws-card-description {
    display: none;
}

a.nws-card .nws-card-content .nws-card-btn {
    opacity: 0;
    visibility: hidden;
    padding: 4px 20px;
    width: max-content;
    border-radius: 0px;
    border: 1px solid var(--white);
    color: var(--white);
    display: block;
    margin-top: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

a.nws-card:hover .nws-card-content .nws-card-btn {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--brand-carbon);
    transition: all 0.3s ease;
}

.tabDivisionWrapper {
    display: flex;
}

.tabNavDivision {
    padding-right: 10px;
    border-right: 1px solid var(--linegrey);
}

.tabNavDivision .tabNavItem {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tabNavDivision .tabNavItem.active {
    box-shadow: 0px 0px 20px 2px rgb(0 0 0 / 10%);
}

.tabNavDivision .tabNavItem:hover {
    background: var(--brand-cardgrey);
}

.tabNavDivision .tabNavItem .outlined {
    display: block;
}

.tabNavDivision .tabNavItem .filled {
    display: none;
}

.tabNavDivision .tabNavItem:hover .outlined {
    display: none;
}

.tabNavDivision .tabNavItem:hover .filled {
    display: block;
}

.tabNavDivision .tabNavItem.active .outlined {
    display: none;
}

.tabNavDivision .tabNavItem.active .filled {
    display: block;
}


.tabNavDivisionContent {
    padding: 25px;
    padding-top: 0;
}

.tabNavDivisionContent .tabNavContent {
    display: none;
}

.tabNavDivisionContent .tabNavContent.active {
    display: block;
}

a.faq-link {
    padding: 10px 20px;
    border-bottom: 1px solid var(--linegrey);
    display: block;
    transition: all 0.3s ease;
}

a.faq-link:hover,
a.faq-link:hover h3 {
    color: var(--activeColorHover);
    transition: all 0.3s ease;
}

/* ----------------------------------------------- Checkout Stepper */
.checkout-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    padding: 0 20px;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    min-width: 120px;
}

.stepper-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.stepper-item .stepper-icon [data-lucide] {
    width: 24px;
    height: 24px;
    color: var(--black40);
}

.stepper-item.active .stepper-icon {
    background: var(--brand-blu);
}

.stepper-item.active .stepper-icon [data-lucide] {
    color: white;
}

.stepper-label {
    font-size: 14px;
    color: var(--black40);
    font-weight: 500;
}

.stepper-item.active .stepper-label {
    color: var(--brand-blu);
}

/* ----------------------------------------------- Cart Page Styles */
.cart-item .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.cart-item .remove-item {
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item .remove-item:hover {
    color: var(--activeColorHover) !important;
}

.cart-item .quantity-control {
    border: 1px solid var(--linegrey);
}

.cart-item .quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--brand-carbon);
    transition: background 0.3s ease;
}

.cart-item .quantity-btn:hover {
    background: var(--superlightgrey);
}

.cart-item .quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--linegrey);
    border-right: 1px solid var(--linegrey);
    font-size: 16px;
    font-weight: 600;
}

/* Checkout Tabs */
.nav-tabs {
    border-bottom: 0px;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: var(--brand-grey);
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: var(--activeColor);
}

.nav-tabs .nav-link.active {
    border: none;
    border-bottom: 3px solid var(--activeColor);
    color: var(--activeColor);
    background: transparent;
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 120px;
}

/* Empty Cart */
.cart-items .empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.cart-items .empty-cart img {
    width: 200px;
    margin-bottom: 30px;
    opacity: 0.5;
}

.cart-items .empty-cart h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-carbon);
    margin-bottom: 15px;
}

.cart-items .empty-cart p {
    font-size: 16px;
    color: var(--brand-grey);
    margin-bottom: 30px;
}

/* Cart Page Responsive */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .cart-item .item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item .item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .checkout-stepper {
        gap: 20px;
    }

    .stepper-icon {
        width: 50px;
        height: 50px;
    }

    .stepper-item .stepper-icon [data-lucide] {
        width: 20px;
        height: 20px;
        color: var(--black40);
    }

    .stepper-item.active .stepper-icon [data-lucide] {
        color: white;
    }

    .stepper-label {
        font-size: 12px;
        color: var(--black40);
    }

    .stepper-item.active .stepper-label {
        color: var(--brand-blu);
    }
}

/* ----------------------------------------------- Models Css */
.models_link_wrapper {
    height: 500px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.modelCardLink {
    padding: 10px 5px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    margin: 3px;
    cursor: pointer;
}

.modelCardLink .desc {
    font-size: 12px;
}

.modelCardLink.active,
.modelCardLink:hover {
    background: var(--activeColorHoverTrasp10);
    border: 1px solid var(--activeColorHoverTrasp);
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--activeColorHoverTrasp10);
}

.accordion-button:not(.collapsed) {
    background-color: var(--activeColorHoverTrasp10);
}

.model-info {
    position: relative;
}

.model-info-header.sticky-top {
    background: var(--white);
    padding-bottom: 5px;
    box-shadow: 0px 20px 19px -15px var(--shadowgrey);
}

.model-info-header.sticky-top,
.filterCard.sticky-top,
.modelsCard.sticky-top {
    top: 60px;
    z-index: 10;
}

/* ----------------------------------------------- Video Modal Fullwidth */
.video-modal {
    display: none;
    position: fixed;
    z-index: 99999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1920px;
    max-height: 1080px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: var(--brand-cyan);
}

.video-modal-body {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-modal-body iframe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .video-modal-close {
        top: -35px;
        font-size: 30px;
    }
}

.ar-status-canceled {
    color: #f16b67;
}

.ar-status-created {
    color: #e167f1;
}

.ar-status-waiting {
    color: #f1c167;
}

.ar-status-processing {
    color: #b1ec27;
}

.ar-status-dispatched {
    color: #67e1f1;
}

.ar-status-completed {
    color: #4d6bf1;
}