/* header */
:root {
    --banner-head-background: #dc3d33;
    --modal-transition: 0.35s;
}


.header-nav {
    background: #f8f5f2;
}

.marquee-wrapper {
    height: 34px;
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
    will-change: transform;
}

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

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

.marquee-wrapper:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
}

.marquee-item {
    white-space: nowrap;
    padding: 0 40px;
    color: #02184b;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
}

.header-nav {
    overflow: hidden;
}

#header {
    box-shadow: none;

}


#index #header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background-color: transparent;
}


#header .header-top {
    padding: 5px 0;
    min-height: 71px;
    display: flex;
    align-items: center;

}

body:not(#index) #header .header-top:not(.is-sticky) {
    position: relative !important;
    top: 0 !important;
}

body#index #header .header-top:not(.is-sticky) .btn__icon {
    color: #fff;
}

body#index #header .header-top:not(.is-sticky) #_desktop_cart .btn__icon {
    color: var(--text-color);
}




.header-top {
    /* transition: all 0.35s ease-in-out; */
    transition: none !important;
}


.header-top.is-sticky {
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    background-color: #fff;

}


.header-top.is-sticky {
    transform: translateY(0);
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}



.header-top .col-xs-12 {
    display: flex;
    align-items: center;
}

#checkout #_desktop_logo {
    position: absolute;
    left: 47.8%;
    transform: translateX(-50%);
}

#checkout #_desktop_cart {
    margin-left: auto;
}

#checkout #_desktop_logo .logo-white {
    position: static !important;
    left: auto !important;
    transform: none !important;
}

#header .logo {
    width: 100px;
}

#_desktop_logo {
    margin-right: 16px;
    position: relative;
}

#_desktop_logo .logo {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    /*transition: 0.35s all ease;*/
    transition: none !important;
    opacity: 0;
    visibility: hidden;
}

body:not(#index) #_desktop_logo .logo-white {
    display: none;
}

body:not(#index) #_desktop_logo .logo {
    opacity: 1;
    visibility: visible;
    position: relative;
}


#_desktop_logo .logo-white {
    width: 100px;
    height: auto;
    /*transition: 0.35s all ease;*/
    transition: none !important;
}

#_desktop_cart {
    margin-left: 10px;
    padding-top: 5px;
    margin-right: 10px;
}

#_desktop_cart .btn__icon i {
    background: #f8f5f2;
    border-radius: 50%;
}

#_desktop_cart .btn__icon svg {
    width: 24px;
    fill: none;
    stroke: white;
    stroke-width: 0.8px;
}

#search_widget {
    flex: 1;
    max-width: none;
    margin-bottom: 0;
}

#search_widget form {
    position: relative;
}

#header .btn__icon {
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    font-size: 10px;
    align-items: center;
    cursor: pointer;
    position: relative;
    line-height: 1.5;
}

button.btn__icon {
    padding: 0;
}

.btn__icon i {
    font-size: 38px;
}

.btn__language span {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn__language svg {
    width: 32px;
    height: 32px;
}

.leo-blockcart {
    background: transparent;
    margin: 0;
    padding: 0;
    height: auto;
}

.cart-products-count {
    color: #ffffff;
    background-color: var(--orange-color);
    font-size: 10px;
    line-height: 18px;
    min-width: 18px;
    height: 17px;
    border-radius: 50px 50px 50px 50px;
    padding: 0px 2px 0px 2px;
    text-align: center;
    position: absolute;
    top: 2px;
    right: -4px;
    font-weight: bold;
}

.btn__menu {
    margin-right: 24px;
}

#_desktop_user_info,
.header__button--wishlist,
.btn__language {
    margin: 0 10px;
    padding-top: 5px;
}

.header-top #search_widget input {
    height: 42px;
    padding: 0 15px 0 50px;
    border-radius: 50px;
    font-size: 14px;
    background: #f0f0f0;
    color: var(--text-color);
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .header-top #search_widget input {
        font-size: 12px;
        margin-top: 5px;
    }

    #search_widget form i.icon-search {
        margin-top: 5px;
        margin-left: 1px;
    }
}


.header-top #search_widget input::-webkit-input-placeholder {
    color: rgba(2, 24, 75, 0.75);
    opacity: 1;
}

#search_widget form i.icon-search {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 28px;
    color: var(--text-color);
}


.header-top.is-sticky #_desktop_logo .logo {
    opacity: 1;
    visibility: visible;
}

.header-top.is-sticky #_desktop_logo .logo-white {
    opacity: 0;
    visibility: hidden;
}

/* footer */

.footer-top {
    display: flex;
    flex-wrap: wrap;
}

.footer-top .block_newsletter {
    width: 50%;
    padding: 0 16px;
    background: #b6b9ba;
}

.footer-top .block_newsletter#blockEmailSubscription_displayFooterBefore {
    width: 50%;
    max-width: none;
    margin: 0 auto;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.footer-top .box-loyalty {
    width: 50%;
}

.block_newsletter-wrapper {
    max-width: 660px;
    margin-right: 0;
    margin-left: auto;
    text-align: center;
    position: relative;
    width: 100%;
}

.block-newsletter-bottom {
    max-width: 450px;
    margin: 0 auto;
    text-align: left;
}

.block-newsletter-bottom p {
    margin: 0;
    padding: 0;
    font-size: 10px;
    line-height: 1.5;
}

#footer .block-newsletter-bottom p {
    padding: 0;
}

@media (max-width: 1025px) {
    #footer .block-newsletter-bottom p {
        color: #fff;
        max-width: 386px;
        text-align: center;
    }
}

.block-newletter-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 4px;
    position: relative;
}

@media (max-width: 1025px) {
    .block-newletter-title {
        color: #fff;
    }
}

.block_newsletter #block-newsletter-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    margin-bottom: 16px;
    position: relative;
}

@media (max-width: 900px) {
    .block_newsletter #block-newsletter-label {
        font-size: 14px;
    }
}

@media (max-width: 1025px) {
    #footer .block_newsletter #block-newsletter-label {
        color: #fff;
    }
}

.block-newsletter-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.block_newsletter form .input-wrapper {
    order: -1;
    max-width: 315px;
    width: 100%;
}

.block_newsletter form input[type=email] {
    padding: 8px 12px;
    background: #fff;
    border-radius: 50px 0 0 50px;
    border: 2px solid #fff;
    height: 46px;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    color: rgb(51, 51, 51);
}

.block_newsletter form input.btn {
    background: #f5f5f5;
    color: #02184b;
    min-width: 135px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0px 8px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0 50px 50px 0;
    border: none;
    border-left: 1px solid #b6b9ba;
    text-transform: none;
}

.box-loyalty {
    padding: 0 15px;
    min-height: 200px;
    background-image: linear-gradient(90deg,
            #e78558 0,
            #e78558 240px,
            #dd6650);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.box-loyalty-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 660px;
    margin-right: auto;
    margin-left: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-img-newletter {
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.footer-img-loyalty {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.box-loyalty-wrapper h3 {
    font-family: var(--font-family-2);
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    color: #000;
}

.box-loyalty-wrapper p {
    font-size: 16px;
    line-height: 1.25;
    color: #000;
    margin: 0 auto;
    max-width: 280px;
}

@media (max-width: 900px) {
    .box-loyalty-wrapper p {
        font-size: 14px;
    }
}

.box-loyalty-wrapper span {
    padding: 48px 16px 0px 16px;
    font-size: 55px;
}

.box-loyalty-wrapper a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    color: #dd6650;
    background-color: #ffffff;
    border-radius: 3px 3px 3px 3px;
    padding: 8px 24px 8px 24px;
    border: 2px solid #fff;
    transition: 0.35s all ease;
}

.box-loyalty-wrapper a:hover {
    background: transparent;
    color: #fff;
}

#customer-care {
    background: #02184b;
    padding-top: 24px;
    padding-bottom: 16px;
}

.home-product-2 .thumbnail-container .product-thumbnail::after,
#blockcart-modal .thumbnail-container .product-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 767px) {
    #customer-care .row {
        display: flex;
        flex-wrap: wrap;
    }
}



#customer-care .icon {
    font-size: 80px;
}

#customer-care .text-blue {
    color: #4ac1ff;
}

#customer-care .text-uppercase {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25em;
    margin-bottom: 8px;
}

#customer-care .text-2 {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    margin-bottom: 8px;
}

#footer-social {
    max-width: 1030px;
    margin: 24px auto 32px;
    text-align: center;
}

#footer-social .text-uppercase {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    margin-bottom: 8px;
}

#footer-social ul {
    margin-bottom: 0;
}

#social .list-inline {
    gap: 12px;
}

#social .list-inline-item {
    margin: 0;
    display: flex;
}

#social .list-inline-item a {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#social .list-inline-item a i {
    font-size: 25px;
    color: var(--text-color);
}

.footer-icons .list-inline-item {
    margin: 0;
}

.footer-icons .list-inline-item span {
    display: flex;
    margin-right: 8px;
}

.footer-icons .list-inline {
    gap: 16px
}

.footer-icons .text-3 {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom {
    background: #fafafa;
}

#links {
    display: flex;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 32px;
    padding-bottom: 16px;
}

#links .links {
    width: auto;
    padding: 0;
}

/*Modiff*/
#links .row {
    margin-left: 21px;
    /*margin-right: 0;*/
    display: flex;
}

#links .wrapper {
    padding: 0 24px 0 0;
    width: 220px;
}

.footer__links--image {
    padding: 0 24px 0 0;
    width: 220px;
}

.footer__links--image p {
    font-size: 14px;
}

#links .h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    color: #02184b;
    text-transform: none;
}

#links .custom-page-link {
    font-size: 14px;
    line-height: 21px;
}

.reviews__carousel--wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
}

.rating__value {
    max-width: 170px;
    padding-right: 20px;
    text-align: center;
}

.rating__value-numeric {
    font-size: 19px;

    line-height: 23px;

    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-family-3);
    color: var(--orange-color);
}

.rating__value-numeric .rating__value-fact {
    font-size: 33px;

    line-height: 40px;

    letter-spacing: -0.02em;

    margin-right: 3px;
}

.rating__value-stars .stars {
    display: flex;

    justify-content: center;
}

.rating__value-stars .stars .stars__item:not(:last-of-type) {
    margin-right: 4px;
}

.rating__value-stars .stars .stars__item {
    width: 24px;

    height: 24px;

    display: flex;

    justify-content: center;

    align-items: center;
}

.rating__value-stars .stars .stars__item.star-half {
    background: linear-gradient(to right, rgba(233, 130, 61, 1) 0%, rgba(233, 130, 61, 1) 68%, rgba(233, 130, 61, 0.3) 68%, rgba(233, 130, 61, 0.3) 100%) !important;
}

.rating__value-stars .stars .stars__item img {
    width: 17px;

    height: 17px;
}



.rating__value .elementor-image {
    width: 90px;
    margin: 10px auto 0;
    display: block;
}

/* Cacher l'image sur mobile */
@media (max-width: 1025px) {
    .elementor-image {
        display: none;
    }
}


.rating__details-text {
    font-size: 12px;
    line-height: 14px;
    color: #313235;
    margin: 8px 6px 5px 4px;
    font-family: var(--font-family-3);
}

.rating__details-link {
    font-size: 12px;
    line-height: 14px;
    text-decoration: underline;
    font-family: var(--font-family-3);
    color: #313235;
}

#reviews-container {
    width: calc(100% - 170px);
    font-family: var(--font-family-3);
}

#reviews-container .category-carousel {
    max-width: calc(100% - 80px);
    margin: 0 auto;
    padding-bottom: 0;
}

#reviews-container .drag-scroll .item {
    flex: none;
    width: calc(25% - 15px);
    padding: 1px;
}

#reviews-container .stars {
    display: flex;

    justify-content: flex-start;

    flex-wrap: wrap;
}

#reviews-container .stars .stars__item:not(:last-of-type) {
    margin-right: 4px;
}

#reviews-container .stars .stars__item {
    width: 24px;

    height: 24px;

    display: flex;

    justify-content: center;

    align-items: center;
}

#reviews-container .stars .stars__item img {
    width: 17px;

    height: 17px;
}

#reviews-container .stars .stars__item.star-none {
    background: linear-gradient(to right, rgba(233, 130, 61, 1) 0%, rgba(233, 130, 61, 1) 0%, rgba(233, 130, 61, 0.3) 0%, rgba(233, 130, 61, 0.3) 100%) !important;
}

