/** Shopify CDN: Minification failed

Line 2882:0 Unexpected "{"
Line 2882:1 Expected identifier but found "%"
Line 2883:58 Expected identifier but found whitespace
Line 2885:1 Expected identifier but found "%"

**/
.lp-header {
  background: var(--lp-header-bg, #fff9ee);
  border-bottom: 0;
}
header.header {
  display: none;
}
@media (max-width : 900px) {
.header__icon--cart {
 margin-right : 5px;
}
}

.lp-header .page-width {
  max-width: 1400px; /* un peu plus large pour ressembler à ton screenshot */
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

/* LOGO */
.lp-header__brand {
  /* petit placement “à gauche mais pas collé” */
  transform: translateX(40px);
}
.header__heading-logo {
    max-width : 70%;
}

/* RIGHT GROUP */
.lp-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* CTA pill */
.lp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 54px;
  padding: 0 34px;

  border: 1.5px solid #000;
  border-radius: 9999px;
  background: transparent;

  color: #000;
  text-decoration: none;

  font-family: var(--font-body-family, system-ui);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 16px;
}

.lp-header__cta:hover {
  background-color : #000;
  color : #fff;
}

/* mobile (simple) */
@media (max-width: 749px) {
  .lp-header__inner { min-height: 74px; }
  .lp-header__cta { display : none; }
  .header__heading-logo {
    max-width: 60%;
  }
  .page-width {
    padding : 0;
  }
  .p-hero__content {
    margin : 0 1.5rem;
  }
}

/* 

CSS DU HERO

*/

.lp-hero {
  background: var(--lp-hero-bg, #F6F8C7);
}

.lp-hero .page-width {
  max-width: 1400px;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 990px) {
  .lp-hero__media {
    order: 2;
  }

  .lp-hero__content {
    order: 1;
  }
}

/* Media */
.lp-hero__mediaWrap {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(0,0,0,.04);
}

.lp-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-hero__imgPlaceholder {
  aspect-ratio: 4/3;
}

/* Rating row */
.lp-hero__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 14px;
}

.lp-hero__avatars {
  display: flex;
  align-items: center;
}

.lp-hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid var(--lp-hero-bg, #F6F8C7);
  object-fit: cover;
  margin-left: -8px;
}
.lp-hero__avatar:first-child { margin-left: 0; }

.lp-hero__stars {
  display: inline-flex;
  margin-left : 5px;
}

.lp-hero__star {
  width: 30px;
  height: 30px;
  margin-right : -5px;
  background: #23a455;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.3l-6.18 3.7 1.64-7.03L2 9.24l7.19-.61L12 2l2.81 6.63 7.19.61-5.46 4.73 1.64 7.03z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.3l-6.18 3.7 1.64-7.03L2 9.24l7.19-.61L12 2l2.81 6.63 7.19.61-5.46 4.73 1.64 7.03z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.lp-hero__ratingText {
    margin-left:5px;
  font-weight: 700;
  font-size: 16px;
}

/* Heading */
.lp-hero__heading {
  font-size: 3rem;
  line-height: 1.06;
  letter-spacing: -0.5px;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  white-space: pre-line;
}

/* Features row */
.lp-hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 12px 0 18px;
  border-top: 0;
}

.lp-hero__feature {
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
}

.lp-hero__feature:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(0,0,0,.25);
}

.lp-hero__featureIcon {
  width: 34px;
  height: 34px;
  color: #000;
}
.lp-hero__featureIcon svg { width: 100%; height: 100%; display: block; }

.lp-hero__featureText {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  white-space: pre-line;
}

/* Bullets */
.lp-hero__bullets { margin-top: 6px; }

.lp-hero__bullet {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 6px 0;
}

.lp-hero__check {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: #ff680a;
  border: 1px solid #000;
  position: relative;
  margin-top: 2px;
}
.lp-hero__check::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  left: 4px;
  top: 5px;
}

.lp-hero__bulletText p { margin: 0; font-size: 16px; line-height: 1.4; }
.lp-hero__bulletText strong { font-weight: 800; }

.lp-hero__divider {
  border-bottom: 1px dashed rgba(0,0,0,.35);
}

/* Learn link */
.lp-hero__learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 14px;
  color: #000;
  font-weight: 700;
}
.modal_link {
    text-decoration : underline;
}

.lp-hero__info {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

/* CTA */
.lp-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  max-width: 520px;

  background: #f4742a;
  border: 1.5px solid #000;
  border-radius: 9999px;

  padding: 18px 18px;

  text-decoration: none;
  color: #000;
  font-weight: 900;
  font-size: 18px;
}
.lp-hero__cta:hover {
    background: #081fb0;
    color: #f4742a;
}

.lp-hero__arrow { font-size: 20px; }

/* Trust row */
.lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-top: 14px;
  align-items: center;
}

.lp-hero__trustItem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.lp-hero__trustIcon {
  width: 18px;
  height: 18px;
}
.lp-hero__trustIcon svg { width: 100%; height: 100%; display: block; }

/* Mobile layout like screenshot: image first, content below */
@media (max-width: 989px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lp-hero__media { order: 0; }
  .lp-hero__content { order: 1;
    padding : 0 1.5rem;
}
.lp-hero__mediaWrap {
    border-radius :0;
}

  .lp-hero__heading {
    font-size: 30px;
  }

  .lp-hero__cta {
    max-width: 100%;
  }
}
/* permet de positionner l'overlay par-dessus l'image */
.lp-hero__mediaWrap {
  position: relative;
}

/* par défaut: overlay caché, desktop visible */
.lp-hero__features--overlay { display: none; }
.lp-hero__features--desktop { display: grid; }

/* MOBILE: features sur l'image */
@media (max-width: 989px) {
  .lp-hero__features--desktop { display: none; }
  .lp-hero__features--overlay {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin :0;
  }

  /* pour matcher le look “posé sur l'image” */
  .lp-hero__features--overlay .lp-hero__feature {
    padding: 8px 6px;
  }

  .lp-hero__features--overlay .lp-hero__featureIcon {
    width: 30px;
    height: 30px;
  }

  .lp-hero__featureText {
    font-size: 11px;
  }
  .lp-hero__features--overlay {
    font-size: 9px;
  }

  /* séparateurs verticaux visibles sur l'overlay */
  .lp-hero__features--overlay .lp-hero__feature:not(:first-child)::before {
    top: 10px;
    bottom: 10px;
    background: rgba(0,0,0,.25);
  }
}
/* Modal */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lp-modal[aria-hidden="false"] {
  display: grid;
  place-items: center;
  padding: 18px;
}

.lp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.lp-modal__dialog {
  position: relative;
  width: min(520px, 92vw);
  max-height: 86vh;
  overflow: auto;

  background: #fff;
  border: 3px solid #5433eb;
  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.lp-modal__content {
  padding: 26px 22px 18px;
}

.lp-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 34px;
  height: 34px;
  border-radius: 9999px;

  border: 2px solid #000;
  background: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

.lp-modal__title {
  margin: 10px 0 18px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.1;
  font-size: 18px;
}

.lp-modal__list { margin-top: 4px; }

.lp-modal__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
}

.lp-modal__check {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: #ff680a;
  border: 1px solid #000;
  position: relative;
  margin-top: 2px;
}
.lp-modal__check::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  left: 4px;
  top: 5px;
}

