
:root {
    --color-white: #fff;
    --color-black: #000;
    --color-blue: #272F4F;
    --color-blue-light: #4066A7;
    --color-sky: rgba(106, 197, 209, 1);
    --color-grey: #f1f5f9;
    --color-red: #B81920;
    --color-yellow: #FDFAE4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;

    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.5;
    font-style: normal;
}

strong {
    font-weight: 550;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

html, body {
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 1080px) {
    body {
        padding-top: 80px;
    }
}

.page {
}

.btn {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 12px 25px;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s;
    font-size: clamp(14px, 2vw, 20px);
}

.btn:hover {
    text-decoration: none;
    background-color: var(--color-red) !important;
}

/* Formulaires */
.wpcf7 {
    width: 100%;
}

form {
    width: 100%;
}

form .form__row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 16px 0 0 0;
}

form .form__column {
    width: calc(50% - 16px);
}

form .form__actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 8px 0 0 0;
}

form .form__group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

form .form__group > span {
    width: 100%;
}

form .form__group input {
    width: 100%;
    border-radius: 3px;
    outline: none;
    border: 1px solid #e0e0e0;
    padding: 0 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    appearance: none;
    line-height: 42px;
}

form .form__group textarea {
    width: 100%;
    border-radius: 3px;
    outline: none;
    border: 1px solid #e0e0e0;
    padding: 0 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    appearance: none;
    line-height: 42px;
    resize: vertical;
}

form .form__checkbox {
    padding-left: 24px;
    cursor: pointer;
}

form .form__acceptance {
    font-size: 12px;
}

form .form__checkbox a {
    color: var(--color-blue);
    text-decoration: underline;
}

form .form__checkbox input {
    display: none;
}

form .form__checkbox > span::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: 4px;
    left: -24px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    background: var(--color-white);
}

form .form__checkbox input:checked + span::before {
    border: 1px solid var(--color-blue);
}

form .form__checkbox input:checked + span::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 6px;
    left: -22px;
    border-radius: 1px;
    background: var(--color-blue);
    border: 1px solid var(--color-blue);
}

form .form__actions .btn {
    width: 100%;
    margin: 0;
}


.form .dropdown {
    width: 100%;
}

.form .select-display {
    display: none;
}

.form .dropdown .dropdown__button {
    background: var(--color-white);
    width: 100%;
    line-height: 65px;
    height: 65px;
    text-align: left;
    z-index: 100;
    padding: 0 clamp(15px, 2.5vw, 20px);;

    border: 1px solid rgba(128, 128, 128, 1);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
    color: var(--color-blue);
    cursor: pointer;
}

.form .dropdown .dropdown__button span {
    width: calc(100% - 50px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.form .dropdown.active .dropdown__button svg {
    transform: rotate(180deg);
}

.form .dropdown .dropdown__button svg {
    width: 40px;
    height: 40px;
}

.form .dropdown .dropdown__content {
    display: none;
}

.form .dropdown.active .dropdown__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;

    background: var(--color-grey);

    width: 100%;
    position: absolute;
    top: calc(100% - 10px);
    left: 0;


    padding: 20px 0 10px 0;

    z-index: 90;
}

.form .dropdown .dropdown__content .dropdown__item {
    width: 100%;
    text-align: left;
    padding: 0 clamp(15px, 2.5vw, 20px);;

    border: none;
    background: none;
    cursor: pointer;

    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.5;
    font-weight: 400;
}

.form .dropdown .dropdown__content .dropdown__item:hover {
    color: var(--color-blue);
    font-weight: 700;
}


/* Section */
.section {
    margin: 80px 0;
}

.section .section__header {
}

.section .section__title {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(24px, 3vw, 48px);
    line-height: 1.3;
    font-weight: 800;
    color: var(--color-blue);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
}

.section .section__title::after {
    content: '';
    width: 45px;
    height: 8px;
    position: absolute;
    bottom: 0;
    left: calc(50% - (45px / 2));
    background: var(--color-red);
}

.section .section__introduction,
.section .section__introduction p {
    font-size: clamp(16px, 2vw, 32px);
    line-height: 1.3;
    color: var(--color-black);
}

.section .section__introduction {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin: 16px auto 45px auto;
}

.section .section__footer {
    margin: 24px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media all and (max-width: 1080px) {
    .section .section__title::after {
        width: 35px;
        height: 6px;
        bottom: 0;
        left: calc(50% - (35px / 2));
    }
}

@media all and (max-width: 750px) {
    .section .section__title::after {
        width: 30px;
        height: 4px;
        bottom: 0;
        left: calc(50% - (30px / 2));
    }
}

/* Grids */
.grid {
}


/* Cards */
.card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px;
}

.card .card__image {
}

.card .card__title {
    width: 100%;
    text-align: center;
}

.card .card__description {
    width: 100%;
    text-align: center;
}

.card:hover {
}

.card .btn {
    margin: 16px 0 0 0;
}

/* Thumbnail - Catégory */
.card--category {
    padding: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.card--category .card__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    color: var(--color-black);
}

.card--category .card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

.card--category .card__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;

}