#reviews-container .stars .review__rating {
    color: #2f2e2e;

    margin-right: 12px;

    margin-left: 13px;

    letter-spacing: 0.05em;

    font-size: 16px;

    line-height: 18px;
}

#reviews-container .stars .review__rating .review__rating-fact {
    font-size: 20px;

    line-height: 23px;

    font-weight: 700;

    color: var(--orange-color);
}

#reviews-container .block-carousel-image-container {
    padding: 20px 16px;

    border-radius: 4px;

    border: 1px solid #e7e7e7;

    background-color: #fff;
    margin-right: 1px;
}

#reviews-container .skeepers-content {
    max-height: 70px;

    margin: 24px 0 20px;

    font-style: normal;

    font-weight: 400;

    font-size: 14px;

    line-height: 17px;

    display: flex;

    justify-content: left;

    text-align: left;

    color: #313235;
}

#reviews-container .skeepers-reviewer-wide {
    display: block;

    width: 100%;

    text-align: left;

    margin: 0px;

    font-style: normal;

    font-size: 12px;

    line-height: 17px;

    margin-top: auto;

    color: #706d6d;
}

#reviews-container .item-description {
    display: flex;

    flex-direction: column;

    height: 100%;
}

#reviews-container .carousel__comment {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;

    height: 100%;

    flex: 1;
}

#reviews-container .carousel-btn {
    font-family: "Roboto", Sans-serif;
    font-weight: 900;
    font-size: 35px;
    line-height: 24px;
    color: var(--orange-color);
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    box-shadow: none;
    padding: 0;
}

.list-items.horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.25;
}

@media (max-width: 900px) {
    .list-items.horizontal {
        font-size: 0.635rem;
        line-height: 1.78;
        margin-top: -30px;
    }
}

.list-items.horizontal .list-item {
    position: relative;
    margin: 0 6px;
}

.list-items.horizontal .list-item:not(:last-of-type)::before {
    content: "-";
    position: absolute;
    right: -8px;
    top: 45%;
    transform: translateY(-50%);
    font-weight: 500;
}

#reviews-container .swiper-navigation svg {
    display: none;
}

#reviews-container .swiper {
    max-width: calc(100% - 80px);
    margin: 0 auto;
}


#reviews-container .swiper-slide {
    height: auto;
    display: flex;
}

#reviews-container .swiper-button-next,
#reviews-container .swiper-button-prev {
    width: auto;
    height: auto;
    font-size: 35px;
    font-weight: 900;
    color: rgba(233, 130, 61, 1);
}

/* end Footer */

p {
    color: var(--text-color);
}


.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.language-modal .modal-dialog {
    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin: 0 auto;
}

.language-modal .modal-content {
    width: 100%;

    border-radius: 4px;
}

.language-modal .modal-footer {
    padding: 0;

    border: none;
}

.language-modal .modal-header .close {
    position: unset;

    transform: none;

    background: none;

    padding: 0;
    margin: 0;
    font-size: 18px;
    opacity: 1;
    color: var(--text-color);
    background: #f8f5f2;
    padding: 6px;
}

.language-modal .modal-header {
    padding-bottom: 0;
}

.language-modal-title {
    font-size: 18px;

    margin-bottom: 16px;
}

.language-modal .custom-checkbox input[type="radio"] {
    position: absolute;

    width: 18px;

    height: 18px;

    margin-top: 0.25rem;

    cursor: pointer;

    opacity: 0;
}

.language-modal .custom-checkbox input[type="radio"]+span {
    display: inline-block;

    width: 14px;

    height: 14px;

    margin-right: 0.5rem;

    vertical-align: middle;

    pointer-events: none;

    cursor: pointer;

    border: 1px #02184b solid;

    border-radius: 3px;

    margin-top: -2px;
}

.language-modal .custom-checkbox input[type="radio"]+span i {
    display: none;

    margin: 0;

    font-size: 12px;
}

.language-modal .custom-checkbox input[type="radio"]:checked+span i {
    display: block;
}

.language-modal .custom-checkbox input[type="radio"]:checked+span {
    background-color: #00c979;

    border-color: #00c979;

    color: #fff;
}

form#langForm label {
    width: 100%;

    text-align: left;

    margin-bottom: 2px;
    color: var(--text-color);
    cursor: pointer;
}

.language-modal .buttons {
    margin-left: -15px;

    margin-right: -15px;

    margin-top: 15px;

    padding: 15px 15px 0px;

    border-top: 1px solid #f0f0f0;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;
}

.language-modal .buttons button {
    font-size: 14px;

    line-height: 1.5;

    color: #fff;

    padding: 10px 24px;

    border-radius: 3px;

    background: linear-gradient(90deg, #0c2b72, #02184b) padding-box,
        linear-gradient(90deg, #0c2b72, #02184b) border-box;

    border: 2px solid transparent;

    cursor: pointer;
}

.language-modal .buttons button:hover {
    background: linear-gradient(90deg, #02184b, #02184b) padding-box,
        linear-gradient(90deg, #02184b, #02184b) border-box;
}

.language-modal .buttons button.close-modal {
    background: transparent;

    border: 2px solid #02184b;

    color: #02184b;
}

.language-modal .buttons button.close-modal:hover {
    background: linear-gradient(90deg, #02184b, #02184b) padding-box,
        linear-gradient(90deg, #02184b, #02184b) border-box;

    color: #fff;
}

.offcanvas-backdrop {
    background-color: #000;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1040;
    opacity: 0.5;
}

#sizeguide .offcanvas {
    position: relative;
}
.offcanvas {
    background-clip: padding-box;
    background-color: #fff;
    bottom: 0;
    color: #02184b;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    outline: 0;
    position: fixed;
    transition: 0.35s all ease-in-out;
    visibility: hidden;
    z-index: 1045;
    overflow: hidden;
}

.offcanvas.offcanvas-start {
    left: 0;
    top: 0;
    width: 450px;
    transform: translateX(-100%);
}

.offcanvas.show {
    visibility: visible;
    transform: none;
}

.offcanvas-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    padding: 16px;
}

.offcanvas-header .offcanvas-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.offcanvas-header .btn-close {
    position: absolute;
    right: 30px;
    z-index: 2;
    background-color: #f8f5f2;
    border: none;
    outline: none;
    border-radius: 50%;
    height: 20px;
    opacity: 1;
    width: 20px;
    padding: 8px;
    margin: -8px -8px -8px 0;
    box-sizing: content-box;
    cursor: pointer;
}

.offcanvas-header .btn-close i {
    font-size: 18px;
    color: var(--text-color);
}

.offcanvas-body {
    overflow-y: auto;
    padding-bottom: 8px;
}

#menu-side-items {
    padding-left: 1rem;
    padding-right: 1rem;
}

#menu-side-items ul {
    margin-bottom: 8px;
}

#menu-side-items .level-1>li {
    margin-bottom: 8px;
}

#menu-side-items .level-1>li>a {
    display: block;
    background-color: #f8f5f2;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    height: 60px;
    line-height: 40px;
    padding: .5rem 1rem;
    position: relative;
}


#menu-side-items .level-1>li>a img {
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    width: 130px;
}

#menu-side-items .level-1 .level-2 {
    background-color: #fff;
    height: 100%;
    left: 100%;
    position: absolute;
    top: 0;
    transition: .3s;
    width: 100%;
    z-index: 2;
}
#menu-side-items ul ul ul {
  margin-left: 15px;
}
#menu-side-items .level-1 .level-2.active {
    left: 0;
}

#menu-side-items .level-1 .level-2 .btn-back {
    align-items: center;
    border: 0;
    display: flex;
    height: 70px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

#menu-side-items .level-1 .level-2 .btn-back>i {
    font-size: 1.25rem;
    margin-right: .5rem;
}

#menu-side-items .level-1 .level-2 .wrapper-image {
    background-position: 50%;
    height: 100px;
    width: 100%;
}

#menu-side-items .level-1 .level-2 .accordion {
    height: calc(100% - 170px);
    overflow: auto;
}

#menu .list-group.list-group-flush {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 8px;
}

#menu .list-group.list-group-flush .list-group-item {
    padding: 0;
    border-width: 0 0 1px;
    border-color: #f0f0f0;
    border-style: solid;
    color: #02184b;
    margin: 0;
}

#menu-side-items .level-1 .level-2 .accordion .accordion-item {
    padding: .25rem 2rem;
}

#menu-side-items .level-1 .level-2 .accordion .accordion-item.has-background {
    background: #f8f5f2;
}

#menu-side-items .level-1 .level-2 .accordion .accordion-item.has-background:first-child {
    padding-top: 1rem;
}

#menu-side-items .level-1 .level-2 .accordion .accordion-header>a {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

#menu-side-items .level-1 .level-2 .accordion .accordion-item .accordion-header .accordion-button {
    padding: 0.5rem 0;
    font-size: 1rem;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 0;
    cursor: pointer;
}

#menu-side-items .level-1 .level-2 .accordion .accordion-item .accordion-header img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
    border-radius: 50%;
}

#menu-side-items .level-1 .level-2 .accordion .has-background:last-of-type {
    padding-bottom: 1rem;
}

#menu-side-items .level-1 .level-3>li {
    margin-left: 50px;
}

#menu-side-items .level-1 .level-3>li a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: var(--text-color);
}

.accordion-button {
    display: flex;
    width: 100%;
    align-items: center;
    color: var(--text-color);
}

.accordion-button:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2302184B' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-size: 20px;
    background-repeat: no-repeat;
    width: 40px;
    height: 1.25rem;
    transition: 0.25s all;
    background-position: center;
    margin-left: auto;
}

.accordion-button:not(.collapsed):after {
    transform: rotate(180deg);
    transform-origin: center center;
}

#menu .list-group.list-group-flush .list-group-item:last-child {
    border: none;
}

#menu .list-group-flush .list-group-item a {
    align-items: center;
    display: flex;
    font-size: .875rem;
    padding: .5rem;
}

#menu .list-group-flush .list-group-item a i {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: #02184b;
}

#menu .list-group.list-group-extend {
    background-color: #f8f5f2;
    padding: 1rem 2rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
}

#menu .list-group.list-group-extend .list-group-item {
    padding: 0;
    margin: 0;
    background: transparent;
    color: #02184b;
    border: none;
}

#menu .list-group.list-group-extend .list-group-item:first-child a {
    padding-top: 0;
}

#menu .list-group.list-group-extend .list-group-item a {
    font-size: .75rem;
    padding: .5rem .5rem 0;
}

.thumbnail-container .wishlist-button-add {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: auto;
    box-shadow: none;
    border-radius: 0;
}

.wishlist-button-add i {
    width: auto;
    height: auto;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wishlist-button-add i::before {
    content: "\e90a";
    font-family: "Icons";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    font-size: 30px;
    color: var(--text-color);
}


.products article .wishlist-button-add {
    top: 16px;
    right: 18px;
}

.product-description .add-to-cart {
    padding: 0;
    background-color: transparent;
    color: var(--text-color);
    display: inline-flex;
    border: none;
    width: auto;
    margin-right: 4px;
    transform: none !important;
}

.product-description .leo-bt-cart-content {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-description .leo-bt-cart-content::before {
    content: "+";
    position: absolute;
    height: 18px;
    right: -4px;
    top: 2px;
    width: 18px;
    background-color: var(--orange-color);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 18px;
    font-size: 10px;
    font-weight: 600;
}

.product-description .add-to-cart i {
    font-size: 38px;
    border-radius: 50%;
    background-color: #f8f5f2;
    line-height: 1;
}

.product-description .add-to-cart .name-btn-product {
    display: none;
}

.p-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thumbnail-container .product-price-and-shipping {
    display: flex;

    flex-wrap: wrap;

    align-items: flex-end;

    line-height: 1;
    margin-top: 8px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    margin: 1px 0 0 0;
}

@media (max-width: 600px) {
    .thumbnail-container .product-price-and-shipping {
        font-size: 1rem;
    }
}

/* Uniquement pour le carousel "Recommandé pour vous dans le panier" */
.cart-grid-body .category-products .thumbnail-container .product-price-and-shipping {
    font-weight: 400 !important;
    font-size: 16px;
}

.cart-grid-body .product-miniature .product-brand {
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 900px) {
    .cart-grid-body .product-miniature .product-brand {
        font-size: 14px;
    }
}

.cart-grid-body .product-description .add-to-cart i {
    font-size: 40px;
    border-radius: 50%;
    background-color: #fff;
    line-height: 1;
    margin-right: 11px;
    margin-left: 35px;
}

.cart-grid-body .product-description .leo-bt-cart-content::before {
    content: "+";
    position: absolute;
    height: 18px;
    right: -4px;
    top: -3px;
    width: 18px;
    background-color: var(--orange-color);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 15px;
    font-size: 19px;
    font-weight: 100;
    margin-right: 11px;
}

.cart-grid-body .product-miniature .product-title a {
    display: block;
    /* ← Changez de -webkit-box à block */
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    font-size: .875rem;
    margin-right: auto;
    color: #02184b !important;
    /* ← Couleur noire fixe */
    -webkit-text-fill-color: #02184b !important;
    /* ← Force la couleur */
    font-weight: 300;
}

.cart-grid-body .product-miniature .product-description {
    padding: 0 0 5px;
}


#cart .cart-grid-body .category-products .swiper-button-next {
    background-color: #ffffff;
}

#cart .cart-grid-body .category-products .swiper-button-prev {
    background-color: #ffffff;
}

