
/****************************/

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 300;
    padding: 140px 0 0 0;
    box-sizing: border-box;
    color: #333;
}

a{
    text-decoration: none;
    color: var(--secondary)
}
a:hover{ text-decoration: underline; }

h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}
p {
    font-size: 0.90em;
}

/****************************/

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    backdrop-filter: blur(10px);
}
header #header_search_container{
    position: relative;
}
header #header_search_container i{
    position: absolute;
    top: 6px;
    left: 10px;
    font-size: 22px;
    color: #E94B5F;
}
header input{
    border: 2px solid #3C3C3B;
    border-radius: 20px;
    font-size: 14px;
    padding: 8px 14px 8px 34px;

}

header ul.header-menu{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
header ul.header-menu > li{
    flex: 1;
    text-align: center;
    padding: 10px;
}
header ul.header-menu li a:first-of-type{
    font-weight: 400;
    font-size: 16px;
}
header ul.header-menu li.active a:first-of-type{
    color: #E94B5F;
}
header ul.header-menu li a:hover{
    color: #E94B5F;
    text-decoration: none;
}
header ul.header-menu li.btn{
    color: #fff;
    background: var(--secondary);
    font-weight: 400;
    border-radius: var(--btn-border-radius);
    margin-left: 50px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
header ul.header-menu li.btn:hover{
    background: #E94B5F;
    color: #fff;
}
header .links{}
header .links a{
    color: var(--secondary);
    font-size: 14px;
    font-weight: 300;
    padding-left: 15px;
}
header .links a:not(:first-child){
    border-left: 1px solid var(--secondary);
}


header .h-sticky{ display: flex; }
header .v-sticky{ display: none; }
header.scrolled .v-sticky { display: flex }
header.scrolled .h-sticky { display: none }
header.scrolled ul li.btn{ margin-left: 10px }

header .cart-count{
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: block;
    text-align: center;
    line-height: 18px;
    vertical-align: middle;
    font-size: 9px;
    font-weight: 500;
    top: 15px;
    left: 10px;
}


#logo_spark_container{
    width: 200px;
    height: 100%;
    transition: all 0.6s ease-in-out;
    overflow: hidden;
}
#logo_spark_container.sticky{
    width: 60px;
}


#logo_spark{
    z-index: 10;
    position: absolute;
    top: 22px;
    width: 200px;
    height: auto;
    transition: width 0.5s ease-in-out;
}

#logo_spark.sticky{
    top: 14px;
}

#logo_spark path,
#logo_spark polygon,
#logo_spark rect {
    transition: all 0.5s ease-in-out;
    transform-origin: center;
}
#logo_spark.sticky .classP,
#logo_spark.sticky .classA,
#logo_spark.sticky .classR,
#logo_spark.sticky .classl {
    opacity: 0;
    transform: scale(0.8);
}
#logo_spark.sticky .classK {
    transform: translateX(-86px);
}
#logo_spark.sticky .classPoint {
    transform: translateX(-90px);
}

header .responsive-menu { display: none; }

header .responsive-menu .cart-count{

}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.4s ease-in-out;
    pointer-events: none;
    z-index: 999;
    height: 100vh;
}
.menu-overlay.active {
    transform: scaleY(1);
}
.menu-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    z-index: 1050;
}
.menu-toggle{
    user-select: none;
    transition: transform 0.4s ease, color 0.3s;
    cursor: pointer;
}
.menu-toggle.active{
    user-select: none;
    transition: transform 0.4s ease, color 0.3s;
    cursor: pointer;
}

#menu_toggle {
    user-select: none;
    transition: transform 0.4s ease, color 0.3s;
    cursor: pointer;
}
#menu_toggle.active {
    transform: rotate(90deg);
}




/****************************/

footer{
    font-family: var(--font-family);
}
footer span,
footer a{
    font-size: 13px;
}





.region {
    cursor: pointer;
    transition: fill 0.2s ease;
}
.region:hover {
    fill: #e94b5f33;
}
.region-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
    margin-top: 10px;
}
.region-clients {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.region-clients img {
    width: 100%;
    height: 70px;
    object-fit: contain;
}
#region-tooltip {
    position: fixed;
    pointer-events: none;
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translate(-50%, -120%);
    transition: opacity 0.15s ease;
    z-index: 9999;
    white-space: nowrap;
    width: 400px;
}