.card--category .card__content {
    width: 100%;
    padding: 26px 0 0 0;
}

.card--category .card__content .card__title {
    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    font-weight: 700;
}

.card--category:hover .card__content {
    bottom: 0;
    opacity: 1;
}

.card--category.card--more .card__content {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #6AC5D1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.card--category.card--more .card__title {
    color: var(--color-white);
    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    font-weight: 700;
}

.card--category.card--more:hover .card__link {
    color: var(--color-white);
}

/* Card - Product */

.card--product {
    width: calc(100% / 4 - 12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 0;
    color: var(--color-black);
}

.card--product:hover {
    text-decoration: none;
}

.card--product .card__content:hover .card__title {
    color: var(--color-red);
}


.card--product .card__content {
    width: 100%;
}

.card--product .card__title {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    margin: 15px 0 0 0;
}

.card--product .card__price {
    width: 100%;
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 1.3;
    margin: 10px 0 0 0;
}

.card--product .card__price bdi,
.card--product .card__price .woocommerce-Price-currencySymbol {
    font-weight: 700;
    font-size: clamp(20px, 3vw, 25px);
    line-height: 1.3;
}

.card--product .card__description {
    font-size: 14px;
    margin: 4px 0;
}

.card--product .card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--color-grey);
    border: 1px solid #F1EFEE;
    display: block;
    overflow: hidden;
}

.card--product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card--product strong {
    color: #111;
}

@media (max-width: 1080px) {
    .card--product {
        width: calc(100% / 3 - 11px);
    }
}

@media (max-width: 750px) {
    .card--product {
        width: calc(100% / 2 - 8px);
    }
}

@media (max-width: 450px) {
    .card--product {
        width: 100%;
    }
}

/* Pagination */
.fabulous-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 150px 0 215px 0;
    padding: 8px 0;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.current-fabulous-page-btn,
.fabulous-pagination .fabulous-page-btn {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    margin: 0 2px;
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 16px;
}

.fabulous-pagination .fabulous-page-btn:hover {
    cursor: pointer;
    text-decoration: underline;
}

.fabulous-pagination .dots {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
}

.current-fabulous-page-btn {
    color: var(--color-red);
    font-weight: 550;
}

