/* BLOCLEFT */
.blocleft .wizi-imgtxt__left {
    background-color: #333; /* Dark, industrial background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Strong shadow for depth */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

/* Decorative gear image */
.blocleft .wizi-imgtxt__left::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-image: url('gear-icon.svg'); /* Example gear icon image */
    background-size: cover;
    opacity: 0.1; /* Light watermark effect */
    z-index: 0;
}

.blocleft .wizi-imgtxt__wrap {
    max-width: 700px;
    z-index: 1; /* Ensure content is above the background */
    color: #fff;
}

/* Heading styling */
.blocleft .wizi-imgtxt__wrap h2 {
    color: #B0D137; /* Highlighted in secondary color */
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    border-bottom: 4px solid #B0D137; /* Underline with the secondary color */
    padding-bottom: 10px;
    letter-spacing: 1px;
}

/* Paragraph styling */
.blocleft .wizi-imgtxt__wrap p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #f0f0f0; /* Light grey text for readability */
}

/* Gear bullet points for paragraphs */
.blocleft .wizi-imgtxt__wrap p::before {
    content: '🔩'; /* Automotive bolt icon for a unique touch */
    color: #B0D137;
    margin-right: 10px;
}

/* Hover effects for interaction */
.blocleft .wizi-imgtxt__left:hover {
    background-color: #B0D137; /* Change to secondary color on hover */
    transition: background-color 0.4s ease-in-out;
}

.blocleft .wizi-imgtxt__wrap h2:hover {
    color: #fff; /* Text changes to white on hover */
    transition: color 0.3s ease-in-out;
}

.blocleft .wizi-imgtxt__wrap p:hover {
    color: #333; /* Darken the text slightly on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
.blocleft .wizi-imgtxt__left {
        padding: 20px;
    }

.blocleft .wizi-imgtxt__wrap h2 {
        font-size: 24px;
    }

.blocleft .wizi-imgtxt__wrap p {
        font-size: 16px;
    }
}
/* Bouton principal */
.blocleft .wiziBtn {
    background-color: transparent;
    border: 2px solid #B0D137; /* Contour du bouton dans la couleur secondaire */
    color: #B0D137;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Effet au survol du bouton */
.blocleft .wiziBtn:hover {
    background-color: #fff; /* Change le fond en blanc au survol */
    color: #333; /* Change la couleur du texte en foncé */
    border-color: #fff; /* Garde une bordure blanche pour le contraste */
}

/* Ajustement au survol du bloc */
.blocleft .wizi-imgtxt__left:hover .wiziBtn {
    background-color: transparent; /* Fond transparent au survol du bloc */
    color: #fff; /* Couleur du texte blanche pour correspondre à la nouvelle couleur du bloc */
    border-color: #fff; /* Bordure blanche au survol du bloc */
}

/* BLOCRIGHT */
/* Styling for the right block */
.blocright .wizi-imgtxt__right {
    background-color: #1a1a1a; /* Slightly darker for variation */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Strong shadow for depth */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

/* Decorative wrench image */
.blocright .wizi-imgtxt__right::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px; /* Changed the position to the left */
    width: 150px;
    height: 150px;
    background-image: url('wrench-icon.svg'); /* Example wrench icon image */
    background-size: cover;
    opacity: 0.1; /* Light watermark effect */
    z-index: 0;
}

.blocright .wizi-imgtxt__wrap {
    max-width: 700px;
    z-index: 1; /* Ensure content is above the background */
    color: #fff;
}

/* Heading styling */
.blocright .wizi-imgtxt__wrap h2 {
    color: #B0D137; /* Use the same secondary color for consistency */
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    border-bottom: 4px solid #B0D137; /* Underline with the secondary color */
    padding-bottom: 10px;
    letter-spacing: 1px;
}

/* Paragraph styling */
.blocright .wizi-imgtxt__wrap p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #f0f0f0; /* Light grey text for readability */
}

/* Hover effects for interaction */
.blocright .wizi-imgtxt__right:hover {
    background-color: #B0D137; /* Change to secondary color on hover */
    transition: background-color 0.4s ease-in-out;
}

.blocright .wizi-imgtxt__wrap h2:hover {
    color: #fff; /* Text changes to white on hover */
    transition: color 0.3s ease-in-out;
}

