/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 86:0 Unexpected "<"
Line 89:19 Expected identifier but found whitespace
Line 89:21 Unexpected "{"
Line 89:30 Expected ":"
Line 137:0 Unexpected "<"
Line 232:0 Unexpected "<"
Line 282:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .custom-carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background-color: #f9f9f9;
  }

  .custom-carousel-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
  }

  .custom-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 20px 0 340px;
  }

  .custom-carousel::-webkit-scrollbar {
    display: none;
  }

  .carousel-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .carousel-item video,
  .carousel-item img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }

  .carousel-prev,
  .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: 22px;
    font-weight: bold;
  }

  .carousel-prev {
    left: 20px;
  }

  .carousel-next {
    right: 20px;
  }
</style>
<style>
.garantie-90-section {
  background-color: {{ section.settings.background_color | default: '#262523' }};
  padding: 60px 20px;
  border-radius: 20px;
}

.garantie-90-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.garantie-90-badge {
  flex: 0 0 280px;
  max-width: 280px;
}

.garantie-90-badge img {
  width: 100%;
  height: auto;
}

.garantie-90-texte {
  flex: 1 1 500px;
  color: white;
  font-size: 16px;
}

.garantie-90-texte strong {
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
  color: white;
}

@media screen and (max-width: 768px) {
  .garantie-90-inner {
    flex-direction: column;
    text-align: center;
  }

  .garantie-90-texte {
    text-align: center;
  }
}
</style>
<style>
.avis-loox-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.avis-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  text-align: center;
  flex-wrap: wrap;
}

.avis-header img {
  height: 58px;
  max-width: 190px;
  object-fit: contain;
}

.avis-header span {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto 30px;
}

@media (min-width: 750px) {
  .avis-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 749px) {
  .avis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.avis-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  padding: 16px;
  text-align: left;
}

.avis-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.avis-card h4 {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.avis-card p {
  font-size: 13px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.etoiles {
  color: #00b67a;
  margin-bottom: 6px;
  font-size: 14px;
}

#voir-plus-avis {
  display: block;
  margin: 0 auto 20px;
  padding: 10px 18px;
  background-color: #262523;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
</style>
<style>
  .multicolumn-section {
    text-align: center;
    padding: 50px 20px;
  }
  .multicolumn-section h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .multicolumn-section p.subheading {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .multicolumn-section h2,
.multicolumn-section p.subheading {
  text-align: center;
}

  .multicolumn-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .multicolumn-item {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    max-width: 300px;
    flex: 1 1 280px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  .multicolumn-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .multicolumn-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .multicolumn-item p {
    font-size: 14px;
    color: #444;
  }
</style>