/* Blocks CTA */
.cta {
    padding: 24px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cta .cta__text {
    width: 100%;
    text-align: center;
}

.cta .btn {
    margin: 16px 0 0 0;
}


/* Navigation */

.navigation {
    width: 100%;
    height: 250px;
    background: var(--color-blue);
    z-index: 999;
}

.navigation .navigation__responsive {
    display: none;
}

.navigation .navigation__container {
    width: 100%;
    margin: 0 auto;
    padding: 46px 15px 42px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation__logo {
    display: block;
    height: 100%;
}

.navigation__logo img {
    height: 100%;
    max-height: 160px;

}

.navigation .navigation__block {
    width: calc(100% - 130px);
}

.navigation .navigation__row {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navigation .navigation__row:nth-child(2) .navigation__column:nth-child(1) {
    width: calc(100% - 250px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation .navigation__row:nth-child(2) .navigation__column:nth-child(2) {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.navigation .navigation__list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 24px);
}

.navigation .navigation__list--right {
    justify-content: flex-end;
}

.navigation .navigation__list__item {
}

.navigation .navigation__link {
    display: block;
    padding: 16px 0;
    color: var(--color-white);
    font-size: clamp(14px, 1.3vw, 20px);
    line-height: 1.3;
    text-decoration: none;
}

.navigation .navigation__link::before {
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 8px;
    left: 0;
    background: var(--color-sky);
    transition: linear .15s;
}

.navigation .navigation__row:nth-child(2) .navigation__column:nth-child(1) .navigation__list:nth-child(1) .navigation__list__item:nth-child(1) .navigation__link {
    color: var(--color-sky);
}

.navigation .navigation__list__item:not(.navigation__list__item--catalogue).active > .navigation__link::before {
    width: 100%;
}

.navigation .navigation__list__item:not(.navigation__list__item--catalogue):hover > .navigation__link::before {
    width: 100%;
}

.navigation .navigation__link--cart {
}

.navigation .navigation__link--cart svg {
    width: 30px;
}

.navigation .navigation__link--search {
    background: none;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.navigation .navigation__link--search svg {
    width: 30px;
}

.navigation .navigation__link--account {
}

.navigation .navigation__link--account svg {
    width: 30px;
}

.navigation .navigation__link--catalogue {
    border: 1px solid var(--color-white);
    padding: 16px 16px;
    font-size: clamp(14px, 1.3vw, 20px);
    line-height: 1.3;
    transition: linear .15s;
}

.navigation .navigation__link--catalogue:hover {
    text-decoration: none;
    background: var(--color-white);
    color: var(--color-blue);
}

.navigation .navigation__dropdown {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.navigation .navigation__dropdown .navigation__icon {
    margin: 0 0 14px 8px;
}

.navigation .navigation__dropdown .navigation__icon svg {
    width: 16px;
}

.navigation .navigation__dropdown .navigation__icon svg * {
    fill: var(--color-white);
}

.navigation .navigation__submenu {
    display: none;
    position: absolute;
    background-color: var(--color-blue);
    list-style: none;
    margin: 0;
    padding: 0;
    top: 100%;
    left: 0;
    border-radius: 10px;
    overflow: hidden;
    min-width: 180px;
    z-index: 1000;
}

.navigation .navigation__submenu__item a {
    display: block;
    padding: 0.75em 1.25em;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-size: clamp(12px, 2.5vw, 16px);
    line-height: 1.3;
}

.navigation .navigation__submenu__item a:hover {
    background-color: var(--color-sky);
    color: var(--color-blue);
    font-weight: 700;
}

.navigation .navigation__dropdown:hover .navigation__submenu {
    display: block;
}

@media (max-width: 1080px) {
    .navigation {
        height: 80px;
        position: fixed;
        top: 0;
        left: 0;
    }

    .navigation .navigation__container {
        display: none;
    }

    .navigation .navigation__responsive {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px clamp(14px, 5%, 25px);
    }

    .navigation .navigation__list {
        gap: 0 16px;
        margin: 0 24px;
    }

    .navigation .navigation__column {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .navigation .btn--menu {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex-direction: row;
        background: none;
        padding: 0;
        cursor: pointer;
        border: none;
    }

    .navigation .btn--menu .bar {
        width: 100%;
        height: 3px;
        background: var(--color-white);
        border-radius: 3px;
        position: absolute;
        top: 0;
        left: 0;
        transition: linear .15s;
    }

    .navigation .btn--menu .bar:nth-child(1) {
    }

    .navigation .btn--menu .bar:nth-child(2) {
        top: 9px;
    }

    .navigation .btn--menu .bar:nth-child(3) {
        top: 18px;
    }

    .navigation .btn--menu .btn--title {
        font-size: 10px;
        text-transform: uppercase;
        width: 100%;
        text-align: center;
        line-height: 1.5;
        font-weight: 400;
        color: var(--color-white);
        display: block;
    }

    .navigation .btn--menu:hover {
        background: none !important;
    }

    .navigation .btn--menu:hover .bar {
        background: var(--color-red);
    }
}


.modal--menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: 9999;
    display: none;
}

.modal--menu.is-open {
    display: block;
}

.modal--menu .modal__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-blue);
    height: 80px;
    padding: 10px clamp(14px, 5%, 25px);
}

.modal--menu .modal__logo {
    height: 100%;
    display: block;
}

.modal--menu .modal__logo img {
    height: 100%;
}

.modal--menu .btn--close {
    width: 40px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    background: none;
    padding: 0;
    cursor: pointer;
    border: none;
}

.modal--menu .btn--close .bar {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    transition: linear .15s;

}

.modal--menu .btn--close .bar:nth-child(1) {
    transform: translate(0%, 12px) rotate(45deg);
}

.modal--menu .btn--close .bar:nth-child(2) {
    transform: translate(0%, 12px) rotate(-45deg);
}

.modal--menu .btn--close .btn--title {
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-white);
    display: block;
}

.modal--menu .btn--close:hover {
    background: none !important;
}

.modal--menu .btn--close:hover .bar {
    background: var(--color-red);
}

.modal--menu .modal__content {
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 50px 0 100px 0;
}

.modal--menu .modal__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0;
    flex-shrink: 0;
}

.modal--menu .modal__list__item {
    width: 100%;
    text-align: center;
}

.modal--menu .modal__list__item ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px 0;
}

.modal--menu .modal__link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.modal--menu .modal__subtitle {
    font-weight: 700;
    margin: 5px 0 5px 0;
    display: block;
}

.modal--menu .modal__list__item--dropdown {
    margin: 0 0 10px 0;
}

.modal--menu .modal__list__item--notices {
    margin-top: 12px;

}

.modal--menu .modal__list__item--notices .modal__link {
    font-size: 18px;
}

.modal--menu .modal__list__item--catalogue {
    margin: 15px 0;
}

.modal--menu .modal__list__item--catalogue .modal__link {
    color: var(--color-white);
    font-size: 20px;
    background: var(--color-red);
}

@media (max-width: 500px) {
    .modal--menu .modal__list__item--catalogue .modal__link {
        width: auto;
        display: inline-block;
    }
}


.modal--menu .network__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 0 0;
    flex-shrink: 0;
}