.lp-modal__text {
  font-size: 16px;
  line-height: 1.35;
}

.lp-modal__divider {
  border-bottom: 1px dashed rgba(0,0,0,.35);
}

/* stop scroll background when modal open */
html.lp-modal-open,
html.lp-modal-open body {
  overflow: hidden;
}

/* make learn "link" look like link even if it's a button */
.lp-hero__learn {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
body {
    color: #000;
}

/* ======================
   LPV1 – Stories (Videos)
   ====================== */

.lpv1-stories{
  background: #fff9ee;
  padding: var(--lpv1-stories-padding-y, 64px) 0;
}

.lpv1-stories__inner{
  max-width: var(--lpv1-stories-max, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

.lpv1-stories__heading{
  margin: 0 0 28px;
  text-align: center;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size : 30px;
}

.lpv1-stories__wrap{
  position: relative;
}

.lpv1-stories__track{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.lpv1-stories__card{
  border: 4px solid #061faf;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
}

.lpv1-stories__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lpv1-stories__placeholder{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 18px;
}

/* Nav (mobile chevron button) */
.lpv1-stories__nav{
  display: none; /* activé en JS si overflow */
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid #000;
  background: #F6F8C8;
  color: #000;
  box-shadow: 0 2px 0 rgba(0,0,0,0.12);
  z-index: 2;
  cursor: pointer;
}

.lpv1-stories__nav svg{
  width: 20px;
  height: 20px;
}

/* Mobile carousel */
@media (max-width: 989px){
  .lpv1-stories__heading{
    text-align: left;
    margin-bottom: 18px;
    text-align : center;
  }

  .lpv1-stories__track{
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 60px;
  }

  .lpv1-stories__card{
    flex: 0 0 auto;
    width: min(78vw, 340px);
    scroll-snap-align: start;
  }
  .lpv1-stories {
    padding-bottom : 0;
  }
}
@media (max-width:780px) {
  .lpv1-stories__heading {
     font-size : 22px;
  }
  .lpv1-stories__card {
        width: 250px;
  }
}
.lpv1-stories__media{ position:relative; }

.lpv1-stories__overlay{
  position:absolute;
  inset:0;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}

.lpv1-stories__poster{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.lpv1-stories__play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:64px;
  height:64px;
  border-radius:999px;
  background:rgba(0,0,0,.45);
}

.lpv1-stories__play:before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-35%,-50%);
  border-style:solid;
  border-width:12px 0 12px 18px;
  border-color:transparent transparent transparent #fff;
}

/* Quand la vidéo joue, on cache l’overlay */
.lpv1-stories__media.is-playing .lpv1-stories__overlay{ display:none; }


/* ==================
   LPV1 – Press Quotes
   ================== */

.lpv1-press{
  background: var(--lpv1-press-bg, #F6F8C8);
}

.lpv1-press__inner{
  max-width: var(--lpv1-press-max, 1200px);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.lpv1-press__heading{
  margin: 0 0 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: 30px;
}

.lpv1-press__logos{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  justify-items: center;
  margin: 10px auto 28px;
  max-width: 920px;
}

.lpv1-press__logo{
  display: grid;
  place-items: center;
}

.lpv1-press__logo img{
    height: auto;
    max-width: 110px;
  display: block;
  object-fit: contain;
  filter: contrast(1.1);
}

/* Carousel */
.lpv1-press__carousel{
  position: relative;
  margin: 0 auto;
  max-width: 980px;
}

.lpv1-press__viewport{
  overflow: hidden;
}

.lpv1-press__track{
  display: flex;
  width: 100%;
  transition: transform 260ms ease;
  will-change: transform;
}

.lpv1-press__slide{
  flex: 0 0 100%;
  padding: 10px 70px; /* space for arrows on desktop */
  box-sizing: border-box;
}

.lpv1-press__quote{
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.lpv1-press__quote p{
  margin: 0;
}

.lpv1-press__quote strong{
  font-weight: 800;
}

/* Arrows */
.lpv1-press__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #000;
  background: #fff9ee;
  color: #000;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.lpv1-press__nav svg{
  width: 18px;
  height: 18px;
}

.lpv1-press__nav--prev{ left: 0; }
.lpv1-press__nav--next{ right: 0; }

/* Dots */
.lpv1-press__dots{
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.lpv1-press__dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  padding: 0;
}

.lpv1-press__dot[aria-current="true"]{
  background: rgba(0,0,0,1);
}

/* Mobile */
@media (max-width: 989px){
  .lpv1-press__inner{
    text-align: center;
  }

  .lpv1-press__logos{
    max-width: 340px;
    gap: 18px;
    margin-bottom: 18px;
  }

  .lpv1-press__logo img{
    height: 40px;
  }

  .lpv1-press__slide{
    padding: 6px 10px; /* arrows not visible on mobile like your capture */
  }

  .lpv1-press__nav{
    display: none;
  }
}

/* =========================
   LPV1 – 6 Features
   ========================= */

.lpv1-6features{
  background: var(--lpv1-6features-bg, #F6F8C8);
  padding: var(--lpv1-6features-padding-y, 64px) 0;
}

.lpv1-6features__inner{
  max-width: var(--lpv1-6features-max, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

.lpv1-6features__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.lpv1-6features__content{
  padding-right: 6px;
}

.lpv1-6features__heading{
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: 30px;
}

.lpv1-6features__text{
  margin-top: 0;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.lpv1-6features__text.rte p{
  margin: 0 0 14px;
}

.lpv1-6features__text--secondary{
  margin-top: 10px;
}

/* MEDIA */
.lpv1-6features__media{
  overflow: hidden;
  position: relative; /* required for absolute image on desktop */
}

.lpv1-6features__img{
  width: 100%;
  display: block;
  object-fit: cover;
}

.lpv1-6features__img--placeholder{
  background: rgba(0,0,0,0.08);
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}


/* =========================
   Desktop fixes
   - Image RIGHT
   - Image height follows left column height
   - Prevent intrinsic sizing from forcing grid row height
   ========================= */
@media (min-width: 990px){
  /* Allow grid items to shrink (important in CSS grid) */
  .lpv1-6features__content,
  .lpv1-6features__media{
    min-height: 0;
  }

  /* Ensure correct order: content left, media right */
  .lpv1-6features__content{ order: 1; }
  .lpv1-6features__media{ order: 2; }

  /* Make media cell stretch with the row (row height driven by left content) */
  .lpv1-6features__media{
    align-self: stretch;
    height: auto;
  }

  /* Take image out of flow so it does NOT define grid row height */
  .lpv1-6features__img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  /* Placeholder should also fill the cell */
  .lpv1-6features__img--placeholder{
    position: absolute;
    inset: 0;
  }
}

/* Features grid (2 cols) */
.lpv1-6features__features{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.lpv1-6features__feature{
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 12px;
  align-items: start;
}

.lpv1-6features__feature-icon{
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}

.lpv1-6features__feature-icon-img{
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

.lpv1-6features__feature-icon-img--placeholder{
  width: 25px;
  height: 25px;
  border-radius: 12px;
  background: rgba(0,0,0,0.1);
}

.lpv1-6features__feature-title{
  font-weight: 700;
  line-height: 1.25;
  font-size: 15px;
  margin-top: 2px;
}

.lpv1-6features__feature-body{
  grid-column: 2 / -1;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.35;
}

/* Mobile */
@media (max-width: 989px){
  .lpv1-6features__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lpv1-6features__content{
    text-align: center;
  }

  .lpv1-6features__text{
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* On mobile, keep image in normal flow */
  .lpv1-6features__media{
    position: relative;
    order : 2;
  }

  .lpv1-6features__img{
    position: static;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .lpv1-6features__features{
    margin-top: 18px;
    gap: 18px 18px;
  }

  .lpv1-6features__feature{
    grid-template-columns: 1fr;
    text-align: left;
  }

  .lpv1-6features__feature-body{
    grid-column: auto;
  }
  .lpv1-6features__img {
    height : 350px;
  }
}


/* =========================
   LPV1 – Reviews
   ========================= */

.lpv1-reviews{
  background: var(--lpv1-reviews-bg, #F6F8C8);
}

.lpv1-reviews__inner{
  max-width: var(--lpv1-reviews-max, 1200px);
  margin: 0 auto;
  text-align: center;
}

.lpv1-reviews__heading{
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: 30px;
}

.lpv1-reviews__meta{
  display: grid;
  gap: 6px;
  justify-items: center;
  margin-bottom: 26px;
}

.lpv1-reviews__meta-top{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.lpv1-reviews__meta-label{
  font-size: 18px;
}

.lpv1-reviews__meta-stars{
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lpv1-reviews__meta-sub{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.lpv1-reviews__meta-subtext p{ margin: 0; }

.lpv1-reviews__trust-logo{
  height: 18px;
  width: auto;
  display: block;
}

.lpv1-reviews__trust-text{
  font-weight: 700;
}

/* stars (simple) */
.lpv1-reviews__star{
  font-size: 18px;
  line-height: 1;
  opacity: 0.25;
      color: #41b07e;
}
.lpv1-reviews__star.is-on{
  opacity: 1;
}

/* carousel */
.lpv1-reviews__wrap{
  position: relative;
}

.lpv1-reviews__track{
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 48px 6px; /* space for arrows */
}

.lpv1-reviews__track::-webkit-scrollbar{ height: 0; }

.lpv1-reviews__card{
  scroll-snap-align: center;
  flex: 0 0 calc((100% - 56px) / 3); /* 3 cards desktop */
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 26px 22px 18px;
  box-shadow: 5px 5px #000; 
  text-align: center;
  min-height: 360px;
}

.lpv1-reviews__card-stars{
  display: inline-flex;
  gap: 6px;
  margin-bottom: 10px;
}

.lpv1-reviews__card-title{
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.lpv1-reviews__card-body{
  font-size: 14px;
  line-height: 1.35;
  margin: 0 auto 14px;
  max-width: 34ch;
}

.lpv1-reviews__card-body p{ margin: 0; }

.lpv1-reviews__card-author{
  font-weight: 700;
  font-size: 13px;
  margin: 14px 0 18px;
}

/* badge “Acheteur vérifié” */
.lpv1-reviews__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1.5px solid #000;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}

.lpv1-reviews__badge-icon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #2bb673;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* arrows */
.lpv1-reviews__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.lpv1-reviews__nav svg{ width: 15px; height: 15px; }



/* dots */
.lpv1-reviews__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.lpv1-reviews__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.lpv1-reviews__dot[aria-current="true"]{
  background: #000;
  border-color: #000;
}
  .lpv1-reviews__nav--prev{ left: 2%; }
.lpv1-reviews__nav--next{ right: 2%; }

/* mobile */
@media (max-width: 989px){
  .lpv1-reviews__track{
    padding: 10px 0px 6px 10px;
    gap: 18px
  }

  .lpv1-reviews__card{
    flex: 0 0 82%;
    min-height: 320px;
  }

  .lpv1-reviews__nav{
    width: 30px;
    height: 30px;
    top: 106%;
  }
  .lpv1-reviews__nav--prev{ left: 10px; }
.lpv1-reviews__nav--next{ right: 10px; }


}
/* =========================
   LPV1 – Add to cart (V0)
   ========================= */

.lpv1-atc{
  background: var(--lpv1-atc-bg, #F6F8C8);
  padding: var(--lpv1-atc-padding-y, 40px) 0;
}

.lpv1-atc__inner{
  max-width: var(--lpv1-atc-max, 1400px);
  margin: 0 auto;
  padding: 0 20px;
}

.lpv1-atc__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* LEFT sticky */
.lpv1-atc__left-sticky{
  position: sticky;
  top: 18px;
}

.lpv1-atc__main{
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,0.04);
}

.lpv1-atc__main-img{
  width: 100%;
  height: auto;
  display: block;
}

/* thumbs */
.lpv1-atc__thumbs{
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}

.lpv1-atc__thumb{
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.lpv1-atc__thumb.is-active{
  border-color: #f5d84b;
}

.lpv1-atc__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* chips */
.lpv1-atc__chips{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 14px;
}

.lpv1-atc__chip{
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 3px;
  align-items: center;
background: #081faf;
    border-radius: 12px;
    padding: 3px;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
}

.lpv1-atc__chip-ico img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.lpv1-atc__chip-ico-ph{
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(0,0,0,0.15);
  display: block;
}
.lpv1-atc__chip-ico {
  margin : auto;
}

/* ===== LPV1 ATC — Desktop layout stable ===== */
@media (min-width: 990px){

  /* Variable d’offset (si un header sticky existe, ajuste à 80px par ex.) */
  .lpv1-atc{
    --lpv1-atc-sticky-top: 18px;
  }

  /* Important: ne jamais casser sticky via overflow/transform sur parents */
  .lpv1-atc,
  .lpv1-atc__inner,
  .lpv1-atc__grid{
    overflow: visible !important;
  }
  .lpv1-atc__left,
  .lpv1-atc__left-sticky{
    transform: none !important;
    filter: none !important;
  }

  /* Grid: éviter les débordements (minmax(0,1fr) est crucial en CSS grid) */
  .lpv1-atc__grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  /* Sticky gauche: stable */
  .lpv1-atc__left-sticky{
    position: sticky;
    top: var(--lpv1-atc-sticky-top);
    align-self: start;
  }

  /* Scroll interne droite: hauteur calculée, pas 100vh brut */
  .lpv1-atc__right-scroll{
    max-height: calc(100vh - (var(--lpv1-atc-sticky-top) * 2));
    overflow-y: auto;
    padding-right: 10px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    /* optionnel: évite que le contenu “saute” quand la scrollbar apparaît */
    scrollbar-gutter: stable both-edges;
  }

  /* Hide scrollbar (optionnel) */
  .lpv1-atc__right-scroll{
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .lpv1-atc__right-scroll::-webkit-scrollbar{
    width: 0;
    height: 0;
    display: none;
  }
}

/* Mobile: stack */
@media (max-width: 989px){
  .lpv1-atc__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lpv1-atc__left-sticky{
    position: static;
  }
  .lpv1-atc__thumbs{
    grid-template-columns: repeat(5, minmax(0,1fr));
  }
}
.lpv1-atc__main{
  position: relative;
}

.lpv1-atc__main-img{
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 140ms ease;
  will-change: opacity;
}

.lpv1-atc__main-img.is-fading{
  opacity: 0.15;
}

/* =========================
   LPV1 – Bundle (Right column module)
   File: lp-v1.css
   ========================= */

:root{
  --lpv1-bundle-bg: transparent;
  --lpv1-bundle-text: #111;
  --lpv1-bundle-muted: rgba(0,0,0,.62);

  --lpv1-bundle-card: #fff;
  --lpv1-bundle-border: rgba(0,0,0,.14);

  --lpv1-bundle-yellow: #F4E34D;
  --lpv1-bundle-yellow-soft: rgba(244,227,77,.35);

  --lpv1-bundle-radius-lg: 16px;
  --lpv1-bundle-radius-md: 12px;
  --lpv1-bundle-radius-sm: 10px;

  --lpv1-bundle-shadow: 0 8px 0 rgba(0,0,0,.08);
}

/* Wrapper */
.lpv1-bundle{
  background: var(--lpv1-bundle-bg);
  color: var(--lpv1-bundle-text);
}

/* ---------- 1) Description product ---------- */

.lpv1-bundle__desc{
  margin-bottom: 18px;
}

.lpv1-bundle__rating{
  color: #41b07e;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lpv1-bundle__stars{
  letter-spacing: 0.12em;
  font-size : 20px;
}

.lpv1-bundle__rating-text{
  color: var(--lpv1-bundle-text);
}

.lpv1-bundle__rating-source{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lpv1-bundle-text);
  font-weight: 600;
}

.lpv1-bundle__title{
  margin: 0 0 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: 30px;
}

.lpv1-bundle__text{
  margin-top: 0;
  color: var(--lpv1-bundle-text);
  font-size: 16px;
  line-height: 1.4;
}

.lpv1-bundle__text.rte p{
  margin: 0 0 14px;
}

/* Bullets list - alignement propre */
.lpv1-bundle__bullets{
  margin-top: 10px;
  display: grid;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(0,0,0,.28);
}

.lpv1-bundle__bullet{
  display: grid;
  gap : 15px;
  grid-template-columns: 22px 1fr; /* un peu plus étroit */
  align-items: center;            /* <-- clé: centre vertical sur 1ère ligne */
}

.lpv1-bundle__bullet-icon{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.lpv1-bundle__bullet-icon img{
  width: 40px;
  height: 40px;
  margin: 0;                      /* évite le décalage */
  display: block;
}

.lpv1-bundle__bullet-text{
  font-size: 14px;
  line-height: 1.35;
}

.lpv1-bundle__bullet-text strong{
  font-weight: 800;
}


/* ---------- 2) Bundle selector + progress ---------- */

.lpv1-bundle__selector{
  margin-top: 16px;
}

.lpv1-bundle__selector-title{
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 16px;
}

/* ===== Progress panel  ===== */
.lpv1-bundle__progress{
  background: #ff680a38;
  border-radius: 12px;

  padding: 16px 16px 14px;
  margin-bottom: 8px;
}

/* TOP: 5 colonnes (titre + sous-texte) */
.lpv1-bundle__top{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  margin-bottom: 5px;
}

.lpv1-bundle__top-item{
  text-align: center;
  font-size: 12px;
  line-height: 1.15;
  color: rgba(0,0,0,0.85);
}

.lpv1-bundle__top-title{
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.lpv1-bundle__top-sub{
  font-size: 12px;
  color: rgba(0,0,0,0.70);
}

/* BAR + dots */
.lpv1-bundle__bar{
  position: relative;
  height: 22px;            /* place pour les dots */
  margin: 6px 0 10px;
}

.lpv1-bundle__bar-track{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  z-index: 1;
}

.lpv1-bundle__bar-fill{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 0%;
  border-radius: 999px;
  background: #000;        /* noir franc */
  z-index: 2;
  transition: width 220ms ease;
}

/* DOTS chico:
   - done = noir plein (reste noir)
   - active = noir + centre jaune
*/
.lpv1-bundle__dot{
  position: absolute;
  left: var(--x);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #ffd8c0;
  box-shadow: 0 0 0 2px #ffd8c0; /* halo jaune */
  z-index: 3;
}

/* done = noir plein, sans centre jaune */
.lpv1-bundle__dot.is-done{
  background: #000;
}
.lpv1-bundle__dot.is-done::after{
  content: none;
}

/* active = noir + centre jaune */
.lpv1-bundle__dot.is-active{
  background: #000;
  transform: translate(-50%, -50%) scale(1.06);
}
.lpv1-bundle__dot.is-active::after{
  content:"";
  position:absolute;
  inset: 3px;
  border-radius: 999px;
  background: #F8F1B9;
}

/* BOTTOM: badges (réduction / livraison offerte) */
.lpv1-bundle__bottom{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.lpv1-bundle__badge{
  justify-self: center;
  min-width: 54px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(0,0,0,0.08);
  color: #000;
      text-align: center;
    line-height: 1;
}

.lpv1-bundle__badge.is-active{
  background: rgba(0,0,0,0.14);
}

/* Hint sous la barre (si présent dans le HTML) */
.lpv1-bundle__hint{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lpv1-bundle__shippingfree{
  font-weight: 800;
}

/* ---------- Items list (cards) ---------- */
.lpv1-bundle__items{
  display: grid;
  gap: 8px;
}

/* Item card */
.lpv1-atc-item{
  background: var(--lpv1-bundle-card, #fff);
  border: 1px solid var(--lpv1-bundle-border, rgba(0,0,0,.14));
  border-radius: 12px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  box-shadow: 0 2px 0 rgba(0,0,0,.04);
}

.lpv1-atc-item__media{
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}

.lpv1-atc-item__img{
  max-width: 80px;
  max-height: 80px;
  object-fit: cover;
  display: block;
      border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.lpv1-atc-item__info {
  padding : 12px 0px 12px 0px;
}

.lpv1-atc-item__name{
  font-weight: 900;
  font-size: 15px;
  line-height: 1.15;
}

.lpv1-atc-item__desc{
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(0,0,0,.62);
}

/* Optionnel: si ton snippet utilise line/meta */
.lpv1-atc-item__line1{
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(0,0,0,.62);
}

.lpv1-atc-item__meta{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.2;
  color: #000;
}

.lpv1-atc-item__meta-ico{
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.lpv1-atc-item__cta{
  display: grid;
  justify-items: end;
  gap: 8px;
  align-items : center;
}

/* ===== Item action (1 seul bouton -> qty) ===== */
.lpv1-atc-item__action{
  width: 100px;
  height: 35px;
  border: 1px solid #000;
    border-radius: 10px;
    overflow: hidden;
    background: #ff680a;
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  margin-right:12px;
}

.lpv1-atc-item__action-add{
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  padding: 0 10px;
}
.lpv1-atc-item__action-add:hover{ filter: brightness(0.98); }
.lpv1-atc-item__action-add:focus-visible{
  outline: 2px solid #000;
  outline-offset: -2px;
}

.lpv1-atc-item__action-qty{
  width: 100%;
  height: 100%;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  justify-items: stretch;
  background: #ffd9c0;
}

.lpv1-atc-item__action.is-qty .lpv1-atc-item__action-add{ display: none; }
.lpv1-atc-item__action.is-qty .lpv1-atc-item__action-qty{ display: grid; }

.lpv1-atc-item__qty-btn{
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.lpv1-atc-item__qty-btn:hover{ background: rgba(0,0,0,0.05); }
.lpv1-atc-item__qty-btn:focus-visible{
  outline: 2px solid #000;
  outline-offset: -2px;
}

.lpv1-atc-item__qty-val{
  font-weight: 900;
  font-size: 14px;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* ---------- 3) Promo bar ---------- */
.lpv1-bundle__promo{
  margin-top: 8px;
  background: #ffd8c0;
  border-radius: 10px;
  padding: 5px 5px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.10);
  font-size: 15px;
}

/* ---------- 4) CTA ---------- */


.lpv1-bundle__ship{
  border-radius: 10px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
}

.lpv1-bundle__ship-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4CD964;
  box-shadow: 0 0 0 4px rgba(76,217,100,.20);
}

.lpv1-bundle__btn{
  margin-top: 5px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #111;
  background: #ff680a;
  color: #111;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 15px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(0,0,0,.10);
  transition: transform .08s ease, filter .15s ease, opacity .15s ease;
}
.lpv1-bundle__btn:hover{
background : #061faf;
color : #ff680a;
}

.lpv1-bundle__btn:active{ transform: translateY(1px); }
.lpv1-bundle__btn[disabled]{ opacity: .55; cursor: not-allowed; }

.lpv1-bundle__btn-price{
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
}

.lpv1-bundle__note{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: rgba(0,0,0,.85);
}

.lpv1-bundle__note:before{
  content: "✓";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  font-weight: 900;
}

/* ---------- Responsive ---------- */
@media (max-width: 989px){
  .lpv1-bundle__title{ font-size: 25px; }


  .lpv1-bundle__bottom{
    gap: 8px;
  }
    .lpv1-bundle__top {
      gap:4px;
    }

  .lpv1-atc-item{
    grid-template-columns: 58px 1fr auto;

  }

  .lpv1-atc-item__media,
  .lpv1-atc-item__img{
    width: 58px;
  }
  .lpv1-atc-item__info {
    padding: 6px 0px 0px 0px;
  }
}
.allergenes {
      font-size: 13px;
    font-weight: 500;
}

@media (max-width: 520px){
  .lpv1-bundle__progress{ 
    padding: 12px 8px 8px; }
  .lpv1-bundle__top-sub{ font-size: 11px; }
  .lpv1-bundle__badge{ font-size: 11px; padding: 6px 8px; }
}
/* =========================
   LPV1 – Progress bar (SAFE + VISIBLE)
   Colle tout en bas de lp-v1.css
   ========================= */

.lpv1-bundle__progress .lpv1-bundle__bar{
  position: relative;
  height: 22px;          /* espace pour dots */
  width:85%;
  margin:auto;
  margin-bottom: 4px;
}

/* La barre grise (track) */
.lpv1-bundle__progress .lpv1-bundle__bar-track{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;
  background: rgb(255 216 192);
  display: block;
  opacity: 1;
  border: 1px solid #000;
  z-index: 1;
}

/* Le remplissage noir */
.lpv1-bundle__progress .lpv1-bundle__bar-fill{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  height: 6px;
  border-radius: 999px;
  background: #000;

  display: block;
  opacity: 1;

  z-index: 2;
  transition: width 220ms ease;
}

/* dots au-dessus */
.lpv1-bundle__progress .lpv1-bundle__dot{
  z-index: 3;
}
@media (max-width:800px) {

  .lpv1-atc__inner {
    padding : 0;
  }
  .lpv1-atc__main {
    border-radius : 0;
  }
  .lpv1-atc__thumbs {
    padding : 0px 5px;
    gap : 5px;
  }
  .lpv1-atc__chip{
  display: flex;
  flex-direction: column;     
  align-items: center;
  justify-content: center;
  text-align: center;
  padding : 5px;
  font-weight : 500;
  font-size : 12px;
  line-height : 1;
  gap : 0;
}
.lpv1-atc__chip-ico img {
      width: 25px;
    height: 25px;
}
.lpv1-atc__chips {
margin-top : 0;
  gap : 5px;
padding : 8px;
}
.lpv1-bundle {
  padding : 0px 8px;
}
.lpv1-bundle__rating {
  font-size : 12px;
}
.lpv1-bundle__text {
    font-size: 14px;
}
.lpv1-bundle__top-title {
  font-size : 11px;
}
.lpv1-bundle__top-sub {
  font-size : 10px;
}
.lpv1-atc-item {
  gap : 6px;
}
.lpv1-atc-item__action {
  width : 75px;
  Height : 35px;
  border-radius : 4px;
 
}
.lpv1-atc-item__action-add {
  padding : 0 2px;
  font-size : 11px;
   color : #000;
}
.lpv1-atc-item__qty-btn {
  color : #000;
}
}
/* =========================
   LP Cart bubble (Sense-like)
   ========================= */

/* Le lien cart doit être le repère de positionnement */
.lp-header .header__icon--cart,
.lp-header #cart-icon-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Pastille comme Sense */
.lp-header .cart-count-bubble,
.lp-header .lpv1-cart-count-bubble {
  position: absolute;
  right: -0.35rem;
  top: -0.35rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 1.8rem;
  height: 1.8rem;
  padding: 0 0.55rem;

  border-radius: 9999px;

  background: rgb(var(--color-foreground, 18, 18, 18));
  color: rgb(var(--color-background, 255, 255, 255));

  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;

  /* look & feel Sense */
  box-shadow: 0 0 0 0.2rem rgb(var(--color-background, 255, 255, 255));
  pointer-events: none; /* ne bloque pas le clic sur l'icône */
  z-index: 2;
}

/* Texte parfaitement centré comme Sense */
.lp-header .cart-count-bubble,
.lp-header .lpv1-cart-count-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Le chiffre */
.lp-header .cart-count-bubble > span[aria-hidden="true"],
.lp-header .lpv1-cart-count-bubble > span[aria-hidden="true"] {
  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  margin: 0;
  padding: 0;

  font-variant-numeric: tabular-nums; /* comme Sense */
}


/* Accessibilité: garder le texte SR mais pas visible */
.lp-header .cart-count-bubble .visually-hidden,
.lp-header .lpv1-cart-count-bubble .visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Mobile: légèrement plus petit */
@media (max-width: 749px) {
  .lp-header .cart-count-bubble,
  .lp-header .lpv1-cart-count-bubble {
    min-width: 1.6rem;
    height: 1.6rem;
    font-size: 1rem;
    right: -0.3rem;
    top: -0.3rem;
  }
}
/* =========================
   LPV1 – Nutrition accordion
   ========================= */

.lpv1-nutrition{
  margin-top: 14px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.lpv1-nutrition__head{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.lpv1-nutrition__head-left{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lpv1-nutrition__doc{ font-size: 16px; }
.lpv1-nutrition__title{ font-size: 15px; font-family : nunito, sans serif; }

@media (max-width : 900px) {
  .lpv1-nutrition__title, .lpv1-nutrition__chev, .lpv1-nutrition__pill, .lpv1-nutrition__more, .lpv1-atc-stories__name {
    color : #000;
  }
}

.lpv1-nutrition__chev{
  font-size: 16px;
  line-height: 1;
}

.lpv1-nutrition__body{
  padding: 0 14px 14px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.lpv1-nutrition__pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 10px;
}

.lpv1-nutrition__pill{
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

.lpv1-nutrition__pill.is-active{
  background: #ffd8c0;
  border-color: #000;
}

.lpv1-nutrition__badges-line{
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lpv1-nutrition__short .rte,
.lpv1-nutrition__full .rte{
  font-size: 13px;
  line-height: 1.4;
}

.lpv1-nutrition__more{
  margin-top: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
}

.lpv1-nutrition__full{
  margin-top: 14px;
  border-top: 1px dashed rgba(0,0,0,.22);
  padding-top: 14px;
}

/* Mobile spacing */
@media (max-width: 800px){
  .lpv1-nutrition__head{ padding: 12px 12px; }
  .lpv1-nutrition__body{ padding: 0 12px 12px; }
}
/* Nutrition tables */

.lpv1-nutrition-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.lpv1-nutrition-card{
  border:1px solid #000;
  border-radius:10px;
  padding:10px;
}

.lpv1-nutrition-card h4{
  margin:0 0 6px;
  font-weight:900;
  font-size:14px;
}

.lpv1-nutrition-card table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
}

.lpv1-nutrition-card th,
.lpv1-nutrition-card td{
  border:1px solid rgba(0,0,0,.2);
  padding:6px;
  text-align:left;
}

.lpv1-nutrition-footer{
  margin-top:10px;
  padding:8px;
  border:1px solid #000;
  border-radius:8px;
  text-align:center;
  font-weight:800;
}

@media(max-width:800px){
  .lpv1-nutrition-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
   LPV1 – ATC FAQ (accordion)
   ========================= */

.lpv1-atc-faq{
  margin-top: 14px;
  background: transparent;
}

.lpv1-atc-faq__title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 16px;
}




.lpv1-atc-faq__item{
  border-bottom: 1px solid #000;
}


.lpv1-atc-faq__q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 12px 6px 12px 0px;
  background: transparent;
  border: 0;
  cursor: pointer;
text-align: left;
    font-weight: 800;
    font-size: 15px;
    font-family: nunito, sans serif;
    color: #000;
}

.lpv1-atc-faq__qtext{
  line-height: 1.2;
}

.lpv1-atc-faq__icon{
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent;
}

.lpv1-atc-faq__svg{
  width: 16px;
  height: 16px;
  display: block;
}

.lpv1-atc-faq__svg path{
  stroke: #000 !important;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

/* ouvert => on cache la verticale => devient un "moins" */
.lpv1-atc-faq__item.is-open .lpv1-atc-faq__svg-v{
  opacity: 0;
}
.rte p {
  margin-bottom : 15px !important;
  font-size : 15px;
}
@media (max-width:800px) {
  .lpv1-nutrition, .lpv1-atc-faq__list {
    margin: 5px;
  }
}

/* =========================
   LPV1 – ATC Stories (bubbles + modal)
   ========================= */

.lpv1-atc-stories{
  margin-top: 14px;
}

.lpv1-atc-stories__title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 16px;
}

.lpv1-atc-stories__row{
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 10px 0;

  justify-content: center; /* 👈 centre les bulles */

  overflow-x: auto;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}
.lpv1-atc-stories{
  display: flex;
  justify-content: center;
}

.lpv1-atc-stories__row{
  width: 100%;
  max-width: 420px; /* largeur idéale pour 4 bulles */
}

.lpv1-atc-stories__row::-webkit-scrollbar{
  height: 0;
}

.lpv1-atc-stories__row::-webkit-scrollbar{ height: 0; }

.lpv1-atc-stories__bubble{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 78px;
}

.lpv1-atc-stories__ring{
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 2px solid #081faf;
  display: grid;
  place-items: center;
}

.lpv1-atc-stories__avatar{
  width: 62px;
  height: 62px;
  border-radius: 999px;
  overflow: hidden;
  display: block;
}
.lpv1-atc-stories__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lpv1-atc-stories__play{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.lpv1-atc-stories__play svg{
  width: 22px;
  height: 22px;
  background: rgba(0,0,0,0.55);
  border-radius: 999px;
  padding: 6px;
  box-sizing: content-box;
}
.lpv1-atc-stories__play svg path{
  fill: #fff;
}

.lpv1-atc-stories__name{
  font-weight: 800;
  font-size: 14px;
}

/* Modal */
.lpv1-atc-stories__modal{
  position: fixed;
  inset: 0;
  z-index: 99999 !important;
  display: none;
}
.lpv1-atc-stories__modal[aria-hidden="false"]{
  display: grid;
  place-items: center;
  padding: 14px;
}

.lpv1-atc-stories__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.lpv1-atc-stories__dialog{
  position: relative;
  width: min(420px, 92vw);
  height: min(78vh, 720px);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.lpv1-atc-stories__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lpv1-atc-stories__player{
  width: 100%;
  height: 100%;
  background: #000;
}

.lpv1-atc-stories__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* lock scroll when modal open */
html.lpv1-modal-open,
html.lpv1-modal-open body{
  overflow: hidden;
}
.lpv1-atc-stories__row{
  display: flex !important;
  gap: 22px;
  align-items: flex-start;
  padding: 10px 0;
}

.lpv1-atc-stories__empty{
  padding: 12px;
  font-size: 13px;
  border: 1px dashed rgba(0,0,0,.35);
  border-radius: 10px;
  background: rgba(255,255,255,.45);
}

.lpv1-atc-stories__ph{
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(0,0,0,.1);
  display: block;
}
.lpv1-atc-stories__iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width : 800px) {
  .lpv1-atc-stories__row {
    gap : 10px;
  }
}
/* =========================================================
   LPV1 ATC — Pinned scroll (actif seulement si .is-pin)
========================================================= */
@media (min-width: 990px){
  .lpv1-atc__spacer{ height: 0px; }

  /* Mode pin activé par JS */
  .lpv1-atc.is-pin .lpv1-atc__pin{
    position: sticky;
    top: var(--lpv1-atc-pin-top, 20px);
    height: calc(100vh - var(--lpv1-atc-pin-top, 20px));
  }

  /* Hauteurs nécessaires pour que dist soit correct */
  .lpv1-atc.is-pin .lpv1-atc__inner,
  .lpv1-atc.is-pin .lpv1-atc__grid{
    height: 100%;
  }

  /* La colonne droite doit remplir le pin */
  .lpv1-atc.is-pin .lpv1-atc__right-scroll{
    height: 100%;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}
/* =========================
   LPV1 ATC — Pin réel desktop
   ========================= */
@media (min-width: 990px){
  .lpv1-atc{
    position: relative;
  }

  /* Le pin bloque la section dans le viewport */
  .lpv1-atc__pin{
    position: sticky;
    top: var(--lpv1-atc-pin-top, 20px);
    height: calc(100vh - var(--lpv1-atc-pin-top, 20px));
  }

  /* Tous les parents doivent avoir une hauteur */
  .lpv1-atc__inner,
  .lpv1-atc__grid,
  .lpv1-atc__left,
  .lpv1-atc__right{
    height: 100%;
  }

  /* La droite DOIT être scrollable en interne (sinon dist=0) */
  .lpv1-atc__right-scroll{
    height: 100%;
    overflow-y: auto;
    max-height: none !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  /* Spacer = hauteur injectée par JS */
  .lpv1-atc__spacer{
    height: 0px;
    pointer-events: none;
  }
}
/* Fix: empêcher le footer de "remonter" visuellement sous la section pin */
@media (min-width: 990px){
  .lpv1-atc{
    position: relative;
    isolation: isolate;              /* crée un stacking context propre */
    background: var(--lpv1-atc-bg);  /* assure un fond pendant le pin */
    z-index: 10;                     /* au-dessus du footer */
  }

  .lpv1-atc__pin{
    background: var(--lpv1-atc-bg);  /* recouvre ce qu'il y a derrière pendant le sticky */
    z-index: 2;
  }

  /* Optionnel mais souvent nécessaire si le footer a un z-index élevé */
  footer, .footer{
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 990px){
  .lpv1-atc{
    position: relative;
    isolation: isolate; /* crée un contexte de stacking pour éviter les overlays “fantômes” */
    background: var(--lpv1-atc-bg, #F6F8C8);
  }

  .lpv1-atc__pin{
    position: sticky;
    top: var(--lpv1-atc-pin-top, 20px);
    height: 100%;
    z-index: 10;  /* au-dessus des sections suivantes */
  }

  .lpv1-atc__pin-bg{
    position: absolute;
    inset: 0;
    background: var(--lpv1-atc-bg, #F6F8C8);
    z-index: 0;
  }

  .lpv1-atc__pin-content{
    position: relative;
    z-index: 1;
    height: 100%;
  }
}

/* =========================
   LPV1 – Auto bar (marquee)
   File: lp-v1.css
   ========================= */

.lpv1-auto-bar{
  background: #0820af;
  padding: var(--lpv1-auto-bar-padding-y, 18px) 0;
}

.lpv1-auto-bar__inner{
  max-width: var(--lpv1-auto-bar-max, 1600px);
  margin: 0 auto;
  padding: 0 18px;
}

.lpv1-auto-bar__divider{
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 10px 0;
}

.lpv1-auto-bar__viewport{
  overflow : hidden;
  width: 100%;
}

.lpv1-auto-bar__track{
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0; /* gap géré à l'intérieur */
  will-change: transform;
  animation: lpv1-marquee var(--lpv1-auto-bar-speed, 26s) linear infinite;
}

.lpv1-auto-bar__set{
  display: inline-flex;
  align-items: center;
  gap: var(--lpv1-auto-bar-gap, 56px);
  padding-right: var(--lpv1-auto-bar-gap, 56px); /* espace entre set1 & set2 */
}

.lpv1-auto-bar__item{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.lpv1-auto-bar__icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.lpv1-auto-bar__icon-img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.lpv1-auto-bar__icon-ph{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.35);
  display: block;
}

.lpv1-auto-bar__text{
  font-size: var(--lpv1-auto-bar-text-size, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ff680a;
}

/* Animation: on translate d’une largeur = 50% du track (car 2 sets identiques) */
@keyframes lpv1-marquee{
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

/* Pause au hover (option Shopify setting via attr) */
[data-lpv1-auto-bar][style*="pause_on_hover"] .lpv1-auto-bar__track{ /* safety noop */ }

{% comment %}
  On ne peut pas lire directement pause_on_hover dans CSS.
  Donc on applique via class côté liquid (plus bas: petit patch).
{% endcomment %}

.lpv1-auto-bar.is-pause-hover .lpv1-auto-bar__viewport:hover .lpv1-auto-bar__track{
  animation-play-state: paused;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .lpv1-auto-bar__track{ animation: none; }
  .lpv1-auto-bar__viewport{ overflow-x: auto; }
}

/* Mobile tweaks */
@media (max-width: 989px){
  .lpv1-auto-bar__inner{ padding: 0 12px; }
  .lpv1-auto-bar__icon,
  .lpv1-auto-bar__icon-img,
  .lpv1-auto-bar__icon-ph{
    width: 36px;
    height: 36px;
  }
  .lpv1-auto-bar__item{ gap: 14px; }
  .lpv1-auto-bar__text{ font-size: 18px; }
}

/* =========================
   LPV1 – How To
   File: lp-v1.css
   ========================= */

.lpv1-howto{
  background: var(--lpv1-howto-bg, #F6F8C8);
  padding: var(--lpv1-howto-pad-y, 64px) 0;
  padding-bottom : 0px;
}

.lpv1-howto__inner{
  max-width: var(--lpv1-howto-max, 1200px);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.lpv1-howto__heading{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 30px;
}

.lpv1-howto__subheading{
  margin: 0 auto 28px;
  font-weight: 700;
  font-size: 16px;
}
.lpv1-howto__subheading.rte p{ margin: 0; }

.lpv1-howto__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 6px;
}

/* Card */
.lpv1-howto__card{
  background: var(--lpv1-howto-card-bg, #F3F6C3);
  border: 4px solid var(--lpv1-howto-card-border, #000);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-sizing: border-box;
}

/* Media */


.lpv1-howto__video{
  border-top-radius: 24px;
  overflow: hidden;
  background: rgba(0,0,0,0.06);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.lpv1-howto__video video,
.lpv1-howto__img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Placeholder */
.lpv1-howto__video--ph{
  color: rgba(0,0,0,0.75);
  font-weight: 700;
  font-size: 14px;
}

/* Content */
.lpv1-howto__content{
  padding: 16px 22px 22px;
}

.lpv1-howto__title{
  margin: 6px 0 10px;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 24px;
}

.lpv1-howto__text{
  font-size: 15px;
  line-height: 1.4;
}
.lpv1-howto__text.rte p{ margin: 0; }

/* Mobile */
@media (max-width: 989px){
  .lpv1-howto__inner{
    text-align: center;
  }

  .lpv1-howto__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  

  .lpv1-howto__content{
    padding: 14px 16px 18px;
  }
}
.jdgm-carousel-title {
  font-size : 30px;
}
/* =========================
   LPV1 – Compare (chico-like) FIX
   ========================= */

.lpv1-compare{
  background: var(--lpv1-compare-bg, #F6F8C8);
  padding-bottom : 40px;
}

.lpv1-compare__inner{
  max-width: var(--lpv1-compare-max, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

.lpv1-compare__title{
  margin: 0 0 26px;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 30px;
}

.lpv1-compare__card{
  background: var(--lpv1-compare-card-bg, #EEF3B5);
  border: 1px solid #061faf;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.lpv1-compare__grid{
  position: relative;
}

/* ✅ Highlight sur la 2e colonne (chico) */
.lpv1-compare__highlight{
  position: absolute;
  left: 50%;          /* start col 2 */
  width: 25%;         /* col 2 width */
  top: -18px;
  bottom: -18px;
  background: var(--lpv1-compare-highlight, #F4E34D);
  border-radius: 14px;
  z-index: 0;
}

/* rows */
.lpv1-compare__row{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50% 25% 25%;
  min-height: 76px;
}

.lpv1-compare__row + .lpv1-compare__row{
  border-top: 1px solid #061faf;
}

/* header row */
.lpv1-compare__row--head{
  min-height: 68px;
}

.lpv1-compare__cell{
  display: grid;
  place-items: center;
  padding: 18px 18px;
  text-align: center;
}

/* ✅ traits verticaux comme la capture */
.lpv1-compare__cell--feature{

}
.lpv1-compare__cell--chico{

}

.lpv1-compare__headLabel{
  font-weight: 900;
  font-size: 18px;
}

.lpv1-compare__featureText{
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  max-width: 44ch;
}

/* Icons */
.lpv1-compare__icon{
  width: 34px;
  height: 34px;
  display: inline-block;
}

.lpv1-compare__icon--check{
  border-radius: 999px;
  border: 2px solid #000;
  position: relative;
}

.lpv1-compare__icon--check::after{
  content: "";
  position: absolute;
  width: 14px;
  height: 8px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(-45deg);
  left: 9px;
  top: 10px;
}

.lpv1-compare__icon--x{
  position: relative;
  opacity: 0.85;
}

.lpv1-compare__icon--x::before,
.lpv1-compare__icon--x::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #000;
  transform-origin: center;
}

.lpv1-compare__icon--x::before{
  transform: translate(-50%, -50%) rotate(45deg);
}

.lpv1-compare__icon--x::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobile */
@media (max-width: 989px){
  .lpv1-compare__inner{ padding: 0 14px; }
  .lpv1-compare__title{ font-size: 26px; margin-bottom: 18px; }

  .lpv1-compare__row{
    grid-template-columns: 52% 24% 24%;
    min-height: 72px;
  }

  .lpv1-compare__highlight{
    left: 52%;
    width: 24%;
    top: -14px;
    bottom: -14px;
    border-radius: 12px;
  }

  .lpv1-compare__cell{
    padding: 16px 10px;
  }

  .lpv1-compare__featureText{
    font-size: 15px;
    max-width: 26ch;
  }

  .lpv1-compare__headLabel{
    font-size: 16px;
  }
}
/* =========================
   LPV1 – Bottom FAQ (Bonjour-like)
   ========================= */

.lpv1-bottom-faq{
  background: var(--lpv1-faq-bg, #F6F8C8);
  color: var(--lpv1-faq-text, #000);
}

.lpv1-bottom-faq__inner{
  max-width: var(--lpv1-faq-max, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

.lpv1-bottom-faq__title{
  margin: 0 0 34px;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 30px;
}

.lpv1-bottom-faq__list{
  max-width: 620px; /* comme capture: colonne étroite */
  margin: 0 auto;
}

.lpv1-bottom-faq__item{
  position: relative;
}

.lpv1-bottom-faq__q{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: inherit;
  text-align: left;
      border-bottom: 1px solid #000;
}

.lpv1-bottom-faq__q-left{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: center;
}

.lpv1-bottom-faq__num{
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.lpv1-bottom-faq__question{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  font-family : nunito, sans-serif;
}

.lpv1-bottom-faq__line{
  height: 1px;
  background: var(--lpv1-faq-line, rgba(0,0,0,0.75));
  opacity: 0.6;
}

/* Answer panel */
.lpv1-bottom-faq__a{
  padding: 0 0 16px 52px; /* aligne réponse sous la question */
}

.lpv1-bottom-faq__a-inner{
  font-size: 15px;
  line-height: 1.45;
  color: rgba(0,0,0,0.85);
  margin-top : 10px;
}

.lpv1-bottom-faq__a-inner p{
  margin: 0 0 10px;
}

/* Focus */
.lpv1-bottom-faq__q:focus-visible{
  outline: 2px solid #000;
  outline-offset: 4px;
  border-radius: 8px;
}

/* Optional + icon */
.lpv1-bottom-faq__icon{
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}
.lpv1-bottom-faq__icon:before,
.lpv1-bottom-faq__icon:after{
  content:"";
  position:absolute;
  inset: 0;
  margin:auto;
  background:#000;
}
.lpv1-bottom-faq__icon:before{ width: 18px; height: 2px; top: 8px; }
.lpv1-bottom-faq__icon:after{ width: 2px; height: 18px; left: 8px; }

.lpv1-bottom-faq__item.is-open .lpv1-bottom-faq__icon:after{
  display:none; /* devient "-" */
}

/* Mobile */
@media (max-width: 989px){
  .lpv1-bottom-faq__inner{ padding: 0 16px; }
  .lpv1-bottom-faq__title{ margin-bottom: 20px; }
  .lpv1-bottom-faq__list{ max-width: 680px; }
}

/* =========================
   LPV1 – Ingred Benefits
   ========================= */

.lpv1-ingred-benefits{
  background: var(--lpv1-ib-bg, #F6F8C8);
  color: var(--lpv1-ib-text, #000);
  padding: var(--lpv1-ib-pad-y, 56px) 0;
}

.lpv1-ingred-benefits__inner{
  max-width: var(--lpv1-ib-max, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

.lpv1-ingred-benefits__heading{
  margin: 0 0 34px;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 30px;
  text-transform: none;
}

.lpv1-ingred-benefits__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.lpv1-ingred-benefits__card{
  background: var(--lpv1-ib-card-bg, #F4F0D4);
  border-radius: 10px;
  padding: 22px 22px 18px;
  position: relative;
  border: 0;
  box-shadow: none;
}

.lpv1-ingred-benefits__card::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--lpv1-ib-accent, #F4E34D);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.lpv1-ingred-benefits__card-title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
}

.lpv1-ingred-benefits__card-text.rte{ margin: 0; }
.lpv1-ingred-benefits__card-text.rte p{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.lpv1-ingred-benefits__card-text strong{ font-weight: 900; }

.lpv1-ingred-benefits__card-link{ margin-top: 10px; }

.lpv1-ingred-benefits__link{
  color: var(--lpv1-ib-link, #1E40FF);
  text-decoration: underline;
  font-weight: 700;
}

@media (max-width: 989px){
  .lpv1-ingred-benefits__heading{
    margin-bottom: 18px;
    font-size: 28px;
  }
  .lpv1-ingred-benefits__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lpv1-ingred-benefits__card{
    padding: 18px 18px 16px;
  }
}
/* =========================
   LPV1 – CTA (pill button)
   ========================= */

.lpv1-cta{
  background: var(--lpv1-cta-bg, #F6F8C8);
  padding: 12px;
}

.lpv1-cta__inner{
  max-width: var(--lpv1-cta-max, 1200px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

/* Button */
.lpv1-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: min(980px, 100%);
  padding: 22px 36px;

  background: var(--lpv1-cta-btn-bg, #F47A33);
  color: var(--lpv1-cta-btn-text, #000);

  border: 2px solid var(--lpv1-cta-btn-border, #000);
  border-radius: 9999px;

  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.2px;

  text-decoration: none;
  cursor: pointer;

  transition: transform .12s ease, background-color .15s ease, color .15s ease, filter .15s ease;
}

.lpv1-cta__arrow{
  font-size: 20px;
  line-height: 1;
}

/* Hover */
.lpv1-cta__btn:hover{
  background: var(--lpv1-cta-btn-bg-hover, #061FAF);
  color: var(--lpv1-cta-btn-text-hover, #F47A33);
  transform: translateY(-1px);
}

/* Active */
.lpv1-cta__btn:active{
  transform: translateY(0);
}

/* Focus */
.lpv1-cta__btn:focus-visible{
  outline: 3px solid #000;
  outline-offset: 4px;
}

/* Mobile */
@media (max-width: 749px){
  .lpv1-cta__inner{ padding: 0 14px; }

  .lpv1-cta__btn{
    width: 100%;
    padding: 18px 22px;
    font-size: 16px;
  }
}

.hero-icon {
  height : 25px;
}