.blocright .wizi-imgtxt__wrap p:hover {
    color: #333; /* Darken the text slightly on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
.blocright .wizi-imgtxt__right {
        padding: 20px;
    }

.blocright .wizi-imgtxt__wrap h2 {
        font-size: 24px;
    }

.blocright .wizi-imgtxt__wrap p {
        font-size: 16px;
    }
}
/* Bouton principal pour le bloc droit */
.blocright .wiziBtn {
    background-color: transparent;
    border: 2px solid #B0D137; /* Contour du bouton dans la couleur secondaire */
    color: #B0D137;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Effet au survol du bouton dans le bloc droit */
.blocright .wiziBtn:hover {
    background-color: #fff; /* Change le fond en blanc au survol */
    color: #333; /* Change la couleur du texte en foncé */
    border-color: #fff; /* Garde une bordure blanche pour le contraste */
}

/* Ajustement au survol du bloc droit */
.blocright .wizi-imgtxt__right:hover .wiziBtn {
    background-color: transparent; /* Fond transparent au survol du bloc */
    color: #fff; /* Couleur du texte blanche pour correspondre à la nouvelle couleur du bloc */
    border-color: #fff; /* Bordure blanche au survol du bloc */
}


/* SECTION CATEGORIES */
/* Container for the section */
.mt-12 {
    margin-top: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Add padding to prevent content from sticking to the edges */
.sm\:container {
    padding-left: 2rem;
    padding-right: 2rem;
}

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

/* Heading styles */
.text-xxl {
    font-size: 2rem;
    color: #000; /* Noir */
}

.sm\:text-mb-xbase {
    font-size: 1.5rem;
}

.text-black {
    color: #000; /* Noir */
}

/* Flex layout for the categories */
.categories-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Category item */
.category-item {
    flex: 1 1 calc(25% - 2rem);
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #B0D137; /* Bordure verte */
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover effect */
.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-title {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
}

/* Subitems list */
.category-subitems {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-subitems li {
    margin-bottom: 8px;
}

.category-subitems a {
    color: black !important; 
    text-decoration: none !important;
    font-size: 0.875rem;
}

.category-subitems a:hover {
    color: #000; /* Noire au survol */
    transition: color 0.2s ease;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .categories-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .category-item {
        flex: 1 1 100%;
    }
}

.footer__wrapper__left__img {
    max-height: 100px !important;
}

.prod-list__left {
    z-index: 2;
}

ul.slick-dots {
    display: none !important;
}

.header__infoBar {
    background-color: #f8f8f8;
    padding: 10px 20px;
    font-size: 14px;
    position: fixed; /* La barre reste fixée en haut */
    top: 0;
    width: 100%;
    z-index: 1000; /* Toujours au-dessus du header */
    display: grid;
    grid-template-columns: 1fr auto; /* Deux colonnes : promo à gauche et contact à droite */
    align-items: center;
    box-sizing: border-box;
}

.header.new-menu {
    margin-top: 50px; /* Ajuster cette valeur à la hauteur de la barre */
}

.header__infoBar a {
    color: #000;
    text-decoration: none;
}

.header__infoBar a:hover {
    text-decoration: underline;
}

.header__promo {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.header__contact {
    display: flex;
    gap: 20px;
    justify-content: flex-end; /* Aligne le contenu (téléphone et email) à droite */
}

/* Pseudo-éléments pour les icônes avec ::before */
.header__promo::before {
    content: "🎉"; /* Icône pour la promo */
    margin-right: 8px;
}

.header__contact span:first-child::before {
    content: "📞"; /* Icône pour le téléphone */
    margin-right: 5px;
}

.header__contact span:last-child::before {
    content: "📧"; /* Icône pour l'email */
    margin-right: 5px;
}

div#\35 7318a79-c2c0-4f6d-9b18-9eb54c1d2d89 {
    z-index: 3;
}

.category-title::before {
    display: inline-block;
    width: 25px;  /* Largeur de l'icône */
    height: 25px; /* Hauteur de l'icône */
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Icone pour la catégorie Pièces autos */
.category-item:nth-of-type(1) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6265/3344/67/freinage.png'); /* Icône voiture */
}

/* Icone pour la catégorie Pièces Moteurs */
.category-item:nth-of-type(2) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6266/808/68/filtration.png'); /* Icône moteur */
}
.category-item:nth-of-type(3) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6267/1200/69/pieces-moteur.png'); /* Icône huile */
}
.category-item:nth-of-type(4) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6268/3278/70/suspension.png'); /* Icône marteau */
}
.category-item:nth-of-type(5) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6269/3895/71/transmission.png'); /* Icône marteau */
}
.category-item:nth-of-type(6) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6271/1782/73/habitacle.png'); /* Icône marteau */
}
.category-item:nth-of-type(7) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6270/515/72/echappement.png'); /* Icône marteau */
}
.category-item:nth-of-type(8) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6272/573/74/carosserie.png'); /* Icône marteau */
}
.category-item:nth-of-type(9) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6510/1737/10/icons8-huile-d-olive-50.png'); /* Icône marteau */
}
.category-item:nth-of-type(10) .category-title::before {
    background-image: url('https://media.cdnws.com/_i/381097/6511/757/11/icons8-boite-de-rangement-complete-d-39-outils-50.png'); /* Icône marteau */
}
@media only screen and (min-width: 1024px) {
    .wizi-txt.wizi-txt--withBg.wizi-txt--large {
        padding-right: 700px;
    }
}
@media (min-width: 1024px) {
    .nav__maxWidth {
        justify-content: center;
    }
}
@media only screen and (min-width: 1024px) {
    .banner-camion .wizi-img.wizi-img--banner.wizi-img--small {
        margin-top: -264px;
    }
}
div#b25ecf76-b9c2-475c-b682-01210e256f45 {
    z-index: 3;
}
@media (min-width: 720px) {
    .wizi-wrapper--textOnImg.wizi-wrapper--small {
        min-height: 22.65vw;
    }
}
.wizi-txt__background p.we-align-left span strong {
    background-color: #B2D037; 
    color: #000; 
    padding: 2px 5px; 
    border-radius: 4px; 
}
.footer__top {
    display: none;
}
.emergency-bar__text h3, body.body .with-editorjs h3, body.body .wiziblocks__item h3 {
    line-height: 20px;
}
@media only screen and (max-width: 768px) {
    div#b25ecf76-b9c2-475c-b682-01210e256f45 {
        display: none;
    }
}
.footer__wrapper__left {
    padding: 0 !important;
    margin: 0 !important;
}
emergency-bar__text h3, body.body .with-editorjs h3, body.body .wiziblocks__item h3 {
    line-height: 22px;
}
.bloc9 img.wizi-img__item.lazyloaded {
    border-radius: 150px;
}
.header__relative {
    background: #000000;
}
.header__content {
    background-color: #000000;
}
/* FOOTER */
.footer__wrapper__left {
    max-width: none !important;
}
.bloc5 {
  background-color: black;
}
.bloc5 {
    max-width: none !important;
}
/* PAGE A PROPOS */
.bloc-apropos .wizi-imgtxt__right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 20px !important;
    background-color: #100f0f !important;
    color: #ffffff !important;
    text-align: left !important;
}