.modal--menu .network__list .network__item {
}

.modal--menu .network__list .network__item a {
    width: 32px;
    height: 32Px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: linear .15s;
}

.modal--menu .network__list .network__item a svg *:not(.path) {
    fill: var(--color-blue);
}

.modal--menu .network__list .network__item a svg .path {
    fill: var(--color-white);
}

.modal--menu .network__list .network__item a.network__link--linkedin svg {
    width: 24Px;
}

.modal--menu .network__list .network__item a.network__link--instagram svg {
    width: 25Px;
}

.modal--menu .network__list .network__item a.network__link--facebook svg {
    width: 25Px;
}

/* Popin Search */
.popin--search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popin--search.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 999;
}

.popin--search .popin__container {
    width: 100%;
    min-height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    /*padding: 20px clamp(16px, 5%, 70px) 0 clamp(16px, 5%, 70px);*/
}

.popin--search .popin__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px 0;
    min-height: 0;
    overflow: hidden;
}

.popin--search .popin__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:24px;
    padding: 10px clamp(16px, 5%, 70px);
    background:var(--color-blue);
}

.popin--search .popin__header .popin__logo {

}
.popin--search .popin__header .popin__logo img {
    max-height: 80px;
}
.popin--search .popin__actions {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap:16px;
    padding: 10px clamp(16px, 5%, 70px);
    margin: 0 0 40px 0;
    flex: 0 0 auto;
}
.popin--search .popin__counter {
    font-size: clamp(18px, 2.5vw, 20px);
    line-height: 1.3;
    color: var(--color-black);
    font-weight: 600;
    width: 100%;
    text-align: center;
}
.popin--search .form--search {
    width: 100%;
    max-width: 1015px;

}