/****************************/

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.categories-grid > * {
    flex: 1 1 calc(20% - 10px);
    box-sizing: border-box;
    text-align: center;
    background: #F5F5F5;
    border-radius: 12px;
    padding-bottom: 20px;
    cursor: pointer;
}

.categories-grid > div:hover {
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2);
}


.categories-grid .category-img{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    min-height: 250px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 20px;
}
.categories-grid h3{
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 400;
    padding: 0 5px;
}
.categories-grid a{
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
}
.categories-grid a:hover{
    color: var(--secondary);
    text-decoration: underline;
}
.category-block:hover a{
    color: var(--secondary);
    text-decoration: underline;
}





.category-half-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.category-half-list li{
    padding: 5px;
}

.category-half-img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /*background-image: url('/assets/img/products/bureaux-professionnels-haut-de-gamme-et-design.jpg');*/
    border-radius: 12px;
    cursor: pointer;
}
.category-half-img:hover::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
            to top,
            rgba(0,0,0,0.65) 0%,
            rgba(0,0,0,0.45) 25%,
            rgba(0,0,0,0.25) 50%,
            rgba(0,0,0,0.1) 75%,
            rgba(0,0,0,0) 100%
    );
    pointer-events: none;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}


.category-filters{}
.category-filters a{
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding: 4px 0;
}
.category-filters a.no-border{
    border-bottom: none !important;
}
.category-filters a:hover{
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
}
.category-filters a.active{
    border-bottom: 2px solid var(--secondary);
}



/****************************/

.btn-underline{
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
    text-decoration: none;
    font-weight: 400;
}
.btn-underline:hover{
    border-bottom: 2px solid var(--black-secondary);
    color: var(--black-secondary);
    text-decoration: none;
}
.btn-underline:hover i{
    color: var(--black-secondary);
}
.btn-underline-white:hover{
    border-bottom: 2px solid #fff;
    color: #fff;
}
.btn-underline-white:hover i{
    color: #fff;
}


.btn-fill{
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    color: white;
    background-color: var(--primary);
    border-radius: var(--btn-border-radius);
    border: none;
    overflow: hidden;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    transition: background-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}
.btn-fill:hover{
    text-decoration: none;
    background-color: var(--secondary);
}
.btn-fill.btn-fill-secondary{
    background-color: var(--secondary);
}
.btn-fill.btn-fill-secondary:hover{
    background-color: var(--primary);
}
.btn-fill.btn-fill-muted:hover{
    background-color: #f1f1f1;
    color: var(--secondary)
}
.btn-fill.btn-fill-full{
    width: 100%;
}


/*********************************/
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit;
    position: relative;
}
.dropdown-toggle .arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}
.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 50;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.dropdown:hover .arrow {
    transform: rotate(180deg);
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none !important;
    transition: background 0.2s;
    border: none !important;
}
.dropdown-menu a:hover {
    background: #f5f5f5;
}
.dropdown-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.dropdown-menu .divider {
    height: 1px;
    margin: 8px 0;
    background: #e5e5e5;
    width: 100%;
}


.dropdown-menu.dropdown-products {
    position: fixed;
    display: flex;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 100%;
    z-index: 50;
    border-radius: 0;
    text-align: left;
    padding: 25px 60px;
    box-sizing: border-box;
}
.dropdown-menu.dropdown-products > div {
    flex: 1;
    padding: 0 50px 0 0;
}
.dropdown-menu.dropdown-products a{
    font-weight: 400;
    padding: 6px 0;
}
.dropdown-menu.dropdown-products a:hover {
    background: transparent;
}


/**********************************/


.link{
    color: var(--primary);
    font-weight: 400;
    cursor: pointer;
}
.link:hover{
    text-decoration: underline;
}
.link-arrow{
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 5px;
    padding-right: 32px;
}
.link-arrow:hover{
    text-decoration: none;
    color: var(--secondary);
    border-color: var(--secondary);
}
.link-arrow i{
    color: var(--primary);
}
.link-arrow:hover i{
    color: var(--secondary);
}
.link-arrow:hover::after{
    color: var(--secondary);
}
.link-arrow::after {
    content: "arrow_forward";
    font-family: "Material Symbols Outlined", sans-serif;
    font-size: 20px;
    color: var(--primary);
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    transition: transform 0.3s ease, right 0.3s ease;
}
.link-arrow:hover::after {
    right: -10px;
}
.link-arrow-large{
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}
.link-arrow-large::after{
    top: 38%;
}
/***/
.link-arrow-secondary{
    color: var(--secondary);
    border-color: var(--secondary);
}
.link-arrow-secondary::after{
    color: var(--secondary);
}
.link-arrow-secondary:hover{
    color: var(--primary);
    border-color: var(--primary);
}
.link-arrow-secondary:hover::after{
    color: var(--primary);
}
/***/
.link-arrow-white{
    color: #ffffff;
    border-color: #ffffff;
}
.link-arrow-white::after{
    color: #ffffff;
}
.link-arrow-white:hover{
    color: var(--secondary);
    border-color: var(--secondary);
}
.link-arrow-white:hover::after{
    color: var(--secondary);
}