.thumbnail-container .product-price-and-shipping .discount-product {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    padding: 0 4px;
    border-radius: 3px;
    background-color: #02184b;
    font-weight: 400;
}

.thumbnail-container .product-price-and-shipping .price {
    order: -1;
}

.thumbnail-container .product-price-and-shipping .regular-price {
    position: relative;
}

.thumbnail-container .product-price-and-shipping .regular-price {
    color: var(--text-color);
    margin: 0 4px 0 4px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 600px) {
    .thumbnail-container .product-price-and-shipping .regular-price {
        font-size: 10px;
    }
}

.thumbnail-container .product-price-and-shipping .regular-price::before {
    border-top: 1px solid;

    border-color: #02184b;

    content: "";

    left: 0;

    position: absolute;

    right: 0;

    top: 45%;

    -webkit-transform: skewY(-8deg);

    -moz-transform: skewY(-8deg);

    transform: skewY(-8deg);
}

.thumbnail-container .product-image:hover .addToCartFormWrapper {
    transform: none;
}

.thumbnail-container .category-default a {
    font-size: 14px;
}

.thumbnail-container .category-default {
    margin-bottom: 0;
}

.thumbnail-container .leo-wishlist-button {
    background: transparent !important;

    color: #02184b !important;

    padding: 0;

    position: absolute;

    top: 12px;
    z-index: 9;
    right: 12px;
    border: none !important;
    outline: none !important;
}

.thumbnail-container .leo-wishlist-button i {
    font-size: 30px;
    display: inline-block;
}

.thumbnail-container .leo-wishlist-button .name-btn-product {
    display: none;
}

.thumbnail-container .leo-wishlist-button.added i::before, .thumbnail-container .leo-wishlist-button.active i::before {
    content: "\e90b";
}

.thumbnail-container .addToCartFormWrapper {
    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    padding: 4px 0;

    background-color: rgba(248, 245, 242, 0.8);

    overflow: hidden auto;

    max-height: 92px;

    transform: translateY(100%);

    transition: 0.35s all ease-in-out;
    z-index: 9;
}


.thumbnail-container .addToCartFormWrapper::-webkit-scrollbar {
    display: none;
}

.thumbnail-container .addToCartFormWrapper::-webkit-scrollbar-thumb {
    background: #ddd;
}


.thumbnail-container .addToCartFormWrapper::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-container .addToCartFormWrapper .control-label {
    display: block;

    font-size: 12px;

    line-height: 1.5;

    color: #02184b;

    text-align: center;
}

.thumbnail-container .addToCartFormWrapper ul {
    margin-bottom: 0;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: center;
}

.thumbnail-container .addToCartFormWrapper ul li label {
    margin-bottom: 0;
}

.thumbnail-container .addToCartFormWrapper ul li .radio-label {
    margin: 4px;

    padding: 0 16px;

    border-radius: 800px;

    background-color: #fff;

    color: #02184b;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 400;

    box-shadow: none;

    border: none;
}



.thumbnail-container .addToCartFormWrapper ul li:hover .radio-label {
    background-color: #02184b;
    color: #fff;
}

.thumbnail-container .addToCartFormWrapper ul li.sold-out .radio-label {
    background-color: #ddd;
    position: relative;
}

.thumbnail-container .addToCartFormWrapper ul li.sold-out .radio-label::before,
#plist_modal_variants ul li.sold-out .radio-label::before,
.product-variants>.product-variants-item .sold-out .radio-label:before {
    background: #02184b;
    content: "";
    height: 1px;

    left: 50%;

    position: absolute;

    top: 50%;

    transform: translate(-50%, -50%) rotate(170deg);

    transform-origin: center;

    width: 50%;
}

.thumbnail-container:hover .addToCartFormWrapper {
    transform: none;
}


@media (max-width: 1024px) {
    .footer-top .block_newsletter#blockEmailSubscription_displayFooterBefore {
        width: 100%;
    }

    .footer-top .box-loyalty {
        width: 100%;
    }

    .box-loyalty-wrapper span {
        display: none;
    }

    .box-loyalty-wrapper {
        flex-direction: column;
        margin: 0 auto;
        gap: 1rem;
    }

    .block_newsletter-wrapper {
        max-width: 100%;
    }

    #footer-social>div:not(:last-child) {
        margin-bottom: 1rem;
    }
}


@media (max-width: 767px) {

    #_desktop_logo .logo-white,
    #header .logo {
        width: 80px;
        margin-top: 1px;
    }

    #search_widget {
        flex: none;
        width: 100%;
        order: 10;
        margin-top: 10px;
        /* transition: 0.35s all ease; */
    }

    .header-top .col-xs-12 {
        flex-wrap: wrap;
    }

    .marquee-wrapper {
        animation-duration: 5s;
    }

    .btn__icon i {
        font-size: 30px;
    }

    .cart-products-count {
        top: -1px;
        right: -6px;
    }

    #_desktop_logo {
        flex: 1;
        /* transition: 0.35s all ease; */
    }

    #links .row {
        flex-wrap: wrap;
        justify-content: center;
    }

    #links .wrapper,
    .footer__links--image {
        width: 50%;
        max-width: 220px;
        padding-right: 16px;
    }

    #links .h3 {
        font-size: 16px;
        font-weight: 600;
    }

    #header .header-top {
        padding: 6px 0;
        min-height: 50px;
        max-width: 100vw;
    }

    .header-top.is-sticky #search_widget {
        flex: 1;
        order: unset;
        margin-top: -5px;
        margin-left: -27px;
        margin-right: 6px;
    }

    .header-top.is-sticky #_desktop_logo {
        width: 0;
        opacity: 0;
        flex: none;
    }

    #header .btn__menu {
        padding-top: 4px;
    }
}

@media (max-width: 500px) {
    .rating__value {
        padding-right: 0;
    }

    #reviews-container {
        width: 100%;
    }

    .reviews__carousel--wrapper {
        justify-content: center;
        gap: 25px 0;
    }
}


/*  category */

#search_filters_wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    transform: none;
    transition: 0.35s all ease-in-out;
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

#search_filters_wrapper.hidden-sm-down {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
}

#category #wrapper .breadcrumb {
    margin-top: 1rem;
    margin-bottom: 0;
}

.subcategories-list {
    width: fit-content;
    max-width: 100%;
}

.subcategories-list .swiper-slide {
    width: 120px;
    min-width: 120px;
    text-align: center;
}

.subcategory-image {
    border-radius: 50%;
    overflow: hidden;
}

.subcategories-list h5 {
    margin-bottom: 0;
    margin-top: 8px;
}

.subcategory-name {
    font-size: 12px;
    line-height: 1.25;
    opacity: 0.75;
    font-weight: 400;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

#category .thumbnail-container .product-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.03);
}

#category #wrapper .products .product {
    padding-left: 5px;
    padding-right: 5px;
}

#category #wrapper .products:not(.swiper-wrapper) {
    margin-left: -4px;
    margin-right: -4px;
}

#products .products:not(.swiper-wrapper) {
    margin-left: 4px;
    margin-right: 4px;
}

#products .products .product {
    padding-left: 8px;
    padding-right: 8px;
}

#category #content-wrapper.hidden-sm-down {
    display: block !important;
}

.filter-button {
    text-align: right;
}

.products-selection .filter-button #search_filter_toggler {
    background: linear-gradient(90deg, #0c2b72, #02184b) padding-box, linear-gradient(90deg, #0c2b72, #02184b) border-box;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
    border: none;
    outline: none;
    text-transform: none;
    display: inline-flex;
    align-items: center;
}

.products-selection .filter-button #search_filter_toggler i {
    font-size: 18px;
    margin-right: 8px;
}

@media (max-width: 767px) {
    #products .products {
        margin-left: -4px;
        margin-right: -4px;
    }

    #products .products .product {
        padding-left: 4px;
        padding-right: 4px;
    }

    .subcategories-list .swiper-slide {
        width: 90px;
        min-width: 90px;
    }
}

.text-center {
    text-align: center;
}

/*  cms ma-fidelite */

/* CMS Ma Fidelite Styles */
.cms-ma-fidelite .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin: -12px -12px 0;
    color: #02184b
}

.cms-ma-fidelite .col {
    flex: 1 0 0%;
    margin-top: 0;
    max-width: 100%;
    padding: 0 12px
}

.cms-ma-fidelite h1.text-handwriting {
    color: #02184b;
    font: 400 2.5rem/1 Arkipelago, sans-serif;
    margin: .5rem 0 1.5rem;
    text-align: center
}

.cms-ma-fidelite .container.container-reset {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding: 0 12px;
    color: #02184b;
    max-width: 1320px;
    width: 1000px;
}

.cms-ma-fidelite .row.mt-4 {
    margin-top: 1.5rem;
    text-align: center
}

.cms-ma-fidelite #example {
    flex-shrink: 0;
    margin-top: 0;
    max-width: 100%;
    width: 100%;
}

.cms-ma-fidelite #example>div.d-flex {
    background: #f8f5f2;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0 !important;
}

.cms-ma-fidelite .d-none.d-md-block.text-7 {
    display: block;
    margin-bottom: 1rem !important;
    font-size: 1.563rem
}

.cms-ma-fidelite .flex-md-row {
    flex-direction: row;
    justify-content: space-around;
    align-items: center
}

.cms-ma-fidelite .description-part,
.cms-ma-fidelite .example-part {
    flex-direction: column;
    align-items: center
}

.cms-ma-fidelite p {
    margin-bottom: 0;
}

.cms-ma-fidelite .description-part {
    justify-content: center
}

.cms-ma-fidelite .percentage.text-handwriting {
    font: 85px/1 Arkipelago, sans-serif;
    margin-bottom: 1rem !important;
    padding-top: 2rem;
    color: #e78558
}

.cms-ma-fidelite .text-3 {
    font-size: .875rem
}

.cms-ma-fidelite .text-4 {
    font-size: 1rem
}

.cms-ma-fidelite .text-md-6 {
    font-size: 1.25rem
}

.cms-ma-fidelite .text-6 {
    font-size: 1.563rem
}

.cms-ma-fidelite .text-7,
.cms-ma-fidelite .text-md-8,
.cms-ma-fidelite .text-8 {
    font-size: 1.875rem
}

.cms-ma-fidelite .text-5 {
    font-size: 1.125rem
}

.cms-ma-fidelite .equal {
    font-size: 105px;
    display: block;
    margin: 2rem 0 3rem;
    font-weight: 700;
    color: #e78558;
    width: fit-content;
    line-height: 0
}

.cms-ma-fidelite .example-part .text-4 {
    margin-top: 0
}

.cms-ma-fidelite #amount-total {
    font-weight: bolder
}

.cms-ma-fidelite .form-range {
    appearance: none;
    height: 1.5rem;
    padding: 0;
    margin: .5rem 0
}

.cms-ma-fidelite .total-point-acquired {
    background: linear-gradient(90deg, #e78558, #dd6650);
    flex-direction: column;
    align-items: center;
    margin-top: .5rem;
    padding: .25rem 2rem;
    border-radius: 4px
}

.cms-ma-fidelite .total-point-acquired .text-uppercase {
    --bs-text-opacity: 1;
    font-size: .875rem
}

.cms-ma-fidelite #total-point {
    --bs-text-opacity: 1;
    font-size: 50px;
    line-height: 1
}

