/** Shopify CDN: Minification failed

Line 168:0 Unexpected "<"
Line 172:14 Expected identifier but found whitespace
Line 172:16 Unexpected "{"
Line 172:25 Expected ":"
Line 172:51 Expected ":"
Line 173:17 Expected identifier but found whitespace
Line 173:19 Unexpected "{"
Line 173:28 Expected ":"
Line 173:57 Expected ":"
Line 181:6 Expected identifier but found whitespace
... and 26 more hidden warnings

**/

/* ===== Section texte défilant (Nos avantages) ===== */

/* Pastilles plus grandes */
.marquee-item {
  font-size: 18px !important;
  padding: 14px 20px !important;
}

/* Effet carte sur desktop uniquement */
@media (min-width: 750px) {
  .marquee-section {
    margin: 90px 90px !important;
    border-radius: 10px !important;
  }
}

/* Effet carte sur mobile uniquement */
@media (max-width: 749px) {
  .marquee-section {
    border-radius: 10px !important;
    margin: 10px !important;
  }
}

/* ===== Bouton bannière : version desktop ===== */
@media (min-width: 750px) {
  .banner__buttons .button,
  .image-banner__buttons .button {
    border-radius: 40px !important;
    padding: 20px 20px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    min-width: 260px !important;
    text-align: center;
  }
}

/* ===== Bouton bannière : version mobile ===== */
@media (max-width: 749px) {
  .banner__buttons .button,
  .image-banner__buttons .button {
    border-radius: 30px !important;
    padding: 16px 24px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    display: block;
  }
}

/* ===== Style du titre "Nos avantages" ===== */
.marquee-section h3 {
  font-size: 40px !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 20px;
}
/* Augmenter la hauteur des bannières sur mobile */
@media screen and (max-width: 749px) {
  .banner,
  .image-banner {
    min-height: 80vh; /* occupe toute la hauteur de l'écran */
  }

  .banner__media,
  .image-banner__media {
    min-height: 80vh; 
    object-fit: cover; /* l'image couvre toute la zone */
  }
}

/* --- 1) Annule les règles qui bloquent l’alignement --- */
.banner__content,
.image-banner__content {
  max-width: none !important;
  margin-left: 0 !important;           /* retire le forçage côté gauche */
}

/* --- 2) Applique la largeur sur la box interne (safe) --- */
.banner__box,
.image-banner__box {
  max-width: 800px;                    /* ta largeur contrôlée */
  margin-left: 0;                      /* laisse Dawn gérer l’alignement */
}

/* Hauteur mobile (garde si tu veux une grande bannière) */
@media (max-width: 749px){
  .banner, .image-banner { min-height: 80vh; }
  .banner__media, .image-banner__media { min-height: 80vh; object-fit: cover; }
}

@media screen and (max-width: 749px) {
  .texte-banniere-mobile {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
  }

  .section-banniere-relative {
    position: relative;
  }
}
@media screen and (max-width: 749px) {
  .banner__content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    text-align: center;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    display: flex;
    flex-direction: column;
  }
}

/* ===== Ajustement du titre produit (thème Dawn) ===== */
.product__title .heading.h2,
.product__title.heading.h2,
.product__title h1 {
  font-size: 2.5rem !important;   /* ≈22px desktop */
  font-weight: 900 !important;    /* Semi-bold élégant */
  line-height: 1.3 !important;    /* Meilleure aération */
  color: #1a1a1a !important;      /* Gris foncé chic */
  letter-spacing: -0.3px;
  margin-bottom: 10px !important;
}

/* Version mobile */
@media (max-width: 768px) {
  .product__title .heading.h2,
  .product__title.heading.h2,
  .product__title h1 {
    font-size: 2.5rem !important;  /* ≈17-18px mobile */
  }
}
.collection-list__item a::after {
    white-space: nowrap;  /* empêche le retour à la ligne */
    margin-left: 5px;     /* espace entre le texte et la flèche */
}
/* Cacher la flèche uniquement dans les cartes de collections */
.collection-list .card__heading .icon-arrow {
    display: none !important;
}

<style>
.trust-icons {
  width: 100%;
  text-align: center;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.trust-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: center;
  gap: {{ section.settings.desktop_gap }}px;
  max-width: 1300px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-item img {
  width: {{ section.settings.icon_size }}px;
  height: {{ section.settings.icon_size }}px;
  object-fit: contain !important;
  display: block;

  /* ------- 🔧 AJOUT ALIGNEMENT PARFAIT ------- */
  aspect-ratio: 1 / 1;
  padding: 10px; /* uniformise l’espace interne des icônes */
  box-sizing: border-box;
  /* ------------------------------------------ */
}

.trust-item h3 {
  font-size: {{ section.settings.title_size }}px;
  font-weight: 700;
  color: {{ section.settings.text_color }};
  margin: 0;
  line-height: 1.3;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {

  {% if section.settings.slider_mobile %}
  .trust-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
  }

  .trust-slider::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 0 32px;
    box-sizing: border-box;
  }

  .trust-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .trust-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c7c7c7;
    display: inline-block;
  }

  .trust-dots .active {
    background: {{ section.settings.text_color }};
  }
  {% endif %}

}
</style>