.swiper-slide-product:hover .link-arrow {
    color: var(--secondary);
    border-color: var(--secondary);
}
.swiper-slide-product:hover .link-arrow::after {
    color: var(--secondary);
    right: -10px;
}


/**************/


.input-i{
    position: relative;
}
.input-i input{
    width: 100%;
    padding: 15px 5px 15px 15px;
    border: 1px solid #f4f4f4;
    border-radius: 4px;
}
.input-i input::placeholder {
    color: #575759;
    opacity: 1;
    font-weight: 700;
}

.input-i i{
    position: absolute;
    right: 0;
    top: 50%;
    color: var(--primary);
    transform: translateY(-50%);
}
.input-i:hover input {
    border: 1px solid var(--black-secondary);
}
.input-i:hover i {
    transform: translateY(-50%) translateX(10px);
    color: var(--black-secondary);
}


/***************/

.breadcrumb{
    font-family: var(--font-family);
    font-size: 12px;
}
.breadcrumb span{
    color: #777;
    font-size: 12px;
}
.breadcrumb a{
    color: #777;
    font-size: 12px;
}
.breadcrumb a:not(:last-child):hover{
    text-decoration: underline;
}
.breadcrumb a:last-child{
    cursor: default;
    text-decoration: none !important;
    font-weight: 500;
    color: var(--primary)
}
.breadcrumb.breadcrumb-sticky{
    position: fixed;
    background: #fff;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    z-index: 99999;
    top: 62px;
    left: 0;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    padding-left: calc(50% - 500px);
}

/***************/

.list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-check{
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 13px;
}
.list-check li::before {
    content: "check_circle";
    font-family: "Material Symbols Outlined", sans-serif;
    font-size: 20px;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}




/***************/

.bg-image{
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    cursor: pointer;
}
/*
.bg-image:hover::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2);
}*/




/** form **/


.form input[type="text"],
.form input[type="number"],
.form select,
.form textarea{
    padding: 8px 6px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 500;
    font-family: "Lexend Deca", Verdana, sans-serif !important;
}
.form input[type="text"]{
    padding: 12px 6px;
}
.form textarea{
    min-height: 100px;
    max-height: 300px;
    resize: vertical;
    overflow-x: hidden;
    position: relative;
}
.form textarea[data-placeholder] {
    position: relative;
}
.form textarea[data-placeholder]::before {
    content: attr(data-placeholder);
    position: absolute;
    top: 10px;
    left: 12px;
    color: #999;
    font-size: 14px;
    font-style: italic;
    pointer-events: none;
    white-space: pre-wrap;
    transition: 0.2s;
}
/*
.textarea-wrapper textarea:focus + .textarea-wrapper::before,
.textarea-wrapper textarea:not(:placeholder-shown) + .textarea-wrapper::before {
    opacity: 0;
}*/


.form input[type="text"]:hover,
.form input[type="number"]:hover,
.form textarea:hover{
    outline: 2px solid var(--primary);
}
.form input[type="text"]:focus,
.form input[type="number"]:focus,
.form textarea:focus{
    /*margin: 0;*/
    outline: 2px solid var(--primary);
}
.form .input-length{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 10px;
    font-weight: 500;
    color: #999;
}

.form.form-column{}
.form.form-column .flex{ position: relative; }
.form.form-column .input-length{ top: -18px; }
.form .help{
    font-weight: 400;
    font-size: .8em;
}