.popin--search .form--search label {
    display: none;
}

.popin--search .form--search input {
    height: 50px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    border: none;
    padding: 0 101px 0 25px;
    font-size: clamp(18px, 2.5vw, 20px);
    line-height: 1.3;
}

.popin--search .form--search input::placeholder {
    font-size: clamp(18px, 2.5vw, 20px);
    line-height: 1.3;
}

.popin--search .form--search .btn--submit {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    border: none;
    background: var(--color-white);
    position: absolute;
    top: 0;
    right: 0;
    transition: linear .15s;
    cursor: pointer;
}

.popin--search .form--search .btn--submit svg * {
    fill: var(--color-blue);
    transition: linear .15s;
}

.popin--search .form--search .btn--submit:hover {
    background: var(--color-blue);
}

.popin--search .form--search .btn--submit:hover svg * {
    fill: var(--color-white);
}

.popin--search .btn--close {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: linear .15s;
    cursor: pointer;
    color:var(--color-blue);
    padding: 0;
    font-weight: 600;
    background:none;
}

.popin--search .btn--close svg {
    width: 22px;
    margin: 0 2px 0 0;
}

.popin--search .btn--close svg * {
    fill: var(--color-blue);
    transition: linear .15s;
}

.popin--search .btn--close:hover {
    background-color: transparent!important;
    text-decoration: underline;
}

.popin--search .btn--close:hover svg * {
    /*fill: var(--color-white);*/
}

.popin--search .results-list {
    width: 100%;
    list-style: none;
    padding: 0 0 24px 0;
    background: var(--color-white);
    border-radius: 6px;
    flex: 1 1 auto;
    height: 100px;
    overflow: auto;
}

.popin--search .results-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px clamp(16px, 5%, 70px);

    border-bottom: 1px solid #eee;
}

.popin--search .results-list a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popin--search .results-list a:hover {
    text-decoration: none;
}


.popin--search .results-list a:hover .title{
    text-decoration: underline;
}


.popin--search .results-list div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:24px;
}

.popin--search .results-list img {
    width: 100px;
    max-width: 25%;
    aspect-ratio: 1 / 1;
    object-fit: cover;

}

.popin--search .results-list .title {
    font-weight: bold;
    color: #252e38;
}

.popin--search .results-list::-webkit-scrollbar {
    width: 8px;
}

.popin--search .results-list::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 4px;
}

.popin--search .results-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Page footer */
.page-footer {
    background: var(--color-blue);
    padding: 32px 0 11px 0;
}

.page-footer .page-footer__container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page-footer .page-footer__column {
    padding-top: 22px;
}