.cms-ma-fidelite .text-1,
.cms-ma-fidelite .text-md-2 {
    margin-top: 1.5rem;
    padding: 0 1rem;
    font-size: .75rem
}

.cms-ma-fidelite a {
    color: #02184b;
    text-decoration-line: underline
}

.cms-ma-fidelite #subscribe {
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem
}

.cms-ma-fidelite .text-handwriting {
    font-family: Arkipelago, sans-serif
}

.cms-ma-fidelite .ms-2 {
    margin-left: .5rem
}

.cms-ma-fidelite .ms-3 {
    margin-left: 1rem
}

.cms-ma-fidelite .typology {
    min-width: 300px;
    margin: .5rem 0
}

.cms-ma-fidelite .typology>div {
    background: #f8f5f2;
    justify-content: center;
    align-items: center;
    margin: 0 .25rem;
    padding: .5rem;
    text-align: center
}

.cms-ma-fidelite .typology .mx-1,
.cms-ma-fidelite .mx-1 {
    margin: 0 .25rem
}

.cms-ma-fidelite .typology .mb-n1 {
    margin-bottom: -.25rem
}

.cms-ma-fidelite .typology a {
    font-size: .625rem
}

.cms-ma-fidelite .row.my-4 {
    margin: 1.5rem -12px
}

.cms-ma-fidelite .w-md-90 {
    margin: 1rem auto 0
}

.cms-ma-fidelite .align-items-center {
    align-items: center
}

.cms-ma-fidelite .my-2 {
    margin: .5rem 0 !important;
}

.cms-ma-fidelite .mb-0 {
    margin-bottom: 0
}

.cms-ma-fidelite .mb-2 {
    margin-bottom: .5rem
}

.cms-ma-fidelite .mb-3 {
    margin-bottom: 1rem
}

.cms-ma-fidelite .mb-4 {
    margin-bottom: 1.5rem
}

.cms-ma-fidelite .mb-7 {
    margin-bottom: 3rem
}

.cms-ma-fidelite .mt-2 {
    margin-top: .5rem
}

.cms-ma-fidelite .mt-3 {
    margin-top: 1rem
}

.cms-ma-fidelite .mt-4 {
    margin-top: 1.5rem
}

.cms-ma-fidelite .mt-5 {
    margin-top: 2rem
}

.cms-ma-fidelite .mx-auto {
    margin: 0 auto
}

.cms-ma-fidelite .container-fluid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    color: #02184b;
    padding: 1.5rem 0;
    margin-top: 1.5rem
}

.cms-ma-fidelite #use-steps {
    padding: 1.5rem 0;
    background: #f8f5f2
}

.cms-ma-fidelite #use-steps .container {
    flex-shrink: 0;
    background: transparent;
    max-width: 1320px
}

.cms-ma-fidelite .phone-container img {
    height: auto
}

.cms-ma-fidelite .step-number {
    --bs-bg-opacity: 1;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: fit-content
}

.cms-ma-fidelite .step-number span {
    font: 1.563rem/2 Arkipelago, sans-serif;
    height: 45px;
    width: 45px;
    text-align: center
}

.cms-ma-fidelite hr {
    border-top: .8px solid #f0f0f0;
    color: #f0f0f0;
    margin: 0;
    opacity: 1
}

.cms-ma-fidelite .accordion {
    --bs-accordion-color: #02184b;
    --bs-accordion-bg: #fff;
    --bs-accordion-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
    --bs-accordion-border-color: #f0f0f0;
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 3px;
    --bs-accordion-inner-border-radius: calc(3px - 1px);
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: #02184b;
    --bs-accordion-btn-bg: #fff;
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform .2s ease-in-out;
    --bs-accordion-btn-focus-box-shadow: inherit;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #02184b;
    --bs-accordion-active-bg: inherit;
    color: #02184b;
    margin-top: 1.5rem
}

.cms-ma-fidelite .accordion-item {
    border: 0;
    border-radius: 0
}

.cms-ma-fidelite .accordion-header {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0
}

.cms-ma-fidelite .accordion-button {
    color: #02184b;
    line-height: 1;
    margin-bottom: .5rem;
    font-size: 1rem;
    align-items: center;
    border: 0;
    border-radius: 0;
    display: flex;
    overflow-anchor: none;
    padding: 16px 0;
    position: relative;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s;
    cursor: pointer
}

.cms-ma-fidelite .accordion-button.collapsed {
    font-weight: 400
}

.cms-ma-fidelite .text-center {
    text-align: center
}

.cms-ma-fidelite .text-white {
    --bs-text-opacity: 1;
    color: #fff
}

.cms-ma-fidelite .text-loyalty {
    color: #e78558
}

.cms-ma-fidelite .lh-0 {
    line-height: 0
}

.cms-ma-fidelite .lh-1 {
    line-height: 1
}

.cms-ma-fidelite .lh-lg {
    line-height: 2
}

.cms-ma-fidelite .fw-bold,
.cms-ma-fidelite .font-weight-bold {
    font-weight: 700
}

.cms-ma-fidelite .font-weight-medium {
    font-weight: 500
}

.cms-ma-fidelite .font-weight-normal {
    font-weight: 400
}

.cms-ma-fidelite .w-fit-content {
    width: fit-content
}

.cms-ma-fidelite .w-100 {
    width: 100%
}

.cms-ma-fidelite .w-50 {
    width: 50%
}

.cms-ma-fidelite .mw-100,
.cms-ma-fidelite .h-auto {
    max-width: 100%;
    height: auto
}

.cms-ma-fidelite .h-fit-content {
    height: fit-content
}

.cms-ma-fidelite .d-flex {
    display: flex
}

.cms-ma-fidelite .flex-column {
    flex-direction: column
}

.cms-ma-fidelite .justify-content-center {
    justify-content: center
}

.cms-ma-fidelite .justify-content-around {
    justify-content: space-around
}

.cms-ma-fidelite .align-items-bottom {
    align-items: flex-end
}

.cms-ma-fidelite .px-0 {
    padding: 0
}

.cms-ma-fidelite .px-3 {
    padding: 0 1rem
}

.cms-ma-fidelite .px-5 {
    padding: 0 2rem
}

.cms-ma-fidelite .py-1 {
    padding: .25rem 0
}

.cms-ma-fidelite .py-2 {
    padding: .5rem 0
}

.cms-ma-fidelite .py-3 {
    padding: 1rem 0
}

.cms-ma-fidelite .py-4 {
    padding: 1.5rem 0
}

.cms-ma-fidelite .p-2 {
    padding: .5rem
}

.cms-ma-fidelite .pt-5 {
    padding-top: 2rem
}

.cms-ma-fidelite .pb-4 {
    padding-bottom: 1.5rem
}

.cms-ma-fidelite .bg-white {
    --bs-bg-opacity: 1;
    background-color: #fff
}

.cms-ma-fidelite .rounded-1 {
    border-radius: 4px
}

.cms-ma-fidelite .rounded-circle {
    border-radius: 50%
}

.cms-ma-fidelite .text-uppercase {
    text-transform: uppercase
}

.cms-ma-fidelite .d-none {
    display: none
}

@media(min-width:768px) {

    .cms-ma-fidelite .d-md-block,
    .cms-ma-fidelite .d-none.d-md-block {
        display: block !important
    }

    .cms-ma-fidelite .flex-md-row {
        flex-direction: row !important
    }

    .cms-ma-fidelite .text-md-4 {
        font-size: 1rem !important
    }

    .cms-ma-fidelite .text-md-6 {
        font-size: 1.25rem !important
    }

    .cms-ma-fidelite .text-md-8 {
        font-size: 1.875rem !important
    }

    .cms-ma-fidelite .mt-md-0 {
        margin-top: 0 !important
    }

    .cms-ma-fidelite .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .cms-ma-fidelite .py-md-4 {
        padding: 1.5rem 0 !important
    }

    .cms-ma-fidelite .w-md-80 {
        width: 80% !important
    }

    .cms-ma-fidelite .w-md-90 {
        width: 90% !important
    }

    .cms-ma-fidelite .align-items-md-center {
        align-items: center !important
    }
}

@media(min-width:992px) {
    .cms-ma-fidelite .w-lg-50 {
        width: 50% !important
    }

    .cms-ma-fidelite .w-lg-75 {
        width: 75% !important
    }
}

/* cart modal */

#blockcart-modal {
    top: 0;
    bottom: unset;
    /* min-height: -webkit-fill-available !important; */
    height: 100vh;
    height: 100dvh;
    color: var(--text-color);
    background-color: rgba(0, 0, 0, .5);
}

#blockcart-modal .modal-content {
    border: none;
    border-radius: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.blockcart__content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blockcart__top {
    flex: 1;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .blockcart__top {
        margin-bottom: 47px;
    }
}

@media (max-width: 575px) {
    .blockcart__top {
        margin-bottom: 0;
    }
}

.blockcart__product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blockcart__product--image {
    position: relative;
    width: 134px;
}

.blockcart__product--info {
    flex: 1;
}

#blockcart-modal .product-image {
    width: 100%;
}

.blockcart__product--info .d-flex {
    align-items: center;
}

.blockcart__product--info .product-price {
    margin-left: 16px;
    font-size: 16px;
}

.blockcart__product--info .manufacturer_name {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 5px;
}

#blockcart-modal .product-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: .75rem;
}

.blockcart__product--image:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
}


.blockcart__bottom {
    margin-left: -16px;
    margin-right: -16px;
    background: #f8f5f2;
    padding: 35px 12px;
    /* padding-bottom: env(safe-area-inset-bottom); */
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

@media (max-width: 900px) {
    .blockcart__bottom {
        background: #fff;
        margin-bottom: -5px;
    }
}

#random-products2 .swiper-slide {
    width: 230px;
    max-width: 99%;
}

@media (max-width: 900px) {
    #random-products2 .swiper-slide {
        width: 220px;
    }
}

#random-products2 .swiper {
    max-width: 100%;
}

@media (min-width: 768px) {
    #random-products2 .swiper {
        max-width: 88%;
    }
}

#same-category-products .swiper-navigation-icon,
#random-products .swiper-navigation-icon,
#random-products2 .swiper-navigation-icon,
#search_widget .swiper-navigation-icon,
#cart .category-products .swiper-navigation-icon,
.plist-product-carousel .swiper-navigation-icon {
    display: none;
}

#same-category-products .swiper-button-next,
#same-category-products .swiper-button-prev,
#random-products2 .swiper-button-next,
#random-products2 .swiper-button-prev,
#search_widget .swiper-button-next,
#search_widget .swiper-button-prev,
#random-products .swiper-button-next,
#random-products .swiper-button-prev {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #02184b;
    box-shadow: 0 0 4px rgba(0, 0, 0, .16);
    border-radius: 50%;
    top: 44%;
    transform: translateY(-50%);

}

#cart .category-products .swiper-button-next,
#cart .category-products .swiper-button-prev {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, .16);
    border-radius: 50%;

}

#same-category-products .swiper-button-next .icon,
#same-category-products .swiper-button-prev .icon,
#cart .category-products .swiper-button-next .icon,
#cart .category-products .swiper-button-prev .icon,
#random-products2 .swiper-button-next .icon,
#random-products2 .swiper-button-prev .icon,
#search_widget .swiper-button-next .icon,
#search_widget .swiper-button-prev .icon,
#random-products .swiper-button-next .icon,
#random-products .swiper-button-prev .icon {
    color: #02184b;
    font-size: 1rem;
}

@media (max-width: 1200px) {

    #same-category-products .swiper-button-next,
    #same-category-products .swiper-button-prev,
    #cart .category-products .swiper-button-next,
    #cart .category-products .swiper-button-prev,
    #random-products2 .swiper-button-next,
    #random-products2 .swiper-button-prev,
    #search_widget .swiper-button-next,
    #search_widget .swiper-button-prev,
    #random-products .swiper-button-next,
    #random-products .swiper-button-prev {
        display: none;
    }
}

/*  cart */

#cart #wrapper .breadcrumb,
#checkout #wrapper .breadcrumb {
    display: block;
}

.card-grid-heading .card-block {
    padding: 14px 0 17px;
    text-align: center;
}

@media (max-width: 768px) {
    .card-grid-heading .card-block {
        padding: 8px 0 17px;
        margin-top: -13px;
    }
}

.card-grid-heading .card-block h1 {
    font-size: 40px;
    line-height: 1;
}

