/* STARTER */
@media (min-width: 1024px) {
    .nav-perso-off .nav__label .nav__a {
        font-size: 1rem;
    }
}

#e4ef9632-0cc2-490e-8045-d435f75a6bdd .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#e4ef9632-0cc2-490e-8045-d435f75a6bdd .form__fieldset {
  width: 100%;
}

#e4ef9632-0cc2-490e-8045-d435f75a6bdd 
.form__field--long-answer {
  grid-column: 1 / -1;
}

#e4ef9632-0cc2-490e-8045-d435f75a6bdd 
.form__field--btnArea {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  #e4ef9632-0cc2-490e-8045-d435f75a6bdd .form {
    grid-template-columns: 1fr;
  }
}

.prod-infos p:not(:empty):not(:last-child) {
    margin-bottom: 16px;
}
/* END STARTER */ 

@media (min-width: 1024px) {
    .nav__itemlvl1 {
        color: white;
        text-transform: uppercase;
        font-weight: bold !important;
    }
}

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

div#\39 4f7a3ab-2dad-4a61-b6bd-46df40b2fc1b {
    display: none;
}

.header.header--fixed .header__cart__a {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.001 19.901'%3E%3Cpath d='M15 19.111l-.7-13.7a.7.7 0 0 0-.7-.68h-2.04v-.67a4.061 4.061 0 1 0-8.121 0v.67h-2.05a.712.712 0 0 0-.7.68l-.69 13.74a.754.754 0 0 0 .19.53.7.7 0 0 0 .51.22h13.6a.707.707 0 0 0 .7-.72v-.07zM9.48 4.731H5.52v-.67a1.981 1.981 0 1 1 3.96 0z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E") !important;
}

.body .header.header--fixed .header__account__a {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 20'%3E%3Cpath d='M.005 17.743v-.494c0 .043 0 .024.012-.35.084-4.582.728-5.9 5.314-6.742A2.762 2.762 0 0 0 7.504 11a2.763 2.763 0 0 0 2.174-.843c4.637.849 5.243 2.19 5.317 6.895 0 .3.007.353.008.326v.365S13.903 20 7.503 20 .005 17.743.005 17.743zm15-.365c-.005-.313 0-.046-.006-.001zm-15-.129c-.005-.049 0-.165 0 0zm3.53-12.358c0-2.7.583-4.891 3.969-4.891s3.971 2.19 3.971 4.891-1.778 4.891-3.971 4.891S3.53 7.592 3.53 4.891z' fill='%23ffffff'/%3E%3C/svg%3E") !important;
}

@media (min-width: 720px) {
    .search--wrapper .search--input {
        border: 2px solid white !important;
    }
}

@media (min-width: 720px) {
    .header.header--fixed .search--wrapper .back, .header.header--fixed .search--wrapper .front {
        background: white;
    }
}

.wiziblocks__item__maxWidth {
    background-color: transparent;
}

div#\30 e7dab2a-a353-4fdf-b26f-1d2bf82fe0ee .wizi-txt.wizi-txt--large {
    padding-bottom: 220px !important;
    padding: 0vw 18vw;
}

