/** Shopify CDN: Minification failed

Line 6:0 Unexpected "@"

**/
@ -1,113 +0,0 @@
.arvouet-store {
  margin-top: var(--m-top);
  margin-bottom: var(--m-bottom);
  padding: 80px 0;
  background-color: transparent;
}

.arvouet-store__container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.arvouet-store__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

/* Collage System */
.arvouet-store__collage {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.collage-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.collage-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Positionnement décalé spécifique à ton image */
.collage-col--1 {
  align-self: flex-end; /* Pousse l'image 1 vers le bas */
}

.collage-col--2 {
  margin-top: -40px; /* Remonte l'image centrale */
}

.collage-col--3 {
  gap: 30px; /* Espace entre les deux images de droite */
}

/* Texte (Tailles de police héritées du thème selon ton souhait) */
.arvouet-store__content {
  max-width: 500px;
}

.arvouet-store__title {
  color: var(--color-main, #631310);
  text-transform: uppercase;
  margin-bottom: 25px;
  line-height: 1.2;
}

.arvouet-store__text {
  color: #333;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 35px;
}

.dispo-mag {
    background-color: var(--color-secondary);
    padding-bottom: 100px;
}

/* Bouton Contour */
.arvouet-store__btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--color-main, #631310);
  color: var(--color-main, #631310);
  text-decoration: none;
  font-family: var(--font-text);
  font-size: 13px;
  transition: all 0.3s ease;
}

.arvouet-store__btn:hover {
  background-color: var(--color-main, #631310);
  color: #fff;
}

/* Mobile */
@media screen and (max-width: 990px) {
  .arvouet-store__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .arvouet-store__content {
    text-align: center;
    max-width: 100%;
  }

  .arvouet-store__collage {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .collage-col--2 {
    margin-top: 0;
  }
}