.free-shipping {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 1px solid #f0f0f0;
}

#blockcart-modal .free-shipping {
    padding: 0;
}

@media (max-width: 900px) {
    .free-shipping {
        border: none !important;
        margin-bottom: 17px;
        margin-top: 6px;
        padding: 16px 12px;
    }
}


.free-shipping-message {
    display: inline;
}

.free-shipping-progress {
    background: #f0f0f0;
    border-radius: 3px;
    height: 5px;
    overflow: hidden;
    margin: 5px 0 0;
}

#blockcart-modal .free-shipping-progress {
    margin: 0 0 0;
}

.shipping-progress-bar {
    background: #02184b;
    height: 5px;
}

.free-shipping-progress-susscess .shipping-progress-bar {
    background: #00c979;
}

.cart-grid-body .cart-overview {
    padding: 0;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.product-line-grid {
    padding: 16px 16px 0;
    margin-bottom: 8px;
    display: flex;
}

.product-line-grid-left {
    flex-shrink: 0;
    width: 160px;
}

#cart .product-line-grid-left {
    position: relative;
}

#cart .product-line-grid-left:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .04);
}

.product-line-grid-left img {
    width: 100%;
}

.product-line-grid-body {
    flex-grow: 1;
    position: relative;
    margin-left: 13.5px;
}

@media (max-width: 600px) {
    #cart .product-line-grid-body {
        margin-left: 12px;
    }
}

.cart-line-product-actions {
    width: 100%;
    display: flex;
}

.cart-item-right-info {
    margin-bottom: 5px;
    display: flex;
    align-content: center;
    align-items: center;
}

.justify-space-between {
    justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.align-items-start {
    align-items: flex-start;
}

.cart-line-product-actions .flag-wrapper {
    min-height: 30px;
    min-width: 30px;
    flex: 1;
}

.cart-line-product-actions .remove-from-cart {
    display: flex;
    justify-content: flex-end;
}

.cart-line-product-actions .remove-from-cart i {
    font-size: 0;
    width: auto;
    height: auto;
    font-family: "Icons";
}

.cart-line-product-actions .remove-from-cart i:before {
    content: "\e904";
    font-size: 14px;
    font-weight: 700;
    color: #02184b;
}

.product-line-info .category-default {
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
    display: block;
    text-align: left;
    font-size: 16px;
}

@media (max-width: 600px) {
    .product-line-info .category-default {
        font-size: 0.875rem;
    }
}

.product-line-info>a.label {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

@media (max-width: 768px) {
    .product-line-info>a.label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .cart-grid-body .product-miniature .product-title a {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
}

.product-line-grid-body .product-price {
    font-size: 1rem;
    position: relative;
    color: var(--text-color);
    display: inline-block;
    line-height: 1.5;
    font-weight: 500;
    margin-right: 1rem !important;
}

.product-line-grid-body .product-price b,
.product-line-grid-body .product-price strong {
    font-weight: 500;
}

.product-line-grid-body .select-quantity {
    width: 36px;
    border: none;
    border-bottom: 1px solid #02184b;
    font-size: .875rem;
    font-weight: 600;
    color: #02184b;
    outline: none;
    background: none;
    height: 26px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .product-line-grid-body .select-quantity {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2302184B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 3px top 5.5px;
        background-size: 11px;
        padding-left: 0 !important;
        padding-right: 22px !important;
        width: 33px !important;
        text-align: left;
        /* Rapprocher du bas */
        height: 22px !important;
        /* ← Réduire la hauteur */
        line-height: 20px !important;
        /* ← Aligner le texte verticalement */
        padding-bottom: 2px !important;
        /* ← Espace minimal avant la ligne */
    }

}

.product-line-grid-body .qty {
    margin-right: 16px;
}

.pr-attributes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 10px;
    margin-left: 16px;
    height: 28px;
    font-size: .875rem;
    margin-top: 3px;
    font-weight: 500;
}

.cart-detailed-totals {
    padding: 8px 0 24px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.cart-summary .checkout {
    padding: 16px 0 0;
}

#cart .card-block.checkout .btn-primary {
    margin-bottom: 0;
}

.card-block.checkout .btn-primary:hover {
    background: linear-gradient(90deg, #02184b, #02184b) padding-box, linear-gradient(90deg, #02184b, #02184b) border-box;
}

.card-block.checkout .btn-primary {
    width: 100%;
    padding: 16px 24px;
    border-radius: 3px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #0c2b72, #02184b) padding-box, linear-gradient(90deg, #0c2b72, #02184b) border-box;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cart-detailed-totals>.block-promo {
    padding: 8px 0 29px;

    border-bottom: 1px solid #f0f0f0;

    margin: 16px auto;

    max-width: 80%;
}

.cart-detailed-totals>.card-block {
    padding: 0;

    max-width: 80%;

    margin: 0 auto;
}

.cart-detailed-totals>.card-block .cart-summary-line {
    margin-bottom: 0;
}

.promo-code {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 0 24px;

    margin-top: -3px;
}

.promo-code>form {
    display: flex;

    align-items: center;

    justify-content: center;
}

.promo-code {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 24px;
}

.promo-code .icon-discount-code {
    font-size: 40px;
    padding: 4px;
    border-radius: 50%;
    background: #f8f5f2;
}

.promo-code>form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrier_btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #02184b;
    color: #fff;
    border: none !important;
    outline: none !important;
    cursor: pointer;
}

#cart-subtotal-shipping {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#cart-subtotal-shipping .label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.carriers-list {
    margin-top: 4px;
    margin-bottom: 16px;
    font-size: 14px;
    width: 100%;
    display: none;
}

@media (max-width: 900px) {
    .carriers-list {
        font-size: 12px;
    }
}

.carrier-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cart-summary-totals>.cart-summary-line:not(.cart-total) {
    display: none;
}

.loyalty-card.loyalty-card-content {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.loyalty-card .rounded-circle {
    background: #e78558;
    padding: .25rem;
    width: 33.7px;
    height: 32px;
    text-align: center;
    font-size: 1.563rem;
    padding-top: 0;
}

.loyalty-card .rounded-circle span.icon {
    font-size: 1.563rem;
    color: #02184b;
}

.loyalty-card-content a {
    text-decoration: underline;
    font-weight: 500;
}

.cart-grid-right-bottom {
    /*max-width: 75%;*/

    margin: 24px auto 0;

    padding: 24px;

    border: 1px solid #f0f0f0;

    border-radius: 4px;
}

.cart-grid-right-bottom .mb-2 {
    margin-bottom: 8px !important;

    display: flex;

    flex-wrap: wrap;
}

.cart-grid-right-bottom strong {
    margin-left: 4px;

    margin-right: 4px;
}

.cart-grid-right-bottom .d-flex {
    align-items: center;

    gap: 6px 10px;
}

.cart-grid-right-bottom .gap-1 {
    flex: 1;
}

.cart-grid-right-bottom img {
    max-width: 100%;
    min-width: 250px;
}

.cart-grid-right-bottom img.alma {
    max-width: none;
    min-width: auto;
    margin-left: 10px;
}

.cart-grid-right-bottom svg {
    width: 40px;

    height: auto;

    margin-left: 10px;
}

.loyalty-card {
    margin-top: 1rem;

    padding: 7.5px;

    background: #f8f5f2;

    border-radius: 3px;
}

.loyalty-card-top {
    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 8px;
}

.loyalty-card-top span.icon {
    background: #e78558;

    padding: 4px;

    border-radius: 50%;

    height: fit-content;

    display: flex;
}

.loyalty-card-top .icon i {
    font-size: 1.563rem;
}

.loyalty-card-top .text {
    margin-left: 8px;

    font-size: 18px;

    line-height: 1.25;

    font-weight: 500;
}

@media (max-width: 900px) {
    .loyalty-card-top .text {
        font-size: 16px;
    }
}

.loyalty-card-top .text span {
    font-style: italic;
}

.loyalty-card-bottom label {
    display: flex;
}

.loyalty-card-bottom .custom-checkbox input[type="checkbox"]+span {
    margin-top: 3px;
}

.loyalty-card-bottom span.text {
    flex: 1;

    line-height: 1.5;

    font-size: 12px;

    margin-left: 8px;

    cursor: pointer;

}

.loyalty-card-bottom span.text strong {
    display: block;

    font-size: 14px;

    cursor: pointer;
}

@media (max-width: 900px) {
    .loyalty-card-bottom span.text strong {
        font-size: 12px;
    }
}

#authentication .page-header {
    margin-bottom: 14px;
    text-align: center;
}

.page-authentication #content {
    padding: 0;
    margin-bottom: 0;
    max-width: 100%;
    color: var(--text-color);
}

.login-form,
.no-account {
    padding: 16px;

    border: 1px solid #f0f0f0;

    border-radius: 4px;
}

.login-form-label,
.no-account-label,
.tracking-label {
    font-size: 20px;

    font-weight: 500;

    text-align: center;
}

@media (max-width: 900px) {

    .login-form-label,
    .no-account-label,
    .tracking-label {
        font-size: 16px;
    }
}

.login-form .form-footer {
    margin-top: 32px;
}

.no-account-label {
    margin-bottom: 16px;
}

.no-account a,
.login-form #submit-login {
    display: flex;

    justify-content: center;

    align-items: center;

    width: 100%;

    padding: 16px 24px;

    border-radius: 3px;

    border: 2px solid transparent;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;

    color: #fff;

    text-transform: uppercase;

    background: linear-gradient(90deg, #0c2b72, #02184b) padding-box,
        linear-gradient(90deg, #0c2b72, #02184b) border-box;
}

.no-account a:hover,
.login-form #submit-login:hover {
    background: linear-gradient(90deg, #02184b, #02184b) padding-box,
        linear-gradient(90deg, #02184b, #02184b) border-box;
}

#authentication [data-action="show-password"] {
    background: transparent;
    position: absolute;
    bottom: 8px;
    right: 0;
    color: #02184b;
    padding: 0;
    height: auto;
    z-index: 3;
}

.form-group:has(.form-control:not(:placeholder-shown)) .form-control-label,
.form-group:has(.form-control:focus) .form-control-label {
    transform: translateY(-13px);
    font-size: 13px;
}

.rememberme {
    display: flex;
    align-items: center;
    position: relative;
}

.rememberme input {
    position: absolute;
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    cursor: pointer;
    opacity: 0;
}

.rememberme span {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
    vertical-align: middle;
    pointer-events: none;
    cursor: pointer;
    border: 1px #02184b solid;
    border-radius: 3px;
    margin-top: -2px;
}

.rememberme span i {
    display: none;
    margin: 0;
    font-size: 0;
}

.rememberme label {
    margin-bottom: 0;
    font-size: 12px;
    cursor: pointer;
}

.rememberme input[type="checkbox"]:checked+span {
    background-color: #00c979;
    border-color: #00c979;
    color: #fff;
}

.rememberme input[type="checkbox"]:checked+span .checkbox-checked {
    display: block;
}

.material-icons.checkbox-checked {
    font-family: "Icons";
}

.material-icons.checkbox-checked::before {
    content: "\e923";
    display: block !important;
    font-size: 12px;
}

.page-customer-account #content .forgot-password a {
    text-decoration: underline;
}

#authentication #guestOrderTrackingForm {
    background: #f0f0f0;

    border-radius: 4px;
}

#authentication #guestOrderTrackingForm .form-footer {
    margin-top: 2rem;
}

.guest-checkout {
    padding: 16px;

    border: 1px solid #f0f0f0;

    background-color: #f0f0f0;

    border-radius: 4px;

    text-align: center;

    font-size: 0.875rem;
}

.guest-checkout-label {
    font-size: 20px;

    font-weight: 500;

    text-align: center;

    margin-bottom: 16px;
}

.guest-checkout-des {
    margin-bottom: 16px;
}

.guest-checkout a,
#guestOrderTrackingForm .btn {
    display: flex;

    justify-content: center;

    align-items: center;

    width: 100%;

    padding: 16px 24px;

    border-radius: 3px;

    border: 2px solid #02184b;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;

    color: #02184b;

    text-transform: uppercase;

    background: transparent;
}

.guest-checkout a:hover,
#guestOrderTrackingForm .btn:hover {
    background-color: #02184b;

    color: #fff;
}

#cart .cart-grid-body .category-products {
    background: #f0f0f0;
    margin-top: 12px !important;
    padding: 5px 45px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 4px;
}

