/** Shopify CDN: Minification failed

Line 138:0 All "@import" rules must come first
Line 139:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

  .hzn-blog-section {
    background-color: #f2f2f2;
    padding: 4rem 2rem;
    font-family: 'Poppins', sans-serif;
  }

  .hzn-blog-heading {
    text-align: center;
    color: #111;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .hzn-blog-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hzn-blog-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    scroll-snap-align: center;
  }

  .hzn-blog-card:hover {
    transform: translateY(-5px);
     border-color: #aaff00;
  box-shadow: 0 0 10px #aaff00;
  }

  .hzn-blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .hzn-blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .hzn-blog-content {
    padding: 1.5rem;
  }

  .hzn-blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    color: #111;
  }

  .hzn-blog-content p {
    font-size: 1rem;
    opacity: 0.85;
    color: #444;
  }
.hzn-blog-section {
  position: relative;
  overflow: hidden;
}

/* Image gauche déjà en place */
.hzn-leaf-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: 400px;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

/* Image droite miroir */
.hzn-leaf-bg.mirror-right {
  left: auto;
  right: 0;
  top: 0;
  transform: scaleX(-1); /* miroir horizontal */
  max-width: 300px;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

@media (max-width: 768px) {
  .hzn-leaf-bg {
    max-width: 220px;
    opacity: 0.2;
  }
  .hzn-leaf-bg.mirror-right {
    max-width: 180px;
    top: 0;
    right: 0;
  }
}


  @media (max-width: 768px) {
    .hzn-blog-wrapper {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      flex-wrap: nowrap;
      padding-bottom: 1rem;
    }

    .hzn-blog-card {
      flex: 0 0 85%;
      max-width: 85%;
      margin-right: 1rem;
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

.custom-fleurs-section {
  position: relative;
  padding: 4rem 2rem;
  font-family: 'Poppins', sans-serif;
  background-color: #f2f2f2;
  transition: background-image 0.6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-fleurs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.75), rgba(255,255,255,0.60));
  z-index: 1;
  pointer-events: none;
}

/* ✅ Wrapper pour centrer le contenu */
.custom-fleurs-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.custom-fleurs-heading {
  margin-bottom: 40px;
}

.custom-fleurs-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  text-align: left;
}

.custom-fleurs-description-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
  margin-top: 10px;
}

.custom-fleurs-description-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

.custom-fleurs-description-btn {
  display: flex;
  align-items: flex-start;
}

.custom-fleurs-link-btn {
  background-color: #aaff00;
  color: #000;
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.custom-fleurs-link-btn:hover {
  background-color: #00c853;
  color: #fff;
}

.custom-fleurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.custom-fleurs-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.custom-fleurs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.custom-fleurs-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.custom-fleurs-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.custom-fleurs-description {
  font-size: 1rem;
  color: #444;
}

@media (max-width: 768px) {
  .custom-fleurs-section {
    padding: 2rem 0;
  }

  .custom-fleurs-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1rem 1rem;
  }

  .custom-fleurs-card {
    scroll-snap-align: center;
    flex: 0 0 90vw;
    max-width: 90vw;
    margin-right: 1rem;
  }

  .custom-fleurs-title {
    font-size: 1.2rem;
  }

  .custom-fleurs-heading h2 {
    text-align: center;
  }

  .custom-fleurs-description-row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .custom-fleurs-description-text {
    text-align: center;
  }

  .custom-fleurs-description-btn {
    justify-content: center;
    margin-top: 20px;
  }
}
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  cursor: pointer;
  padding: 15px;
  font-weight: 600;
  position: relative;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #eee;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 15px;
  color: #555;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 10px 15px 20px;
}

.faq-item.active .faq-question::after {
  content: "−";
}