/** Shopify CDN: Minification failed

Line 147:0 Unexpected "}"

**/
/* === SECTION MODE D’EMPLOI === */
.instructions--section {
  padding: 2rem 1rem;
  font-family: var(--font-bebas), sans-serif;
  color: #fff;
}

/* → Wrapper mobile : colonne ; desktop : ligne */
.instructions--wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .instructions--wrapper {
    flex-direction: row;
    align-items: stretch;
  }
}

/* --- BLOC TEXTE --- */
.instructions--text {
  flex: 1;
  background: rgba(92, 67, 56, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Titre principal */
.instructions--title {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  text-align: center;
}
@media (min-width: 768px) {
  .instructions--title {
    text-align: left;
  }
}

/* Track de texte */
.instructions--text-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* Chaque slide de texte */
.instructions--text-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.instructions--text-slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* Liste à l’intérieur */
.instructions--text-slide ul {
  padding-left: 1.2rem;
  line-height: 1.6;
  margin-top: .5rem;
}

/* --- BOUTON SUIVANT --- */
.instructions--arrows {
  margin-top: 1.5rem;
  text-align: center;
}
.instructions--arrow {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s, color .3s, transform .2s;
}
.instructions--arrow:hover {
  background: #fff;
  color: var(--color--body);
  transform: scale(1.1);
}

/* --- BLOC MÉDIA (vidéo ou fallback) --- */
.instructions--media {
  flex: 1;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
.instructions--video,
.instructions--fallback {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- Responsive tweaks --- */
@media (min-width: 768px) {
  .instructions--text {
    padding: 2rem;
    order: 0;
  }
  .instructions--media {
    max-width: 50%;
    order: -1;
  } 
 /* 1) On aligne les deux blocs (texte + média) à la même hauteur */
  .instructions--wrapper {
    align-items: start; /* ou stretch si tu veux qu’elles aient la même hauteur limitée */
  }

  .instructions--media {
    flex: 0 0 60%;        /* conserve ton ratio 40/60 */
    max-width: 60%;
    max-height: 70vh;     /* ne dépassera jamais 70% de la hauteur de la fenêtre */
    overflow: hidden;
    display: flex;
  }

  .instructions--media img,
  .instructions--media video {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* remplit le conteneur sans déformer */
    display: block;
  }
}

}