.bloc-apropos .wizi-imgtxt__wrap {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.bloc-apropos .wizi-imgtxt__wrap h2 {
    font-size: 2.5rem !important;
    color: #B1D137 !important;
    margin-bottom: 15px !important;
    font-family: 'Arial', sans-serif !important;
}

.bloc-apropos .wizi-imgtxt__wrap p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
    font-family: 'Arial', sans-serif !important;
}

.bloc-apropos .wizi-imgtxt__wrap p:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .bloc-apropos .wizi-imgtxt__right {
        padding: 10px !important;
    }

    .bloc-apropos .wizi-imgtxt__wrap h2 {
        font-size: 2rem !important;
    }

    .bloc-apropos .wizi-imgtxt__wrap p {
        font-size: 0.9rem !important;
    }
}
.prod-details__ref::before {
    content: "Ref : ";
}
@media (min-width: 1024px) {
    .header__account__span {
        color: #ffffff;
    }
}
@media (min-width: 1024px) {
    .header__logo img {
        max-height: 90px;
    }
}
@media (min-width: 1024px) {
    .header__cart__text {
        color: #ffffff;
    }
}
@media (min-width: 1024px) {
    .header__relative {
        padding: 0px 40px;
    }
}
@media (min-width: 1024px) {
    .header__logo__a .picture--left {
        display: flex !important;
    }
}
form.footer__wrapper__bloc__form {
    display: none;
}
.footer__wrapper__bloc__infos__separator {
    display: none;
}
p.footer__wrapper__bloc__infos__address {
    display: none;
}
@media (min-width: 1024px) {
    .nav__itemlvl1 {
        font-size: 0.8rem !important;
    }
}
.bloc-black {
    background-color: black;
}
.bloc-black .wiziblocks__item__maxWidth {
    background-color: transparent !important;
}
.bloc-black .wiziblocks__item__maxWidth {
    padding: 40px 0px !important;
}
.blocright img.wizi-img__item.lazyloaded {
    border: 10px solid black;
}