.form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all .2s ease;
}
.form input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.form input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: solid #fff;
    border-width: 0 4px 4px 0;
    top: 0;
    left: 1px;
    opacity: 0;
    transform: scale(0.8) rotate(45deg);
    transition: opacity .2s ease;
    font-weight: 500 !important;
}
.form input[type="checkbox"]:checked::before {
    opacity: 1;
}
.form input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all .2s ease;
}
.form input[type="radio"]:checked {
    border-color: var(--primary);
    background-color: var(--primary);
}
.form input[type="radio"]::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
    transition: all .2s ease;
}
.form input[type="radio"]:checked::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.form label{
    font-size: .9em;
    font-weight: 500;
}

/* -------------------------------------
 * INPUT SWITCHER
 * ------------------------------------- */
.switch {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}
.switch input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.slider {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color .3s ease;
}
.slider::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    background: white;
    border-radius: 50%;
    transition: transform .3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.switch input:checked + .slider {
    background-color: var(--primary);
}

.switch input:checked + .slider::before {
    transform: translateX(20px);
}




















.swiper {
    width: 100%;
    padding: 10px 50px;
    box-sizing: border-box;
    user-select: none;

    height: 360px;
}
.swiper-slide {
    width: auto;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide .swiper-info{
    position: absolute;
    bottom: 0;
    background: #00000060;
    display: none;
    flex: 1;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 15px 8px;
    box-sizing: border-box;
}
.swiper-slide .swiper-info span{
    color: #fff;
}
.swiper-slide .swiper-info span i{
    color: #fff;
}
.swiper-slide .swiper-info span:last-child{
    /*margin-left: auto;*/
}
.swiper-slide:hover{
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
.swiper-slide:hover .swiper-info {
    display: flex;
}
.swiper-slide.no-shadow:hover{
    box-shadow: none;
}



.swiper-case-studies{}
.swiper-case-studies .swiper-slide{}
.swiper-case-studies .swiper-slide img{
    width: 400px;
    /*height: 100%;*/
    object-fit: cover;
    object-position: center;
}


.swiper-slide-partners {
    height: 150px;
}
.swiper-slide-partners img{
    object-fit: contain;
}


.swiper-product {
    /*
    width: calc(100% - 400px);
    height: 380px;
    padding: 20px !important;
    box-sizing: border-box;*/
}
.swiper-slide-product {
    position: relative;
    width: 220px !important;
    height: 340px;
    background: #fff;
    padding: 15px;
    box-sizing: border-box !important;
}
.swiper-slide-product img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.swiper-slide-product span {
    display: block;
}
.swiper-slide-product .absolute{
    width: calc(100% - 30px);
    padding-top: 50px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%);

}








/** @sections css **/

#home_video{
    position: relative;
    width: 100%;
    min-height: 600px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

#home_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#home_video .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /*background: rgba(0, 0, 0, 0.5);*/
}
#home_video .overlay h1{
    max-width: 350px;
}


/*** team ***/

.teams {}
.teams .bg-image {
    position: relative;
}
.teams .bg-image div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 15px;
    box-sizing: border-box;
    color: #fff;
    /*background: rgba(233, 75, 95, 0.5);*/
    background: rgba(44, 46, 63, 0.5);
    border-radius: 12px;
    cursor: default;
}
.teams .bg-image div a{
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    cursor: default;
}
.teams .bg-image:hover div{
    display: flex;
}




/*************************/

.product-gallery{
    min-width: 0;
    overflow: hidden;
}
/*
.product-gallery img{
    padding: 5px;
    border: 2px solid transparent;
    max-width: 100px;
    flex: 0 0 auto;
}*/
/*
.product-gallery img:hover{
    border-bottom: 2px solid var(--primary);
    cursor: pointer;
}
.product-gallery img.active{
    border-bottom: 2px solid #a1a1a1;
}*/

.product-gallery.swiper{
    width: 100%;
    height: 120px;
    padding: 0;
}
.product-gallery.swiper .swiper-wrapper{}
.product-gallery.swiper .swiper-slide{
    height: 100px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 4px solid transparent;
    padding-bottom: 10px;
}
.product-gallery.swiper .swiper-slide.active{
    border-bottom: 4px solid var(--primary);
}
.product-gallery.swiper .swiper-slide:not(.active):hover{
    border-bottom: 4px solid var(--secondary);
}


.product-gallery-wrapper{
    position: relative;
    padding: 0 30px;
    margin: 30px 0 0 0;
}
.product-gallery-wrapper .swiper-button {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: calc(50% - 10px);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    display: flex;
    align-items: center;
    user-select: none;
}
.product-gallery-wrapper .swiper-button i{
    font-size: 26px;
    font-weight: 500;
    color: #333;
}
.product-gallery-wrapper .swiper-button:hover{
    /*background: #f1f1f1;*/
    border: 1px solid var(--primary);
}
.product-gallery-wrapper .swiper-button:hover i{
    color: var(--primary);
}

