/** Shopify CDN: Minification failed

Line 120:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:edobeautytext (INDEX:19) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Libertinus+Serif+Display&display=swap');

/* Isolation du conteneur pour éviter les fuites du thème */
.section-edo-wrapper {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.section-edo {
  background: linear-gradient(to bottom, #a48d76, #ffffff) !important;
  text-align: center !important;
  padding: 80px 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  /* Reset des couleurs héritées potentiellement */
  color: #000000 !important; 
}

.section-edo h1 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500 !important;
  font-style: italic !important;
  font-size: 26px !important;
  text-transform: uppercase !important;
  margin: 0 0 30px 0 !important; /* Force le reset des marges auto du thème */
  color: #000000 !important; /* Force la couleur noire */
  line-height: 1.2 !important;
  letter-spacing: normal !important;
}

.section-edo p {
  font-family: 'Libertinus Serif Display', serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important; 
  max-width: 750px !important;
  margin: 0 auto 35px auto !important;
  color: #000000 !important; /* Force la couleur noire */
  text-transform: none !important;
  letter-spacing: normal !important;
}

.section-edo a {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  margin: 0 15px !important;
  color: #000000 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #000000 !important;
  padding-bottom: 2px !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
  display: inline-block !important;
  font-weight: normal !important;
}

.section-edo a:hover {
  color: #a48d76 !important;
  border-color: #a48d76 !important;
  text-decoration: none !important;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 768px) {
  .section-edo {
    padding: 60px 15px !important;
  }

  .section-edo h1 {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .section-edo p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
    width: 100% !important;
  }

  .section-edo a {
    font-size: 12px !important;
    margin: 0 10px !important;
    padding-bottom: 1px !important;
  }
}

@media (max-width: 480px) {
  .section-edo h1 {
    font-size: 18px !important;
  }

  .section-edo p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .section-edo a {
    font-size: 11px !important;
    margin: 5px 8px !important; /* Ajout d'un peu de marge verticale si ça stack */
  }
}
/* END_SECTION:edobeautytext */

/* START_SECTION:icons (INDEX:32) */
/* Import Police */
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif+Display&display=swap');

/* --- CONTENEUR PRINCIPAL --- */
#oc-bande-wrapper {
  width: 100% !important;
  background-color: #ffff !important;
  padding: 40px 0 !important; /* Padding vertical uniquement */
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

/* --- BANDE SCROLLABLE (TRACK) --- */
.oc-bande-track {
  display: flex !important;
  gap: 0 !important;
  width: 100% !important;
  overflow-x: auto !important; /* Scroll horizontal natif */
  scroll-behavior: smooth !important;
  /* La magie du magnétisme CSS : */
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important; /* Cache scrollbar Firefox */
}

.oc-bande-track::-webkit-scrollbar {
  display: none !important; /* Cache scrollbar Chrome/Safari */
}

/* --- ITEM (ELEMENT INDIVIDUEL) --- */
.oc-bande-item {
  flex: 0 0 25% !important; /* Desktop: 4 par ligne (25%) */
  box-sizing: border-box !important;
  text-align: center !important;
  padding: 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  /* Alignement magnétique */
  scroll-snap-align: start !important; 
}

/* --- ICONE & TEXTE --- */
.oc-bande-icon {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
  margin-bottom: 15px !important;
  display: block !important;
}

.oc-bande-title {
  font-family: 'Libertinus Serif Display', serif !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  margin: 0 !important;
  letter-spacing: 1px !important;
  line-height: 1.2 !important;
}

/* --- PAGINATION (DOTS) --- */
.oc-pagination {
  display: none !important; /* Caché sur Desktop */
  justify-content: center !important;
  margin-bottom: 20px !important; /* Au-dessus de la bande */
  width: 100% !important;
}

.oc-dot {
  width: 8px !important;
  height: 8px !important;
  background-color: #e0e0e0 !important;
  border-radius: 50% !important;
  margin: 0 5px !important;
  transition: background-color 0.3s !important;
  cursor: pointer !important;
}

.oc-dot.active {
  background-color: #000000 !important;
}

/* --- RESPONSIVE MOBILE (<= 768px) --- */
@media screen and (max-width: 768px) {
  #oc-bande-wrapper {
    padding: 30px 0 !important;
    position: relative !important;
  }

  .oc-pagination {
    display: flex !important; /* Visible sur mobile */
  }

  .oc-bande-track {
    padding: 0 20px !important; /* Espace sur les côtés */
    box-sizing: border-box !important;
  }

  .oc-bande-item {
    /* FORCE 100% DE LARGEUR SUR MOBILE */
    flex: 0 0 100% !important; 
    width: 100% !important;
    padding: 0 !important;
    /* Alignement à gauche strict */
    justify-content: flex-start !important; 
    align-items: center !important;
    scroll-snap-align: center !important; /* Centre l'élément parfaitement */
  }
  
  .oc-bande-title {
    font-size: 16px !important; /* Un peu plus gros sur mobile */
  }
}
/* END_SECTION:icons */