/* FAQ */
/* ===== ITEM ===== */
.wz-faq-accordion__wrapper__item {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover léger */
.wz-faq-accordion__wrapper__item:hover {
    border-color: #e95656 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ===== HEADER ===== */
.wz-faq-accordion__wrapper__item__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
}

/* Texte question */
.wz-faq-accordion__wrapper__item__head p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

/* ===== ICON ===== */
.wz-faq-accordion__wrapper__item__head__icon {
    transition: transform 0.3s ease;
}

/* Rotation quand ouvert */
.wz-faq-accordion__wrapper__item.open 
.wz-faq-accordion__wrapper__item__head__icon {
    transform: rotate(180deg);
}

/* ===== BODY ===== */
.wz-faq-accordion__wrapper__item__body {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

/* Masqué quand fermé */
.wz-faq-accordion__wrapper__item.close 
.wz-faq-accordion__wrapper__item__body {
    display: none;
}

/* ===== OUVERT ===== */
.wz-faq-accordion__wrapper__item.open {
    border-color: #e95656 !important;
}

/* ===== TRANSITION SMOOTH ===== */
.wz-faq-accordion__wrapper__item__body {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .wz-faq-accordion__wrapper__item__head {
        padding: 15px;
    }

    .wz-faq-accordion__wrapper__item__head p {
        font-size: 15px;
    }

    .wz-faq-accordion__wrapper__item__body {
        font-size: 13px;
    }
}

#header.headroom--unpinned {
    background-color: #000 !important;
    border-bottom: 1px solid #CD0501;
}

@media (min-width: 720px) {
    .header.header--fixed {
        background: black;
    }
}

.powered__p a, .powered__p span {
    color: white;
}

@media (max-width: 768px) {
    .header__relative {
        background: #000 !important;
    }
    .search--label {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 201 208'%3E%3Cpath fill='white' d='M103.2 1.1C85.5 4.2 71.2 11.8 58 25 44.2 38.8 36.9 53.1 33.9 72.1c-3.1 19.9 3 45 14.6 60.2 2 2.6 3.5 5.3 3.2 6-.3.7-11.4 12.6-24.8 26.6C13.5 178.8 2 191.2 1.3 192.4c-4.2 7.4 3.3 16.8 12 15.2 2.8-.5 7.2-4.6 23.9-21.9 11.2-11.6 22.9-23.8 25.9-27.1l5.4-5.8 6 3.6c11.7 6.9 28.9 11.6 42.5 11.6 21.9 0 45.7-10.3 60.8-26.4 10.3-11.1 16.2-21.5 20.4-36.4 3.2-11.1 3.2-31.4 0-42.7C190 33.5 167.6 11 139 3c-8.6-2.4-27.4-3.5-35.8-1.9zM131 23.6c22.3 5.2 41.2 24.1 46.4 46.4 3.3 13.8 1.5 28.5-5.2 42-7.6 15.5-24.8 28.9-41.8 32.5-21.4 4.5-41.4-1.4-56.9-17C54 108 49.5 81.3 61.7 56.1c7.2-15 24.1-28.5 40.8-32.5 8-1.9 20.5-1.9 28.5 0z'/%3E%3C/svg%3E") !important;
    }
    .header__nav__icon__span {
        background: #fff !important;
    }
}

@media (max-width:768px){
div#a69c1517-2de9-48db-8b2f-6a7defa4b1d8 .wizi-imgtxt__left.wizi-imgtxt__left--small{border-bottom:3px solid #000;}
}

@media (max-width:768px){
div#\37 ddd90b6-325f-43f8-8b80-07d46a628dd3 .wizi-imgtxt__left{text-align:center;}
div#\37 ddd90b6-325f-43f8-8b80-07d46a628dd3 .wiziBtn__wrapper{justify-content:center;}
}

@media (max-width:768px){
div#\38 9df887c-579e-4fe9-962e-eaf85d606a32 .wizi-imgtxt__right{text-align:center;}
div#\38 9df887c-579e-4fe9-962e-eaf85d606a32 .wiziBtn__wrapper{justify-content:center;}
}

@media (min-width:769px){
.banner .wizi-txt.wizi-txt--large{padding-top:200px;}
}

p.footer__wrapper__bloc__infos__address {
    display: none;
}

.footer__wrapper__bloc__infos__contact:nth-child(4) {
    display: none;
}

div#\37 ddd90b6-325f-43f8-8b80-07d46a628dd3 {
    border-bottom: 3px solid black;
}

@media (min-width: 1024px) {
    .header.header--fixed .nav__itemlvl1:hover {
        color: white !important;
    }
}

.prod-details__ref::before {
    content: "Référence : ";
}

.nav__sublevel .nav__rich--without-txt picture,
.nav__sublevel .nav__rich--without-txt .picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.nav__sublevel .nav__rich--without-txt .nav__label__img {
    width: auto !important;
    max-width: 100%;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

@media (min-width: 1025px) {
    .header .header__relative {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        position: relative !important;
    }

    .header .nav {
        grid-column: 1 !important;
        grid-row: 1 !important;
        justify-self: start !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        position: static !important;
        transform: none !important;
    }

    .header .nav__wrapper,
    .header .nav__maxWidth {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .header .nav__maxWidth.one-line {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .header .header__logo {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: center !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 auto !important;
        z-index: 5 !important;
    }

    .header .header__area {
        grid-column: 3 !important;
        grid-row: 1 !important;
        justify-self: end !important;
        display: flex !important;
        align-items: center !important;
    }

    .header .header__logo__a__img {
        max-height: 70px !important;
        width: auto !important;
    }

    .header .nav__sublevel {
        left: 0 !important;
        max-width: 100vw !important;
    }
}

@media (min-width: 720px) {
    .header.header--fixed .header__logo {
        justify-content: center;
    }
}