.product-gallery-wrapper .swiper-button.swiper-button-prev{
    left: 0;
}
.product-gallery-wrapper .swiper-button.swiper-button-next{
    right: 0 !important;
}
.product-gallery-wrapper .swiper-button-disabled {
    opacity: 0.1;
    /*pointer-events: none;*/
}







.product-documents{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.product-documents > a{
    border-radius: 8px;
    border: 1px solid #e3e3e3;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    width: 220px;
    cursor: pointer;
    text-decoration: none;
}
.product-documents > a > img{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid #f1f1f1;
    object-fit: cover;
    image-rendering: auto;
}
.product-documents > a:hover{
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
.product-documents span.title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    height: calc(1.5em * 3);
}




.accordion-title {
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-right: 24px;
}
.accordion-title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
}
.accordion.open .accordion-title::after {
    content: '−';
}
.accordion-content {
    display: none;
}

























/*#region -- custom select */
.sk-custom-select {
    position: relative;
    width: calc(100% - 30px);
    font-size: 13px;
    color: #000;
}
.sk-custom-select.active .arrow {
    transform: rotate(180deg);
}
.sk-custom-select.active .sk-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
.sk-select-button {
    width: 100%;
    font-size: 1.15rem;
    background-color: #fff;
    padding: 15px 15px;
    border: 1px solid #caced1;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}
.sk-select-button:hover{
    color: #666;
}
.sk-select-value {
    text-align: left;
}
.sk-select-arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #000;
    transition: transform ease-in-out 0.3s;
}
.sk-select-dropdown {
    position: absolute;
    z-index: 9999;
    list-style: none;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border: 1px solid #caced1;
    border-radius: 4px;
    padding: 10px 15px;
    margin-top: 1px;
    max-height: 200px;
    overflow-y: auto;
    transition: 0.2s ease;
    transform: scaleY(0);
    opacity: 1;
    visibility: hidden;
}

.sk-select-dropdown:focus-within {
    box-shadow: 0 10px 25px rgba(94, 108, 233, 0.6);
}
.sk-select-dropdown li {
    background-color: #fff;
    position: relative;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.sk-select-dropdown li label {
    width: 100%;
    padding: 8px 5px;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-family: "Lexend Deca", Verdana, sans-serif !important;
}
.sk-select-dropdown::-webkit-scrollbar {
    width: 7px;
}
.sk-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 25px;
}
.sk-select-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}
.sk-select-dropdown li:hover,
.sk-select-dropdown input:checked ~ label {
    background-color: #f2f2f2;
}
.sk-select-dropdown input:focus ~ label {
    background-color: #dfdfdf;
}
.sk-select-value input[type="radio"],
.sk-select-dropdown input[type="radio"] {
    position: absolute;
    left: 0;
    opacity: 0;
}
/*#endregion*/



.item-qty{
    position: relative;
    height: 58px;
    border: 1px solid #e3e3e3;
    display: inline-block;
    width: 150px;
    padding: 0 !important;
    text-align: center;
    /*line-height: 58px;*/
}
.item-qty .item-qty-btn{
    position: absolute;
    top: 0;
    /*left: 0;*/
    display: flex;
    width: 32px !important;
    text-align: center;
    background: #f1f1f1;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    border-right: 1px solid #e3e3e3;
}
.item-qty .item-qty-btn.item-qty-btn-left{
    left: 0 !important;
}
.item-qty .item-qty-btn.item-qty-btn-right{
    right: 0 !important;
    border-left: 1px solid #e3e3e3;
    border-right: none;
}
.item-qty .item-qty-btn:hover{
    background: #E94B5F;
}
.item-qty .item-qty-btn:hover i{
    color: #fff;
}
.item-qty .item-qty-btn i {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.item-qty input{
    text-align: center;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    width: 75px;
    height: 54px;
    border: none;
    outline: none;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    margin: 0;
}
.item-qty input::-webkit-outer-spin-button,
.item-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.item-qty input[type=number] {
    -moz-appearance: textfield;
}
.item-qty input:disabled{
    background: #fff;
}

/***/

.item-qty.item-qty-small{
    height: 30px;
    width: 110px;
}
.item-qty.item-qty-small .item-qty-btn{
    width: 30px !important;
    height: 30px;
    line-height: 30px;
}
.item-qty.item-qty-small .item-qty-btn i{
    font-size: 22px !important;
    color: var(--secondary)
}
.item-qty.item-qty-small .item-qty-btn i:hover{
    color: var(--primary);
}
.item-qty.item-qty-small .item-qty-btn:hover i{
    color: var(--primary);
}
.item-qty.item-qty-small input{
    font-size: 14px;
    width: 50px;
    height: 28px !important;
}
.item-qty.item-qty-small input:focus{
    outline: 1px solid #f1f1f1;
    border-radius: 3px;
}
.item-qty.item-qty-light{
    border: none;
}
.item-qty.item-qty-light .item-qty-btn{
    background: transparent;
    border: none;
}






#product_config select{
    width: 100%;
    padding: 18px 20px;
    margin-top: 5px;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    font-family: var(--font-family);
}