#cart .cart-grid-body .category-products .swiper {
    max-width: 80%;
    margin: 0 auto;
}

@media (max-width: 768px) {

    /* Carousel recommandé - Layout horizontal sur mobile */
    #cart .cart-grid-body .thumbnail-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 30px !important;
        width: 100% !important;
    }

    /* Texte au milieu (nom + description) */
    #cart .cart-grid-body .thumbnail-container .product-description {
        flex: 1;
        text-align: left;
    }

    /* Bouton panier à droite */
    #cart .cart-grid-body .thumbnail-container .add-to-cart,
    #cart .cart-grid-body .thumbnail-container .cart-icon {
        flex-shrink: 0;
        margin-left: auto;
    }
}


#cart .cart-grid-body .thumbnail-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    gap: 20px;
}

#cart .cart-grid-body .thumbnail-container .thumbnail-top {
    width: 90px;
    border-radius: 3px;
}

#cart .cart-grid-body .thumbnail-container .highlighted-informations,
#cart .cart-grid-body .thumbnail-container .wishlist {
    display: none;
}

#cart .cart-grid-body .thumbnail-container .product-flags {
    display: none;
}

#cart .cart-grid-body .category-products>h2 {
    text-align: center;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 3px;
    font-size: 14px;
}

@media (max-width: 900px) {
    #cart .cart-grid-body .category-products>h2 {
        margin-top: -1px;
    }
}

/* Ligne Subtotal */
#cart-subtotal-products .value {
    font-size: 1rem;
}

/* Ligne Shipping */
#cart-subtotal-shipping .value {
    font-size: 1rem;
}

/* Ligne Total */
.card-block.cart-summary-totals .cart-summary-line.cart-total .label,
.card-block.cart-summary-totals .cart-summary-line.cart-total .value {
    font-size: 1.125rem;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    #cart-subtotal-products .value {
        font-size: 0.875rem;
    }

    #cart-subtotal-shipping .value {
        font-size: 1rem;
    }

    .card-block.cart-summary-totals .cart-summary-line.cart-total .label,
    .card-block.cart-summary-totals .cart-summary-line.cart-total .value {
        font-size: 1rem;
        font-weight: 700;
    }
}


#cart .cart-grid-body .category-products .swiper-button-next,
#cart .cart-grid-body .category-products .swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: -5px;
}

#cart .cart-grid-body .swiper-pagination {
    position: relative;
    bottom: 4px;
    margin-top: 8px;
}

#cart .cart-grid-body .swiper-pagination-bullet {
    transition: all 0.3s ease-in-out !important;
}

#cart .cart-grid-body .swiper-pagination-bullet-active {
    background-color: #02184b;
    transition: all 0.3s ease-in-out !important;
}

#index .header-top-placeholder {
    display: none !important;
}

@media (max-width: 991px) and (min-width: 768px) {

    #links .wrapper,
    .footer__links--image {
        width: 180px;
    }
}


@media (max-width: 767px) {
    .card-grid-heading .card-block h1 {
        font-size: 25px;
    }

    .no-account {
        margin-top: 16px;
    }
}

@media (max-width: 575px) {

    .product-line-grid-left {
        width: 124px;
        min-height: 124px;

    }

    .product-line-grid-left img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: contain;
    }

    .cart-grid-body .cart-overview {
        border: none;
    }

    .product-line-grid {
        padding: 3px;
        margin-bottom: 30px;
    }

    body#cart .cart-item {
        border: none;
        margin-top: -20px;
    }

    body#checkout .cart-item {
        border: none;
        margin-top: 0;
    }

    body#cart .cart-detailed-totals {
        padding: 0;
        border: none;
        margin-top: -62px;
    }

    /* Annuler sur la page checkout */
    body#checkout .cart-detailed-totals {
        margin-top: 0 !important;
    }

    .cart-grid-right-bottom {
        padding: 0;
        border: none;
    }

    .card-block.checkout .btn-primary {
        font-size: 18px;
    }

    .block-promo .promo-input {
        margin-right: 25px;
        width: auto;
    }

    .cart-detailed-totals>.card-block,
    .cart-detailed-totals>.block-promo {
        max-width: 95%;
    }

    .footer-top .block_newsletter {
        padding: 0 10px;
    }

    #cart .cart-grid-body .category-products {
        padding: 9px;
        top: -33px;
    }

    #cart .cart-grid-body .category-products .swiper {
        max-width: 100%;
    }
}

.hidden {
    display: none;
}

.password-strength-feedback {
    display: none !important;
}

/* page register */

.page-registration .page-header {
    text-align: center;
    margin-bottom: 1.563rem;
}

.page-registration #content .register-form {
    padding: 0 16px 16px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .page-registration #content .register-form {
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
    }
}

.input-group .input-group-btn>.btn[data-action="show-password"] {
    background: transparent;
    position: absolute;
    bottom: 8px;
    right: 0;
    color: #02184b;
    padding: 0;
    height: auto;
    z-index: 3;
}

.password-helper {
    font-size: 12px;

    margin-top: 4px;
}

.password-helper .valid {
    color: #00c979;

    font-weight: 500;
}

.custom-checkbox input[type="checkbox"]:checked+span {
    background-color: #00c979;
    border-color: #00c979;
    color: #fff;
}

.register-form .form-control-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    border-radius: 3px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #0c2b72, #02184b) padding-box, linear-gradient(90deg, #0c2b72, #02184b) border-box;
    color: #fff;
    margin-top: 16px;
    width: 100%;
    text-transform: none;
}

.has-account {
    margin-top: 30px;
    text-align: center;
}

.font-small {
    font-size: 10px;
}

.font-small a {
    text-decoration: underline;
}

#customer-form .form-group.firstname,
#customer-form .form-group.lastname {
    width: calc(50% - 12px);
}

.form-group.firstname {
    width: calc(50% - 12px);
    margin-right: 12px;
    float: left;
}

.form-group.lastname {
    width: calc(50% - 12px);
    margin-left: 12px;
    display: inline-block;
}

body>img {
    display: none !important;
}


#plist_modal_variants .modal-body {
    overflow: hidden auto;

    flex-grow: 1;

    padding: 0;
}

#plist_modal_variants .modal-body {
    position: relative;
}


#plist_modal_variants {
    visibility: hidden;
    opacity: 0;
    display: block;
    overflow: hidden;
}

#plist_modal_variants.in {
    background: rgba(0, 0, 0, .5);
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}

#plist_modal_variants .modal-content {
    /* transform: translateX(100%); */
    width: 450px;
    right: 0;
    left: auto;
    transition: all .4s;
    border: none;
    border-radius: 0;
    height: 100%;
}

#plist_modal_variants .modal-title {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

#plist_modal_variants.in .modal-content {
    /* transform: translateX(0); */
}

#plist_modal_variants .modal-body {}

#plist_modal_variants ul li {
    float: unset !important;
}

#plist_modal_variants ul li label {
    text-align: left;
    display: block;
    width: 100%;
}

@media (hover: hover) {
    #plist_modal_variants ul li label:hover {
        background-color: #f8f5f2;
    }
}

#plist_modal_variants ul li label:active {
    background-color: #f8f5f2;
}

#plist_modal_variants ul li label span {
    display: inline-block;
    border: none;
    padding: 9px 16px;
    box-shadow: unset;
    font-size: 1.25rem;
    font-weight: 400;
    background: none;
}

#plist_modal_variants .control-label,
#plist_modal_variants .product-meta {
    display: none;
}

#plist_modal_variants ul li.sold-out .radio-label,
.product-variants>.product-variants-item .sold-out .radio-label {
    position: relative;
    color: #b6b9ba;
}

#plist_modal_variants ul li.sold-out .radio-label:before,
.product-variants>.product-variants-item .sold-out .radio-label:before {
    background: #b6b9ba;
}

#plist_modal_variants .addToCartFormWrapper .attributes-available {
    display: block;
}

#plist_modal_variants ul li label {
    display: flex;
    margin-bottom: -2px;
}

#plist_modal_variants .product_thumbnail-cover {
    display: none;
}

@media (max-width: 900px) {
    #plist_modal_variants {
        bottom: 0;
        min-height: unset;
        height: 100vh;
        height: 100dvh;
        top: auto;
    }

    #plist_modal_variants .modal-dialog {
        max-width: 100vw;
        height: auto;
        position: absolute;
        bottom: 0;
    }

    #plist_modal_variants.in .modal-content {
        height: auto;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    #plist_modal_variants {
        background-color: #ffffff00;
    }

    #plist_modal_variants .addToCartFormWrapper {
        display: block !important;
    }

    #plist_modal_variants .modal-content {
        width: 100%;
        transform: translateY(100%);
    }

    #plist_modal_variants.in .modal-content {
        transform: translateY(0);
    }

    .blockcart__product {
        display: none;
    }

    .blockcart__top>hr {
        display: none;
    }
}

#backToTop.back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    z-index: 99;
    cursor: pointer;

    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;

    background-color: #02184b;
    color: #fff;

    border: none !important;
    outline: none !important;

    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

#backToTop.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#backToTop.back-to-top i {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.25;
}

#checkout #backToTop.back-to-top {
    background-color: var(--brown-color);
}

.product-description .leo-bt-cart {
    display: none;
}

.top-header-sticky {
    /* padding-top: 50px; */
}



#blockcart-modal .cart-content .cart-content-btn {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 12px 12px 24px;
    background-color: #f8f5f2;
    margin: 0;
    width: 100%;
}

.blockcart__bottom {
    padding-bottom: 84px;
}

@media (max-width: 900px) {
    #blockcart-modal .cart-content .cart-content-btn {
        background-color: #fff;
    }
}

/* Corriger les images écrasées sur les pages catégories */
#category .product-miniature .thumbnail-container .product-thumbnail {
    height: auto !important;
    /* Annuler le calc(100% - 70px) */
}

#category .product-miniature .thumbnail-container {
    height: auto !important;
}

#category .product-miniature .thumbnail-container img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
}

/* Cacher la ligne droite et garder seulement la ligne recourbée */
.thumbnail-container .product-price-and-shipping .regular-price {
    text-decoration: none !important;
}

/* Afficher SEULEMENT la ligne droite dans le panier */
#cart .thumbnail-container .product-price-and-shipping .regular-price {
    text-decoration: line-through !important;
}

/* Cacher la ligne courbée dans le panier */
#cart .thumbnail-container .product-price-and-shipping .regular-price::before {
    display: none !important;
}

.page-header h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .page-header h1 {
        font-size: 1.563rem;
        margin-bottom: 10px;
    }
}

.products-section-title {
    font-size: 25px;
    /* Votre taille souhaitée */
    margin-left: 22px;
}

@media (max-width: 900px) {
    .products-section-title {
        font-size: 20px;
        /* Taille sur mobile */
        margin-bottom: 16px;
        margin-left: 0;
    }
}


.cart-wishlist-tab {
    margin-bottom: 1.9rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.cart-wishlist-tab>a {
    font-weight: 400;
    opacity: 0.5;
}

.cart-wishlist-tab>span {
    border-bottom: 1px solid #02184b;
}

@media (max-width: 767px) {
    .cart-wishlist-tab {
        margin-bottom: 1rem;
    }
}

.offcanvas-backdrop.search-filters-backdrop {
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
}

.offcanvas-backdrop.search-filters-backdrop.show {
    opacity: 0.5;
}

#search_filters_wrapper {
    width: min(450px, 100vw);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1045;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
}

#search_filters_wrapper.show {
    transform: none;
    opacity: 1;
    visibility: visible;
}

body.search-filters-offcanvas-open {
    overflow: hidden;
    padding-right: 12px;
}

#search_filters_wrapper #search_filter_controls {
    margin-bottom: 0;
    padding: 8px 16px;
    text-align: center;
}

#search_filters_wrapper #search_filter_controls .search-filter-controls-head::before {
    content: "";
}

#search_filters_wrapper #search_filter_controls .search-filter-controls-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

#search_filters_wrapper #search_filter_controls .search-filter-controls-title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #02184b;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}

#search_filters_wrapper #search_filter_controls .search-filter-controls-count {
    color: #02184b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

#search_filters_wrapper #search_filter_controls .js-search-filters-close {
    margin: 0;
    border: 0;
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f5f2;
    color: #02184b;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#search_filters_wrapper #search_filter_controls .js-search-filters-close i {
    font-size: 18px;
    line-height: 1;
}