.page-footer .page-footer__column:nth-child(1) {
    width: 30%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.page-footer__logo {
    margin: -22Px 26px 0 0;

    img {
        max-width: 113px;
    }
}

.page-footer__address {
    font-size: clamp(12px, 1.5vw, 16px);
    margin: 8px 0 0 0;
    color: var(--color-white);
}

.page-footer__address a {
    color: var(--color-white);
}

.page-footer .page-footer__column:nth-child(2) {
    width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.page-footer .page-footer__links__list {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 8px;
}

.page-footer .page-footer__links__item {
    width: 100%;
}

.page-footer .page-footer__links__link {
    width: 100%;
    text-align: left;
    color: var(--color-white);
    font-size: clamp(12px, 1.5vw, 16px);
    line-height: 1.3;
}

.page-footer .page-footer__column:nth-child(3) {
    width: 20%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}


.page-footer .page-footer__follow__title {
    width: 100%;
    font-size: clamp(12px, 1.5vw, 16px);
    line-height: 1.3;
    color: var(--color-white);
}

.page-footer .page-footer__follow__list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 0 0;
}

.page-footer .page-footer__follow__item {
}

.page-footer .page-footer__follow__link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-footer .page-footer__follow__link svg * {
}

.page-footer .page-footer__follow__link.btn-social--facebook svg {
}

.page-footer .page-footer__follow__link.btn-social--instagram svg {
}

.page-footer .page-footer__follow__link.btn-social--linkedin svg {
}

.page-footer .page-footer__row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 40px 0 0 0;
}

.page-footer .page-footer__copyrights {
    width: 100%;
    text-align: right;
    font-size: clamp(12px, 1.5vw, 16px);
    line-height: 1.3;
    color: var(--color-white);
}

.page-footer .page-footer__copyrights a {
    color: var(--color-white);
}

@media (max-width: 1250px) {
    .page-footer .page-footer__column:nth-child(1) {
        width: 25%;
        flex-direction: column;
    }

    .page-footer .page-footer__column:nth-child(2) {
        width: 55%;
    }

    .page-footer .page-footer__column:nth-child(3) {
        width: 20%;
    }
}

@media (max-width: 1080px) {
    .page-footer .page-footer__column:nth-child(1) {
        width: 35%;
    }

    .page-footer .page-footer__column:nth-child(2) {
        flex-wrap: wrap;
        width: 45%;
    }

    .page-footer .page-footer__links__list {
        width: 100%;
    }
}

@media (max-width: 750px) {

    .page-footer .page-footer__container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 0 5%;
    }

    .page-footer .page-footer__column:nth-child(1) {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .page-footer .page-footer__column:nth-child(2) {
        width: 100%;
    }

    .page-footer .page-footer__column:nth-child(3) {
        width: 100%;
    }

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

    .page-footer .page-footer__links__item {
        text-align: center;
    }

    .page-footer .page-footer__follow__title {
        text-align: center;
    }

    .page-footer .page-footer__follow__list {
        justify-content: center;
    }

    .page-footer .page-footer__copyrights {
        text-align: center;
    }
}

/* Breadcrumbs */
.breadcrumb {
    margin: 24px 0 0 0;
}

.breadcrumb .breadcrumb__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb .breadcrumb__item,
.breadcrumb .breadcrumb__link {
    font-size: 13px;
    color: var(--color-black);
}

.breadcrumb .breadcrumb__item:not(:last-child)::after {
    content: ">";
    margin: 0 4px;

}

/***************/


.container {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5%, 70px);
}


/** WishList **/
.card--product:hover .fs-wishlist-btn {

    opacity: 1;
}

.fs-wishlist-btn {
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: linear .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 100;
    border: none;

    cursor: pointer;
    background: rgba(255, 255, 255, 1);
    box-shadow: none;
    outline: none;
    transition: linear .15s;
}

.fs-wishlist-btn:not(.active):hover {
    background: rgba(217, 217, 217, 1);
}

.fs-wishlist-btn svg {
    width: 22px;
}

.fs-wishlist-btn svg * {
    fill: var(--color-blue);
}

.fs-wishlist-btn.active svg * {
    fill: var(--color-red);
}


/**
    * Cart / Checkout
 */
