.prod.product-list-classic {
    justify-content: center;
}
body * {
    font-family: "Inter", serif;
}

.nav__maxWidth {
    /* display: flex; */
    /* justify-content: center !important; */
}

/* ---- Fond et mise en page générale ---- */
.custom-section {
  position: relative;
  padding: 60px 0;
  background: #FDF6ED;
  overflow: hidden;
}

/* Arrière-plan en transparence */
.background-overlay {
  background: url('https://images.unsplash.com/photo-1506368249639-73a05d6f6488?ixlib=rb-4.0.3') center/cover;
  opacity: 0.05;
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Conteneur principal */
.container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* ---- Titre en dégradé ---- */
.gradient-title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #FF4B2B, #FF8F3F, #FFD93D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

/* ---- Cartes (Épices, Infusions, Huiles) ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
}

/* ---- Icônes des cartes ---- */
.icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  font-size: 28px;
  color: white;
}

.icon.globe {
  background: linear-gradient(to bottom right, #FF4B2B, #FF8F3F);
}

.icon.leaf {
  background: linear-gradient(to bottom right, #FF8F3F, #FFD93D);
}

.icon.drop {
  background: linear-gradient(to bottom right, #FFD93D, #FF4B2B);
}

/* ---- Texte des cartes ---- */
.card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #292c32 !important; /* Noir */
}

.card p {
  font-size: 0.95rem;
  color: #292c32 !important; /* Noir */
}

/* ---- Section texte + image ---- */
.content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: auto;
}

/* ---- Texte ajusté ---- */
.text-content {
  width: 50%;
  text-align: left;
  font-size: 1.1rem;
  color: #292c32 !important; /* Noir */
  line-height: 1.6;
}

/* ---- Image correctement alignée ---- */
.image-box {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.styled-image {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  transform: rotate(-3deg);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Ajout d'une ombre */
}

/* Ajout de l'animation au survol */
.styled-image:hover {
  transform: rotate(0deg);
}


/* ---- Label "Qualité Premium" ---- */
.quality-label {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: linear-gradient(to right, #FF4B2B, #FF8F3F);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    width: 90%;
    margin: auto;
  }

  .content-box {
    flex-direction: column;
    text-align: center;
  }

  .text-content, .image-box {
    width: 100%;
  }

  .styled-image {
    max-width: 280px;
  }
}

.gradient-text {
  background: linear-gradient(45deg, #FF4B2B, #FF8F3F, #FFD93D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}


.reassurance__wrapper {
    padding: 50px 40px;
    position: relative;
    width: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: var(--max-row-size-padding-large);
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around
}

.reassurance__wrapper__item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-direction: row !important;
}

.reassurance__wrapper__item__icon {
    width: 35px !important;
    height: 35px !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.reassurance__wrapper__item__text {
    display: inline-block !important;
    vertical-align: middle !important;
    text-align: left !important;
}

@media (min-width: 1024px) {
    .wiziblocks__item.medium {
        margin: 0px 0 0px;
    }
}

/* ---- Section Contact ---- */
.contact-section {
    background-color: #fdf6ef;
    padding: 60px 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* ---- Titre et sous-titre ---- */
.contact-title {
    font-size: 2rem;
    font-weight: bold;
    color: #292c32;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* ---- Contenu principal ---- */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* ---- Infos Contact ---- */
.contact-info {
    text-align: left;
    width: 40%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 22px;
    color: #ff7a3d;
}

/* ---- Formulaire ---- */
.contact-form {
    width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: bold;
    color: #292c32;
    margin-bottom: 5px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: linear-gradient(45deg, #ff4b2b, #ff8f3f);
    color: white;
    font-size: 1rem;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #ff8f3f, #ff4b2b);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

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

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

.container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

 .header__logo__a {
        height: auto;
        min-height: 60px;
        max-height: 130px;
        overflow: visible
    }

@media (max-width: 768px) {
    .header__logo img {
        max-height: 65px !important; /* Augmente la taille */
        width: auto !important;
    }
}

@media (max-width: 719px) {
    .header__logo {
        padding: 0px 143px 7px 15px;
    }
}

.epicesdumonde {
    background-color: #FDF6ED !important;
    padding: 40px 0; /* Ajoute de l'espace en haut et en bas */
}

/* Arrondir les boutons */
.epicesdumonde .wiziBtn {
    border-radius: 25px; /* Arrondi sur les boutons */
    padding: 12px 20px; /* Ajustement du padding pour un bon rendu */
}

.wizi-imgtxt--reverse .wizi-imgtxt__left {
    padding: 20px 50px 20px 82px;
}

.wizi-imgtxt__right {
    padding: 20px 110px 20px 50px;
}


/* Arrondir les encadrés beiges */
.produitsnaturels .wizi-txt__item {
    border-radius: 15px; /* Coins arrondis */
    overflow: hidden; /* Empêche le débordement */
    padding: 20px; /* Ajoute un peu d’espace intérieur */
}

/* S'assurer que l'arrière-plan prend bien en compte l'arrondi */
.produitsnaturels .wizi-wrapper__background {
    border-radius: 15px; /* Assurer que l'arrière-plan suit l'arrondi */
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Mettre en arrière-plan */
}

/* Arrondir les boutons */
.produitsnaturels .wiziBtn {
    border-radius: 25px; /* Rend les boutons arrondis */
    padding: 10px 20px; /* Ajuste l’espacement interne */
}

.vanille {
    background-color: #FDF6ED !important;
    padding: 40px 0; /* Ajoute de l'espace en haut et en bas */
}

.poudresdecocktail .wiziBtn {
    border-radius: 50px !important;
}

.vanille .wiziBtn {
    border-radius: 50px !important;
}
.Effet .wizi-imgtxt__right.wizi-imgtxt__right--medium:hover, .Effet .wizi-imgtxt__left.wizi-imgtxt__left--medium:hover {
    transform: rotate(45deg);
    transition: ease-out 0.3s;
}

.Effet .wizi-imgtxt__right.wizi-imgtxt__right--medium, .Effet .wizi-imgtxt__left.wizi-imgtxt__left--medium {
    transition: ease-out 0.3s;
}

@media (min-width: 1023px) {
    
    .wiziblocks__item.width-medium.wiziblocks__item--fullpage {
    padding: 0px 110px;
}
    }

.footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #FDF6ED;
    width: 100%;
    color: #62696F;
    flex-direction: column
}

/* SECTION RÉSEAUX SOCIAUX */
.social-media-section {
    background: linear-gradient(135deg, #FDF6ED 0%, #fff8e1 100%);
    padding: 50px 0;
    text-align: center;
    border-radius: 20px;
}

.social-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* TITRE */
.social-header {
    margin-bottom: 20px;
}

.social-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #FF4B2B;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.icon {
    font-size: 18px;
    margin: 0 5px;
}

.gradient-text {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(45deg, #FF4B2B, #FF8F3F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.gradient-text::after {
    content: "";
    display: block;
    height: 5px;
    background: rgba(255, 217, 61, 0.3);
    width: 100%;
    transform: skewX(-10deg);
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* Supprime les barres jaunes restantes */
h1::after, h3::after, h4::after, .gradient-text::after {
    content: none !important;
}


.social-header p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 10px auto;
}

/* CARTES RÉSEAUX SOCIAUX */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    background-color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
}

/* FACEBOOK */
.facebook-card {
    border: 2px solid rgba(66, 103, 178, 0.2);
}

.facebook-card:hover {
    border-color: #4267B2;
    color: #4267B2;
}

/* INSTAGRAM */
.instagram-card {
    border: 2px solid rgba(193, 53, 132, 0.2);
}

.instagram-card:hover {
    border-color: #C13584;
    color: #C13584;
}

/* ICONES */
.social-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.facebook-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234267B2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E");
}

.instagram-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C13584' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

/* FOOTER */
.social-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.hashtag {
    font-weight: bold;
    color: #FF4B2B;
}


/*Effet*/
@media (max-width: 2100px) and (min-width: 1200px) {
      .bloc1 .wizi-imgtxt__right.wizi-imgtxt__right--medium,
      .bloc1 .wizi-imgtxt__right.wizi-imgtxt__right--small
  {
        animation: slide1 linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }
      .bloc2 .wizi-imgtxt__left {
        animation: slide2 linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }
}
@keyframes slide1 {
  from{
  transform: translateX(-100%);
  opacity:0;
  }
  to {
  transform: translateX(0%);
  opacity:1;
  }
}
@keyframes slide2 {
  from{
  transform: translateX(100%);
  opacity:0;
  }
  to {
  transform: translateX(0%);
  opacity:1;
  }
}

.nav__rich {
    text-align: center;
}


.nav__rich  {
    margin-bottom: 0 !important;
    transition: 0.8s ease-out;
}

.nav__rich+.nav__rich {
    margin-top: 0;
}

.nav-perso-on .nav__flex.ps .nav__col {
    padding-bottom: 0;
}

.nav__rich:hover {
    transform: scale(0.9);
    transition: 0.3s ease-out;
}

/*REFONTE REFONTE MILANO*/
#c1-body .header{background:#f8773f;}
@media (min-width: 1200px) {
.header__logo__a {    max-height: 100% !important;}
.header__h1 {    max-height: 100% !important;            height: 100px !important;    width:auto!important}
.header__logo.header__logo--withImg {    max-height: 100%;            height: 100px !important;    width:auto!important}
.header__logo .picture--left {    max-height: 100%;        height: 100px !important;    width:auto!important}

@media (max-width: 719px) {
    .header__relative{    background: #f8773f;}
    .search--label, .header__cart__a {background-color:white;border-radius:300px;}
    .search {right: 23%;}
    .header__cart__a {    height: 53px;    top: 2px;}
    .search--label {width: 50px;}
}

@media (min-width: 1024px) {
    .header__triggerSearch svg {/* fill: #ffffff; */}
    .header__triggerSearch:hover svg {        fill: #ffffff00;}
}

.header__account svg, .header__cart svg, .header__search svg {
    /* fill: white; */
}

.header__account:hover svg, .header__cart:hover svg, .header__search:hover svg {
    fill: transparent;
}

.header__nav__icon__span {
    background: white;
}

a.nav__a.nav__itemlvl1.nav__itemlvl1--home.active {
    display: none;
}

.header.header--fixed .nav__itemlvl1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem !important;
}

.nav-perso-on .nav .nav__wrapper .nav__maxWidth .nav__label .nav__itemlvl1 {padding-right: 20px;}

.nav__maxWidth>.nav__a {
    padding-right: 20px;
}

img.header__logo__a__img:hover {
    transform: scale(0.9);
    transition: 0.8s ease-out;
}
/*FIN REFONTE MILANO*/
.header__relative {
    background: #F8773F;
}
nav.nav {
    background-color: #F8773F;
}
@media (min-width: 720px) {
    .search--wrapper .search--input {
        background: transparent;
    }
}
@media (min-width: 1024px) {
    .body__wrapper--withoutPadding {
        margin-top: 0px;
    }
}
@media (min-width: 1024px) {
    .nav__itemlvl1:hover {
        color: black !important;
    }
}
.nav__rich img.nav__label__img {
    height: 12em;
}
/* Base : applique l'icône seulement aux catégories avec sous-menu */
#menu-enrichi-1 + .nav__label .nav__itemlvl1,
#menu-enrichi-2 + .nav__label .nav__itemlvl1,
#menu-enrichi-3 + .nav__label .nav__itemlvl1,
#menu-enrichi-4 + .nav__label .nav__itemlvl1 {
  display: inline-block !important;
  line-height: 1.2 !important;
  background-repeat: no-repeat !important;
  background-position: left 50% !important;
  background-size: 20px 20px !important;
  padding-left: 28px !important;
  white-space: nowrap;
}

/* Épices */
#menu-enrichi-1 + .nav__label .nav__itemlvl1 {
  background-image: url("https://media.cdnws.com/_i/399440/335/3407/38/lafonke-epicerie-menu-epices-graines.png") !important;
}

/* Vanille de bourbon */
#menu-enrichi-2 + .nav__label .nav__itemlvl1 {
  background-image: url("https://media.cdnws.com/_i/399440/336/1772/39/lafonke-epicerie-menu-vanille.png") !important;
}

/* Infusion naturel */
#menu-enrichi-3 + .nav__label .nav__itemlvl1 {
  background-image: url("https://media.cdnws.com/_i/399440/337/3505/40/lafonke-epicerie-menu-infusion.png") !important;
}

/* Cosmétiques naturelles */
#menu-enrichi-4 + .nav__label .nav__itemlvl1 {
  background-image: url("https://media.cdnws.com/_i/399440/331/3480/34/lafonke-epicerie-beurre-capillaire.png") !important;
}

/* Option mobile : taille plus petite */
@media (max-width: 768px) {
  #menu-enrichi-1 + .nav__label .nav__itemlvl1,
  #menu-enrichi-2 + .nav__label .nav__itemlvl1,
  #menu-enrichi-3 + .nav__label .nav__itemlvl1,
  #menu-enrichi-4 + .nav__label .nav__itemlvl1 {
    background-size: 18px 18px !important;
    padding-left: 26px !important;
  }
}
@media (min-width: 1200px) {
    img.header__logo__a__img {
        max-height: 200% !important;
        height: 200px !important;
        margin-top: -46px !important;
    }
}