#search_filters_wrapper #search_filter_controls .search-filter-controls-bottom {
    margin-top: 4px;
    display: flex;
    justify-content: flex-end;
}

#search_filters_wrapper #search_filter_controls #_mobile_search_filters_clear_all .hidden-sm-down {
    display: block !important;
}

#search_filters_wrapper #search_filter_controls #_mobile_search_filters_clear_all .clear-all-wrapper {
    margin: 0;
}

#search_filters_wrapper #search_filter_controls #_mobile_search_filters_clear_all .js-search-filters-clear-all {
    padding: 0;
    border: 0;
    background: none;
    color: #02184b;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    text-decoration: underline;
    margin: 0;
}

#search_filters_wrapper #search_filter_controls #_mobile_search_filters_clear_all .js-search-filters-clear-all i {
    display: none;
}

#search_filters #_desktop_search_filters_clear_all {
    display: none !important;
}

#search_filters_wrapper #search_filters {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

#search_filters_wrapper .search-filter-actions {
    flex: 0 0 auto;
    padding: 12px 16px 16px;
    background-color: #fff;
}

#search_filters_wrapper .search-filter-actions .js-search-filters-apply {
    width: 100%;
    padding: 10px 24px;
    border: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #0c2b72, #02184b) padding-box, linear-gradient(90deg, #0c2b72, #02184b) border-box;
    color: #fff;
    font-size: 17.5px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
}

#search_filters .facet .collapse.js-facet-collapsible {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow: auto;
}

#search_filters .facet .collapse.js-facet-collapsible.is-expanded {
    overflow: visible;
    flex-wrap: wrap;
}

#search_filters .facet .collapse.js-facet-collapsible>li {
    flex: 0 0 auto;
}

#search_filters .facet .facet-see-more {
    margin: 8px 0 12px;
    padding: 0;
    border: 0;
    background: none;
    color: #02184b;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: underline;
    outline: none !important;
    border: none !important;
    float: right;
}

@media (max-width: 767px) {
    #search_filters_wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-height: 75vh;
        top: auto;
        transform: translateY(100%);
        border-radius: 15px 15px 0 0;
    }
}


#banner-head {
    background-color: var(--banner-head-background);
    margin-top: 8px;
}

@media (max-width: 767px) {
    #banner-head {
        margin-top: 10px;
    }
}

#banner-head .banner-wrapper {
    padding: 8px 12px;
    color: #fff;
    line-height: 1.25;
    cursor: pointer;
}

#banner-head .banner-wrapper a {
    color: #fff;
}

#banner-head .banner-wrapper>* {
    margin: 0 1rem;
}

#banner-head .banner-wrapper a.btn {
    font-size: 12px;
    padding: 8px 16px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    white-space: nowrap;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 50px;
}

#banner-head .banner-wrapper a.btn:hover {
    background-color: #fff;
    color: #02184b;
}

@media (max-width: 767px) {
    #banner-head .banner-wrapper {
        font-size: 12px;
    }

    #banner-head .banner-wrapper a {
        text-decoration: underline;
    }

}

@media (min-width: 992px) {

    /* Bloc gauche — produits du panier */
    #cart .cart-grid-body.col-lg-6 {
        width: 51.2%;
    }

    /* Bloc droit — cart summary */
    #cart .cart-grid-right.col-lg-6 {
        width: 49.55%;
        margin-left: -14px;
    }
}

/* image slide product item */
.plist-product-carousel .products {
    flex-wrap: nowrap !important;
}

.plist-product-carousel .swiper-slide {
    width: 100% !important;
}

.plist-product-carousel .icon {
    color: #02184b;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .plist-product-carousel .icon {
        display: none;
    }
}

.plist-product-carousel .swiper-pagination-bullet {
    background-color: #b6b9ba !important;
    border-radius: 50% !important;
    width: 6px !important;
    height: 6px !important;
    margin: 0 4px !important;
    opacity: 0.4 !important;
}

.plist-product-carousel .swiper-pagination-bullet-active,
.gallery-wrap .swiper-pagination-bullet-active {
    background-color: #b6b9ba !important;
    opacity: 1 !important;
}

.plist-product-carousel .swiper-pagination-bullet-active-prev,
.plist-product-carousel .swiper-pagination-bullet-active-next {
    opacity: 0.7 !important;
}

.plist-product-carousel .swiper-pagination-bullet-active-prev-prev,
.plist-product-carousel .swiper-pagination-bullet-active-next-next {
    opacity: 0.4 !important;
}

.plist-product-carousel .products {
    margin: 0px;
    justify-content: left !important;
}

.plist-product-carousel .swiper-button-next,
.plist-product-carousel .swiper-button-prev {
    height: 100%;
    top: 0 !important;
    margin-top: 0 !important;
}

@media (min-width: 1200px) {
    .plist-product-carousel .swiper-pagination {
        display: none;
    }
}

@media (max-width: 1200px) {
    .plist-product-carousel .swiper-button-next,
    .plist-product-carousel .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    #header .header-top {
        padding-bottom: 5px;
    }
}

/* filter scroll */
/*#content-wrapper #products {
    position: relative;
}
#content-wrapper #js-product-list-top.scroll {
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 999;
}*/

.block-promo .promo-code {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

.block-promo .promo-input {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 0% !important;
    min-width: 0 !important;
}


#js-product-list-top {
    position: sticky;
    top: 71px;
    z-index: 11;
    background: #fff;
}

@media (min-width: 768px) {

    .plist-product-carousel .swiper-button-next,
    .plist-product-carousel .swiper-button-prev {
        opacity: 0;
        visibility: hidden;
        transition: 0.35s all;
    }

    .thumbnail-container .thumbnail-top:hover .plist-product-carousel .swiper-button-next,
    .thumbnail-container .thumbnail-top:hover .plist-product-carousel .swiper-button-prev {
        opacity: 1;
        visibility: visible;
    }

}

@media (max-width: 767px) {
    #plist_modal_variants .variantsProductWrapper {
        max-height: 303px;
        overflow: hidden auto;
        margin: 12px 0px 0px;
    }

    #modal_variants .product-variants {
        max-height: 312px;
        overflow: hidden auto;
        margin: 3px 0px 0px 0px;
    }

    #js-product-list-top {
        top: 61px;
    }
}

@media (max-width: 1024px) {
    .block_newsletter {
        position: relative;
    }

    .block_newsletter::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.25);
        z-index: 1;
        pointer-events: none;
    }

    .block-newsletter-top,
    .block-newsletter-bottom,
    .block-newletter-title,
    #block-newsletter-label,
    #footer .block-newsletter-bottom p {
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 900px) {
    #cart-subtotal-products .label {
        font-size: 14px;
    }
}


.thumb-wrapper:not(.swiper-loaded) .thumb-prev,
.thumb-wrapper:not(.swiper-loaded) .thumb-next {
    opacity: 0;
    visibility: hidden;
}

.thumb-wrapper .swiper:not(.swiper-initialized) {
    opacity: 0;
    visibility: hidden;
}

.empty-cart-content {
    text-align: center;
    max-width: 500px;
    margin-top: 3rem;
    margin-bottom: 5rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 900px) {
    .empty-cart-content {
        text-align: center;
        max-width: 500px;
        margin-top: 1.5rem;
        margin-bottom: 5rem;
        width: 100%;
    }
}

.empty-cart-content .icon {
    font-size: 56px;
}

.empty-cart-content p {
    margin: 0.5rem 0;
}

.empty-cart-content a {
    margin-top: 1rem;
    background: linear-gradient(90deg, #0c2b72, #02184b) padding-box, linear-gradient(90deg, #0c2b72, #02184b) border-box;
    border: 2px solid transparent;
    color: #fff;
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: none;
}

.empty-cart-content a:hover {
    background: linear-gradient(90deg, #02184b, #02184b) padding-box, linear-gradient(90deg, #02184b, #02184b) border-box;
}

.home-product-2 {
    margin-top: 39px;
    padding-top: 33px;
    margin-left: 12px;
    margin-right: 12px;
    position: relative;
}


#mywishlist .home-product-2 {
    margin-top: 39px;
    padding-top: 0;
    margin-left: -12px;
    margin-right: -12px;
    position: relative;
}

@media (min-width: 1025px) {
    .product-carousel .swiper {
        width: 88%;
        margin: 0 auto;
    }
}


.product-carousel {
    position: relative;
}

.product-carousel .swiper-navigation-icon {
    display: none;
}

.home-product-2 .elementor-heading-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-color);
    margin-bottom: 16px;
    max-width: 88%;
    margin-left: auto;
    margin-right: auto;
}

.home-product-2 .product-carousel .swiper-slide {
    width: 244px
}

.box__category--carousel .swiper-navigation>div,
.product-carousel .swiper-button-next,
.product-carousel .swiper-button-prev,
.box__sport .swiper-navigation>div {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #02184b;
    box-shadow: 0 0 4px rgba(0, 0, 0, .16);
    border-radius: 50%;
    transform: translateY(-90%);

}

@media (max-width: 900px) {

    .box__category--carousel .swiper-navigation>div,
    .product-carousel .swiper-button-next,
    .product-carousel .swiper-button-prev,
    .box__sport .swiper-navigation>div {
        display: none;
    }
}

.box__category--carousel .swiper-navigation .icon,
.product-carousel .swiper-button-next .icon,
.product-carousel .swiper-button-prev .icon,
.box__sport .swiper-navigation .icon {
    color: #02184b;
    font-size: 1rem;
}

@media (max-width: 900px) {

    .box__category--carousel .swiper-navigation .icon,
    .product-carousel .swiper-button-next .icon,
    .product-carousel .swiper-button-prev .icon,
    .box__sport .swiper-navigation .icon {
        display: none;
    }
}

@media (max-width: 1024px) {
    .home-product-2 .elementor-heading-title {
        max-width: 100%;
    }

    .home-product-2 .product-carousel .swiper-slide {
        width: 236px;
    }
}

@media (max-width: 767px) {
    .home-product-2 .elementor-heading-title {
        font-size: 20px;
    }
}

.cart-grid .home-product-2 {
    margin-bottom: 50px;
}

#cart .home-product-2 {
    margin-top: -1rem;
    padding-top: 1rem;
    margin-left: 0;
    margin-right: 0;
    position: relative;
}

@media (max-width: 900px) {
    #cart .home-product-2 {
        margin-top: -3.5rem;
    }
}

@media (max-width: 1024px) {
    #cart .home-product-2 .product-carousel .swiper-slide {
        width: 250px;
    }
}

@media (max-width: 600px) {
    #cart .home-product-2 .product-flags li.product-flag {
        font-size: 12px;
    }
}

/* ============================================
   MODALS - SIZE SELECTOR (product list page)
   #plist_modal_variants: modal that opens when 
   clicking size on product listing pages
   ============================================ */

/* Modal content when open - commented out by dev, may fix fast-close if uncommented */
#plist_modal_variants.in .modal-content {
    /* transform: none; */
    /* transition: 0.35s all ease; */
}

/* Desktop: modal slides in from the right, full height, max 450px wide */
#plist_modal_variants .modal-dialog {
    margin: 0 0 0 auto;
    max-height: 100svh;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    height: 100svh;
}

/* Desktop: initial position (hidden off-screen to the right) */
#plist_modal_variants.modal.popup .modal-dialog {
    transform: translate(100%, 0);
    transition: all 0.35s ease-in-out;
}

/* Desktop: open position (slides in to center) */
#plist_modal_variants.modal.in .modal-dialog {
    transform: translate(0, 0);
    transition: all 0.35s ease-in-out;
}

/* Mobile: modal slides up from bottom, max 90% screen height */
@media (max-width: 767px) {
    #plist_modal_variants .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: auto;
        max-height: 90svh;
    }

    /* Mobile: initial position (hidden off-screen at bottom) */
    #plist_modal_variants.modal.popup .modal-dialog {
        transform: translate(0%, 100%);
        transition: all 0.35s ease-in-out;
    }

    /* Mobile: open position (slides up to view) */
    #plist_modal_variants.modal.in .modal-dialog {
        transform: translate(0, 0);
        transition: all 0.35s ease-in-out;
    }
}


/* ============================================
   MODALS - ADD TO CART (blockcart)
   #blockcart-modal: modal that appears when 
   clicking "Add to cart" on any product
   ============================================ */