.items-cells{
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
    gap: 5px;
    max-width: 500px;
}
.items-cells div{
    padding: 8px 12px;
    border: 1px solid #a1a1a1;
    border-radius: 6px;
    opacity: .85;
    cursor: pointer;
    flex: 0 0 auto;
    margin: 2px;
}
.items-cells div.active{
    outline: 2px solid var(--primary);
    opacity: 1;
}
.items-cells div:hover{
    outline: 2px solid var(--secondary);
}
.items-cells div span{
    display: block;
}
.items-cells div span:nth-child(1){
    font-size: 0.80em;
    font-weight: 400;
}
.items-cells div span:nth-child(2){
    display: none;
}



.item-option{
    position: relative;
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    border: none;
    outline: 1px solid #f1f1f1;
}
.item-option:hover{
    outline: 1px solid #2C2E3F80;
}
.item-option:not(.active):hover::after{
    position: absolute;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    content: "Cliquez pour ajouter l'option";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: #2C2E3F80;
    border-radius: 8px;
}

.item-option.active{
    outline: 2px solid var(--primary);
}
.item-option.active::before{
    position: absolute;
    font-family: 'Material Symbols Outlined', sans-serif;
    color: var(--primary);
    display: block;
    width: 22px;
    height: 22px;
    font-size: 22px;
    font-weight: 500;
    content: 'check_circle';
    top: calc(50% - 11px);
    left: -30px;
}
.item-option.active:hover{
    outline: 2px solid #2C2E3F80;
}
.item-option.active:hover::before{
    color: #2C2E3F80;
}
.item-option.active:hover::after{
    position: absolute;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    content: "Cliquez pour supprimer l'option";
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: 0;
    background: #2C2E3F80;
    border-radius: 8px;
    /*border-bottom-left-radius: 7px;*/
    /*border-bottom-right-radius: 7px;*/
}

.item-complement{
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 5px;
}



#cart_items ul li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e3e3;
}









/** region Checkout **/

.checkout-stepper{
    display: flex;
}
.checkout-stepper > div{
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    position: relative;
    user-select: none;
}
.checkout-stepper > div[data-checkout]{
    cursor: pointer;
}
.checkout-stepper > div > div{
    background: #fff;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.checkout-stepper > div:not(:first-child)::before{
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--secondary);
    display: block;
    content: '';
    top: 20px;
    right: 50%;
    margin-right: 30px;
}
.checkout-stepper > div:not(:last-child)::after{
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--secondary);
    display: block;
    content: '';
    top: 20px;
    left: 50%;
    margin-left: 30px;
}
.checkout-stepper > div > span{
    margin-top: 10px;
    color: var(--secondary);
    font-weight: 400;
    font-size: .9em;
}
.checkout-stepper > div.active > div{
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
}
.checkout-stepper > div.active > span{
    color: var(--primary);
}

/** endregion **/








.badge{
    padding: 2px 4px;
    font-weight: 500;
    color: #fff;
    font-size: 11px;
    font-family: Lexend, sans-serif;
    background: #a1a1a1;
    border-radius: 4px;
}
.badge.badge-warning{ background: #e5933b;}
.badge.badge-error{ background: #ff5252;}
.badge.badge-success{ background: #73a461;}


/***********************/

#map{
    width: 100%;
    height: 650px;
}
.gm-style-iw{
    min-width: 300px !important;
}