.wc-tabs {
    width: 100%;
    max-width: 890px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 65px auto 0 auto;
}
.wc-tabs::after {
    content:'';
    width: calc(100% - 30px);
    height: 5px;
    background: var(--color-blue);
    position: absolute;
    top: calc(70px / 2 - (5px / 2));
    left: 15px;
    z-index: 1;
}

.wc-tabs[data-position="2"]::before {
    content:'';
    width: 33%;
    height: 5px;
    background: rgba(64, 102, 167, 1);
    position: absolute;
    top: calc(70px / 2 - (5px / 2));
    left: 15px;
    z-index: 2;
}

.wc-tabs[data-position="3"]::before {
    content:'';
    width: 66%;
    height: 5px;
    background: rgba(64, 102, 167, 1);
    position: absolute;
    top: calc(70px / 2 - (5px / 2));
    left: 15px;
    z-index: 2;
}
.wc-tabs[data-position="4"]::before {
    content:'';
    width: calc(100% - 30px);
    height: 5px;
    background: rgba(64, 102, 167, 1);
    position: absolute;
    top: calc(70px / 2 - (5px / 2));
    left: 15px;
    z-index: 2;
}

.wc-tablink {
    cursor: initial;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.wc-tablink .wc-tablink__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 239, 238, 1);
    border:1px solid rgba(128, 128, 128, 1);
}
.wc-tablink .wp-tablink__icon svg * {
    fill:rgba(128, 128, 128, 1);
}
.wc-tablink span {
    width: 100%;
    text-align: center;
    font-size:15px;
    display: block;
    margin: 18px 0 0 0;
}
.wc-tablink.is-active {
    border-color: #111827;
}

.wc-tablink.is-complete {
}
.wc-tablink.is-complete .wc-tablink__icon,
.wc-tablink.is-active .wc-tablink__icon {
    background:var(--color-white);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.28);
    border:none;
}
.wc-tablink.is-complete .wc-tablink__icon svg * ,
.wc-tablink.is-active .wc-tablink__icon svg * {
    fill:rgba(64, 102, 167, 1)!important;
}




.wc-tablink:not(.is-complete) {
    cursor: pointer;
}

.wc-checkout-grid {
    display: flex;
    align-items: initial;
    justify-content: space-between;
}

.wc-left {
    width: calc(100% - 400px);
    background: rgba(241, 239, 238, 1);
    padding: 0 55px 0 85px;
}

.wc-right {
    width: 400px;
    background: #fff;
    position: sticky;
    top: 1rem;
    align-self: start;
    padding: 0 clamp(20px, 5%, 50px);
}

.wc-next-actions {
    margin: 0 0 100px 0;
    padding: 50px 0 0 0;
}



.wc-right .blocks-infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top:30px;
}
.wc-right .blocks-infos::before{
    content: "";
    width: calc(100% + 2 * clamp(20px, 5%, 50px));
    height: 1px;
    position: absolute;
    top:0;
    left: calc(-1 *clamp(20px, 5%, 50px));
    background:rgba(128, 128, 128, 1);
}
.wc-checkout-grid.empty .wc-right .blocks-infos::before{
    display: none;
}
.wc-checkout-grid.empty .wc-right .blocks-infos{
    padding-top:0;
}

.wc-right .blocks-infos .block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding:20px 0;
}

.wc-right .blocks-infos .block:not(:last-child){
    border-bottom:1px solid rgba(128, 128, 128, 1);
}
.wc-right .blocks-infos .block .block__icon{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.wc-right .blocks-infos .block .block__icon svg {
    width: 50px;
}
.wc-right .blocks-infos .block .block__content{
    width: calc(100% - 70px - 10px);
}
.wc-right .blocks-infos .block .block__content .block__title{
    color:var(--color-blue);
    font-weight: 700;
    font-size:16px;
    line-height: 1.3;
}
.wc-right .blocks-infos .block .block__content .block__text{
    color:var(--color-black);
    font-size:16px;
    line-height: 1.3;
}