/* Mobile (<900px): modal slides up from bottom as a bottom sheet */
@media (max-width: 900px) {

    /* Prevent background scroll when modal is open */
    .modal-open #modal_variants,
    #blockcart-modal {
        overflow-y: hidden;
    }

    /* Full screen overlay dialog */
    #blockcart-modal .modal-dialog {
        max-height: 100%;
        margin: 0;
        display: flex;
        align-items: flex-end;
        height: 100%;
        width: 100%;
        max-width: 100vw;
    }

    /* Bottom sheet style content, max 75% screen height */
    #blockcart-modal .modal-content {
        height: auto;
        max-height: 75vh;
        max-height: 75svh;
        max-height: calc(100vh - 100px);
        border-radius: 16px 16px 0 0;
        overflow: hidden;
        width: 100%;
    }

    #blockcart-modal .modal-body {
        padding: 1rem 1rem 10px;
    }

    /* Hide scrollbar on modal body */
    #blockcart-modal .modal-body::-webkit-scrollbar {
        display: none;
    }

    /* Mobile: initial position (hidden below screen) - !important overrides desktop rule */
    #blockcart-modal.modal.fade .modal-dialog {
        transform: translate(0, 100%) !important;
        transition: all 0.35s ease-in-out;
    }

    /* Mobile: open position (slides up) - !important overrides desktop rule */
    #blockcart-modal.modal.in .modal-dialog {
        transform: translate(0, 0) !important;
        transition: all 0.35s ease-in-out;
    }
}

/* Desktop: modal slides in from the right */
#blockcart-modal.modal.fade .modal-dialog {
    transform: translate(100%, 0);
    transition: all 0.35s ease-in-out;
}

/* Desktop: open position */
#blockcart-modal.modal.in .modal-dialog {
    transform: translate(0, 0);
    transition: all 0.35s ease-in-out;
}


/* ============================================
   MODALS - SIZE SELECTOR (product detail page)
   #modal_variants: modal that opens when 
   clicking size on product detail pages
   ============================================ */

/* Dark overlay background */
#modal_variants {
    background-color: rgba(0, 0, 0, .5);
}

/* Desktop: initial position (hidden off-screen to the right) */
#modal_variants.modal .modal-dialog {
    transform: translateX(100%);
    transition: all 0.35s ease-in-out;
}

/* Desktop: open position */
#modal_variants.modal.in .modal-dialog {
    transform: translateX(0);
    transition: all 0.35s ease-in-out;
}

/* Mobile: slides up from bottom */
@media (max-width: 767px) {

    /* Mobile: initial position (hidden below screen) */
    #modal_variants.modal .modal-dialog {
        transform: translateY(100%);
        transition: all 0.35s ease-in-out;
    }

    /* Mobile: open position */
    #modal_variants.modal.in .modal-dialog {
        transform: translateY(0);
        transition: all 0.35s ease-in-out;
    }
}

.box__banner--wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-top: 29px;
}

.box__banner--wrapper img {
    max-width: 100%;
    min-height: 240px;
    height: auto;
    width: 100%;
    object-fit: cover;
}

.box__banner--wrapper span {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    background-color: #02124A;
    border-radius: 50px 50px;
    color: #fff;
    font-size: 1rem;
    padding: .5rem 1rem;
    border: 2px solid #02124A;
    line-height: 1.5;
}

.box__banner--wrapper span:hover {
    background-color: transparent;
    color: #fff;
}

body#index #header .header-top:not(.is-sticky) #_desktop_cart .btn__icon span:not(.cart-products-count) {
    color: #ffffff;
}

@media (max-width: 767px) {

    #plist_modal_variants .modal-header,
    #modal_variants .modal-header {
        border-bottom: 1px solid #f0f0f0;
    }
}

#modal_variants,
#plist_modal_variants {
    background-color: transparent !important;
}

#modal_variants.fade,
#plist_modal_variants.fade {
    opacity: 1 !important;
    transition: none !important;
}

#modal_variants::before,
#plist_modal_variants::before {
    content: '';
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
    z-index: -1;
}

#modal_variants.in::before,
#plist_modal_variants.in::before {
    opacity: 1;
}

#modal_variants .modal-dialog,
#plist_modal_variants .modal-dialog {
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
    transform: translateY(-20px);
    opacity: 0;
}

#modal_variants.in .modal-dialog,
#plist_modal_variants.in .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

#modal_variants .modal-content,
#plist_modal_variants .modal-content {
    background-color: #ffffff !important;
}

/*Loader Cart Summary Totals*/
.cart-item {
    position: relative;
}

.cart-item--loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
    border-radius: inherit;
}

.cart-item--loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--text-color);
    border-right-color: var(--text-color);
    border-bottom-color: var(--text-color);
    border-radius: 50%;
    animation: cartSpinner 0.7s linear infinite;
    z-index: 3;
}

.cart-detailed-totals>.block-promo,
#cart .card-block.checkout .btn-primary {
    position: relative;
    z-index: 4;
}

.cart-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 240, 240);
    z-index: 2;
}

#cart .cart-grid-body .category-products.cart-item--loading::after {
    display: none;
}

#cart .cart-grid-body .category-products.cart-item--loading .swiper-button-next,
#cart .cart-grid-body .category-products.cart-item--loading .swiper-button-prev {
    visibility: hidden;
}

#cart .cart-grid-body .category-products.cart-item--loading~.swiper-pagination *,
#cart .cart-grid-body .category-products.cart-item--loading .swiper-pagination * {
    box-shadow: none !important;
    visibility: hidden !important;
    background: none !important;
    transition: none !important;
}


@keyframes cartSpinner {
    to {
        transform: rotate(360deg);
    }
}

#mywishlist>h1 {
    font-size: 40px;
    line-height: 1;
    padding: 14px 0 17px;
}

@media (max-width: 900px) {
  #mywishlist > h1 {
    font-size: 1.563rem;
  }
}

#mywishlist .no-product {
    padding: 60px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
  #mywishlist .no-product {
    padding: 22px 0;
  }
}

#mywishlist .no-product i {
    font-size: 46px;
}

#mywishlist .no-product h3 {
    font-size: 25px;
    margin: 0.5rem auto;
    margin-bottom: 18px;
}

body.modal-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px);
}

body.modal-open #header,
body.modal-open .header-top.is-sticky {
    padding-right: var(--scrollbar-width, 0px) !important;
}

body.modal-open .offcanvas,
body.modal-open #backToTop.back-to-top {
    margin-right: var(--scrollbar-width, 0px);
}

.checkout-area-2>.checkout-area-3:first-child {
    min-height: 100vh;
}

.thumbnail-container .leo-wishlist-bt-loading {
    display: none !important;
}
.thumbnail-container .leo-wishlist-bt-content {
    display: block !important;
}

.thumbnail-container .leo-wishlist-button.active .icon-heart {
    animation: wishlist-heart-wiggle .45s ease-in-out 50ms forwards, wishlist-heart-zoom .2s;
}
.leoCartAttribute .stock.out-stock, .leoCartAttribute .stock.in-stock {
  display: none;
}
.leoCartAttribute .noti-qty {
  display: none;
}
.variantsProductWrapper .input-container .noti-qty {
  position: absolute;
  top: 15px;
  left: 72px;
  cursor: pointer;
  color: #b6b9ba;
}
.variantsProductWrapper .product-variants-item ul li label {
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: -2px;
}
.variantsProductWrapper .input-container .stock.out-stock {
  color: #b6b9ba;
  font-size: 14px !important;
}
.variantsProductWrapper .input-container .stock {
  margin-left: auto;
  margin-right: 20px;
}
@keyframes wishlist-heart-wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes wishlist-heart-zoom {
    25% {
        font-size: 33px;
    }
    50% {
        font-size: 36px;
    }
    75% {
        font-size: 33px;
    }
}

#mywishlist .product-grid .products {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

@media (max-width: 1199px) {
    #mywishlist .product-grid .products {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767px) {
    #mywishlist .product-grid .products {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    #mywishlist .product-grid .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ap-btn-wishlist.active .icon-heart::before {
    content: "\e90b";
}
#subcategories {
    margin: 0;
}

@media (min-width: 900px) {
    #subcategories {
        margin: 0 10%;
    }
}
#subcategories .subcategories-list{
    width: 88%;
}
@media (max-width: 900px) {
    #subcategories .subcategories-list{
    width: 100%;
}
}
#subcategories .swiper-button-next, 
#subcategories .swiper-button-prev {
    display: none;
}

@media (min-width: 900px) {
    #subcategories .swiper-button-next, 
    #subcategories .swiper-button-prev {
        display: flex;
        border: 1px solid #0c2b72;
        padding: 9px;
        border-radius: 34px;
        width: 40px;
        height: 40px;
    }
}

#subcategories svg path {
    fill: #0c2b72;
}

/*Manh leotheme - Begin: variant popup*/
.product-variants.js-product-variants .input-container .stock {
  margin-left: auto;
  margin-right: 20px;
}
.product-variants.js-product-variants .input-container .stock.in-stock {
  color: #e9823d;
}
.product-variants.js-product-variants .input-container .stock.out-stock {
  color: #b6b9ba;
}
.input-container label.sold-out {
  pointer-events: none;
}
.input-container label.sold-out .input-radio, .input-container label.sold-out .radio-label::before {
  display: none;
}
.input-container label.sold-out .radio-label {
  min-width: 72px;
}
.input-container label.sold-out .radio-label, .noti-qty, .noti-qty i {
  color: #b6b9ba !important;
}
.input-container .noti-qty {
  position: absolute;
  top: 15px;
  left: 72px;
  cursor: pointer;
}
.input-container .noti-qty i:not(.icon) {
  text-decoration: underline;
}
#modal_noti_qty .modal-dialog {
  transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
  transform: translateY(-20px);
  opacity: 0;
}

#modal_noti_qty.modal .modal-dialog {
  transform: translateX(100%);
  transition: all 0.35s ease-in-out;
}
#modal_noti_qty.in .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}
#modal_noti_qty.modal.in .modal-dialog {
  transform: translateX(0);
  transition: all 0.35s ease-in-out;
}
#modal_noti_qty .js-mailalert {
  padding: 15px;
}
#modal_noti_qty .js-mailalert-add {
  width: 100%;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #0c2b72, #02184b) padding-box, linear-gradient(90deg, #0c2b72, #02184b) border-box;
  border-radius: 4px;
  font-weight: 400;
}
#modal_noti_qty .description {
  font-size: 13px;
}

/*Manh leotheme - End: variant popup*/

#menu .placeholder {
    background-color: #b6b9ba !important;
    opacity: 1;
}

#menu-skeleton.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

#menu-skeleton .pb-2 {
    padding-bottom: 0.5rem !important;
}

#menu-skeleton .row.mx-0 {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 15px;
}
#menu-skeleton .row.mx-0 .col-1 {
  flex: 0 0 20px !important;
  width: 20px !important;
}
#menu-skeleton .row.mx-0 .col-11 {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0;
}
#menu-skeleton .row.mx-0 .col-11 .placeholder {
  display: block !important;
  width: 100% !important;
}

#menu-skeleton .row.mx-0 .col-11 .placeholder.w-50 {
  width: 50% !important;
}
#menu-skeleton .row.mx-0 .col-11 .placeholder.w-25 {
  width: 25% !important;
}

#menu-skeleton .row.mx-0.py-2 {
  padding-top: 10px !important;
  padding-bottom: 5px !important;
}
/* ===== SKELETON BLOCKCART ===== */
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-block {
  background: linear-gradient(90deg, #cccccc 25%, #b8b8b8 50%, #cccccc 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 4px;
}

.skeleton-img-block {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.skeleton-brand-block { height: 11px; width: 55%; }
.skeleton-title-block { height: 13px; width: 80%; }
.skeleton-price-block { height: 16px; width: 40%; }

.random-products-skeleton {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 8px 0;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: .2;
  /* border-radius: 4px; */
}
.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}
@keyframes placeholder-glow {
  50% { opacity: .05; }
}
.rounded-circle { border-radius: 50% !important; }
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.menu-placeholder { color: #6c757d; }

.plist-product-carousel .swiper .swiper-lazy-preloader {
  border-color: transparent #02184b #02184b;
  border-width: 1px;
}

.plist-product-carousel .swiper-slide img:not([fetchpriority="high"]) {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.plist-product-carousel .swiper-slide img.img-fade-in {
  opacity: 1;
  transform: scale(1);
}