/** Shopify CDN: Minification failed

Line 716:0 Unexpected "@media"
Line 3550:19 Unexpected "{"
Line 3550:23 Expected ":"

**/
.section {
    padding: 0px 16px;
    width: 100%;
    max-width: 1300px;
} 

@media only screen and (min-width: 1039px) and (max-width: 1299px) {
    .section {
        padding: 0px 16px;
    width: 100%;
    max-width: 1300px;
    }
} 
@media only screen and (max-width: 991px) and (min-width: 799px) {
    .product-main .product__images, .product-main .product__information {
        width: 100%;
    }
        .product-main .product__information {
        width: 100%;
        padding: 25px 0px;
    }
  }

@media (min-width: 1000px) {
  .product-main .product__images {
    width: 50%;
  }
  .product-main .product__information {
    width: 45%;
  }
}


.product-main .product_name {
  font-family: 'Gotham';
font-weight: 900;
  text-transform: uppercase;
  font-size : 30px;
  line-height: 30px;
  margin-bottom :0px;
}
sup.tm {
      position: relative;
    top: 3px;
    left: 1px;
        font-size: .65em;
}


/* ============================================================
   product__images.css
   Mobile slider + Desktop mosaic gallery
   Breakpoint: 1000px
   ============================================================ */

/* ── Shared ──────────────────────────────────────────────── */

.pg-mobile,
.pg-desktop {
  position: relative;
  width: 100%;
}

/* Badge overlay (private-sale / members-only) */
.product-image__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 4px 10px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
}

.product-image__badge--members-only {
  background: #7c3aed;
}


/* ============================================================
   MOBILE GALLERY  (default — applies below 1000px)
   ============================================================ */

.pg-desktop { display: none; }
.pg-mobile  { display: block; }


/* ── Stage (large active image) ──────────────────────────── */

.pg-mobile__stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.pg-mobile__slide {
  display: none;
}

.pg-mobile__slide.is-active {
  display: block;
}

.pg-mobile__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Video inside slide */
.pg-mobile__video-wrap {
  position: relative;
  width: 100%;
}

.pg-mobile__video,
.pg-mobile__video-wrap iframe,
.pg-mobile__video-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pg-mobile__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.pg-mobile__play-btn svg,
.pg-mobile__play-btn img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}


/* ── Thumbnail strip (horizontal scroll) ──────────────────── */

.pg-mobile__thumbs {
  display: flex;
  flex-direction: row;
  gap: 6px;
  padding: 16px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;           /* Firefox */
}

.pg-mobile__thumbs::-webkit-scrollbar {
  display: none;                   /* Chrome / Safari */
}

.pg-mobile__thumb {
    border: 0;
    background: #fff;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    padding: 0px 0px 5px 0px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: border-color .15s ease;
    scroll-snap-align: start;
}

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

.pg-mobile__thumb.is-active {
  border-bottom : 2px solid #000;
}

.pg-mobile__thumb:hover:not(.is-active) {
  border-color: #999;
}

.pg-mobile__thumb-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  pointer-events: none;
}


/* ============================================================
   DESKTOP MOSAIC  (≥ 1000px)

   Grid layout:
     Row 1 : 1 image  (full width)
     Row 2 : 2 images (equal halves)
     Row 3 : 2 images (equal halves)
     Row 4 : 2 images (equal halves)
     Row 5 : 1 image  (full width)

   Implemented with CSS grid: 2 columns, auto rows.
   Full-width items span both columns (grid-column: 1 / -1).
   ============================================================ */

@media screen and (min-width: 1000px) {

  /* Force hide mobile, show desktop */
  .product__images .pg-mobile  { display: none !important; }
  .product__images .pg-desktop { display: grid !important; }

  /* Desktop grid: 2 columns */
  .pg-desktop {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px;
    width: 100%;
  }

  .pg-desktop__item {
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    min-height: 200px;
  }

  /* Full-width rows (ligne 1 et ligne 5) */
  .pg-desktop__item--full {
    grid-column: 1 / -1 !important;
  }

  /* Half-width rows (lignes 2, 3, 4) */
  .pg-desktop__item--half {
    grid-column: span 1 !important;
  }

  /* Images fill their cell */
  .pg-desktop__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  /* Lightbox link wrapper */
  .pg-desktop__link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  /* Aspect ratios: full = 1:1, half = 1:1 */
  .pg-desktop__item--full .pg-desktop__link,
  .pg-desktop__item--full > img.pg-desktop__img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  .pg-desktop__item--half .pg-desktop__link,
  .pg-desktop__item--half > img.pg-desktop__img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  /* Video cells */
  .pg-desktop__video-wrap {
    position: relative;
    width: 100%;
  }

  .pg-desktop__video,
  .pg-desktop__video-wrap iframe,
  .pg-desktop__video-wrap video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .pg-desktop__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    transition: background 0.2s ease;
    pointer-events: none;
  }

  .pg-desktop__item:hover .pg-desktop__play-btn {
    background: rgba(0,0,0,0.28);
  }

  .pg-desktop__play-btn svg,
  .pg-desktop__play-btn img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.5));
  }

  /* Model viewer */
  .pg-desktop__item .product-gallery__model {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

}


/* ============================================================
   Lazyload fade-in (matches theme pattern)
   ============================================================ */

.lazyload--fade-in {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazyloaded.lazyload--fade-in {
  opacity: 1;
}
/* ============================================================
   pdp-star-rating.css
   ============================================================ */

.pdp-star-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pdp-star-rating__stars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.pdp-star-rating__svg {
  display: block;
  width: 100px;
  height: 24px;
  overflow: visible;
}

.pdp-star-rating__text {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  color: inherit;
  margin-top: 4px;
}

.pdp-star-rating__score {
  font-weight: 700;
}

.pdp-star-rating__separator {
  font-weight: 400;
  color: #818181;
}

.pdp-star-rating__count {
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: underline;
  display: inline;
}

.pdp-star-rating__count:hover {
  opacity: 0.7;
}
.product-block--rating {
  height : 22px;
}



/* ============================================================
   v2_pdp_flavor_selector.css
   Flavor selector for product range
   ============================================================ */

.v2-flavor-selector {
  margin: 17px 0 36px;
}

.v2-flavor-selector__title {
  font-size: 14px;
  font-family: 'Gotham';
font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  color: #000;
}

.v2-flavor-selector__grid {
      display: flex;
    flex-direction: row;  
    gap: 12px;
}

/* Individual flavor item */
.v2-flavor-selector__item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}



/* Image wrapper */
.v2-flavor-selector__image-wrap {
  width: 86.09px;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  border: 1px solid transparent;
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-flavor-selector__item.is-selected .v2-flavor-selector__image-wrap {
  border-color: #000;
  background: #fff;
}



/* Image */
.v2-flavor-selector__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Label */
.v2-flavor-selector__label {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 400;
  text-align: left;
  color: #333;
  line-height: 1.3;
}

.v2-flavor-selector__item.is-selected .v2-flavor-selector__label {
  font-weight: 600;
  color: #000;
}



@media (max-width: 480px) {
  .v2-flavor-selector__grid {
    gap: 12px;
  }
}
/* ============================================================
   v2_pdp_quantity_selector.css
   Variant/quantity selector cards
   ============================================================ */

.v2-qty-selector {
  margin: 22px 0 36px;
}

.v2-qty-selector__title {
  font-size: 14px;
  font-family: 'Gotham';
font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  color: #000;
}

.v2-qty-selector__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Individual variant card */
.v2-qty-selector__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 11px 17px 11px;
  background: #fff;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  height :126px;
}


.v2-qty-selector__card.is-selected {
  background: #000;
  border-color: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Invert text colors when selected */
.v2-qty-selector__card.is-selected .v2-qty-selector__name,
.v2-qty-selector__card.is-selected .v2-qty-selector__price,
.v2-qty-selector__card.is-selected .v2-qty-selector__shipping {
  color: #fff;
}

.v2-qty-selector__card.is-selected .v2-qty-selector__unit-price {
  color: #ccc;
}

.v2-qty-selector__card.is-selected .v2-qty-selector__compare-price {
  color: #999;
}

.v2-qty-selector__card.is-sold-out {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Top badges */
.v2-qty-selector__badges {
  position: absolute;
  top: -16px;
  display: flex;
  gap: 6px;
  width: 172px;
}

.v2-qty-selector__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  font-size: clamp(8px, 0.9vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}


.v2-qty-selector__badge--rec {
  background: #e5e5e5;
  color: #000;
}

.v2-qty-selector__badge--best {
  background: #818181;
  color: #fff;
}

.v2-qty-selector__badge--discount {
  background: #fff200;
  color: #000;
}

/* Variant name */
.v2-qty-selector__name {
  font-size: 16px;
  font-family: 'Gotham';
font-weight: 900;
  color: #000;
  margin: 0 0 8px 0;
}

/* Price section */
.v2-qty-selector__price-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 7px;
}

.v2-qty-selector__price {
  font-size: 16px;
  font-weight: 700;
  color: #000;
    font-family : 'Gotham';

}

.v2-qty-selector__compare-price {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
    font-family : 'Gotham';
}

/* Unit price */
.v2-qty-selector__unit-price {
  font-size: 10px;
  font-weight: 700;
  color: #666;
  margin-bottom: 7px;
    font-family : 'Gotham';
}

/* Free shipping */
.v2-qty-selector__shipping {
  font-size: 10px;
  font-weight: 600;
  color: #000;
}

/* Sold out overlay */
.v2-qty-selector__sold-out {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .v2-qty-selector__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   v2_pdp_in_stock.css
   Stock indicator with delivery date
   ============================================================ */

.v2-in-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  margin-bottom : 13px;
}

/* In stock variant (green) */


.v2-in-stock--in-stock .v2-in-stock__icon {
  color: #4caf50;
  font-weight: 700;
}

/* Low stock variant (amber/warning) */

.v2-in-stock--low-stock .v2-in-stock__icon {
  color:rgb(255, 68, 0);
  font-weight: 700;
}

/* Icon */
.v2-in-stock__icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

/* Message text */
.v2-in-stock__message {
  font-weight: 400;
}
.in-stock-text {
  font-weight: 600;
  color : #4caf50;
}
.v2-in-stock__message strong {
  font-weight: 600;
}
.v2-in-stock__message strong
/* Responsive */
@media (max-width: 767px) {
  .v2-in-stock {
    font-size: 13px;
    padding: 8px 12px;
  }
}
/* ============================================================
   v2_pdp_atc.css - 50px height picker + CTA
   ============================================================ */

.v2-atc {
  display: flex !important;
  gap: 12px;
  width: 100%;
  align-items: stretch;
      margin-bottom: 36px;
}

.v2-atc__quantity {
  flex: 0 0 auto !important;
  width: auto !important;
}

.v2-atc__quantity-label {
  display: none !important;
}

.v2-atc__quantity-controls {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  width: 118px;
  height: 50px !important;
  border: 1px solid #000;
}

.v2-atc__qty-btn {
  flex: 0 0 auto !important;
  width: 30px !important;
  background: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  padding: 0;
}

.v2-atc__qty-btn:hover {
  background: #f5f5f5;
}

.v2-atc__qty-input {
  flex: 0 0 auto !important;
  width: 55px !important;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
}

.v2-atc__qty-input::-webkit-outer-spin-button,
.v2-atc__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.v2-atc__qty-input:focus {
  outline: none;
}

.v2-atc__button {
  flex: 1 !important;
  height: 50px !important;
  background: #fff200;
  border: none;
  border-radius: 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  color: #000;
}

.v2-atc__button:hover {
  background: #000;
  color: #fff;
}

.v2-atc__button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.v2-atc__button--sold-out {
  background: #e5e5e5;
  color: #999;
}

    /* ─────────────────────────────────────────
       Cross-sell block
    ───────────────────────────────────────── */
    .cross-sell {
      margin-bottom: 36px;
    }

    /* Heading — "Don't forget to stay Hydrated !" */
    .cross-sell__heading {
      font-size: 14px;
      font-style : italic;
      font-weight: 700;
      margin: 0 0 15px;
    }

    /* Card layout: image à gauche | colonne (nom + prix + bouton) à droite */
    .cross-sell__card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    /* ── Image ── */
    .cross-sell__image-wrap {
      flex: 0 0 120px;
      width: 120px;
      height: 120px;
      background-color: #f2f2f2;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 2px;
      text-decoration: none;
    }

    .cross-sell__image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .cross-sell__image--placeholder {
      padding: 12px;
      box-sizing: border-box;
    }

    /* ── Info ── */
    .cross-sell__info {
      flex: 1 1 auto;
      min-width: 0;
    }

    /* Product name — bold, uppercase, like the mockup */
    .cross-sell__name {
      display: block;
      font-size: 16px;
      font-family: 'Gotham';
font-weight: 900;
      text-transform: uppercase;
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .cross-sell__name:hover {
      text-decoration: underline;
    }

    .cross-sell__price {
      display: flex;
      align-items: baseline;
      gap: 6px;
    }

    .cross-sell__price--current {
      font-size: 14px;
      font-weight: 600;
    }

    .cross-sell__price--compare {
      font-size: 13px;
      color: #999;
      text-decoration: line-through;
    }

    /* ── ATC button — black square with "+" ── sous le prix ── */
    .cross-sell__atc-wrap {
      margin-top: 10px;
    }

    .cross-sell__atc-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #1a1a1a;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.1s ease;
      padding: 0;
    }

    .cross-sell__atc-btn:hover:not(:disabled) {
      background-color: #333;
    }

    .cross-sell__atc-btn:active:not(:disabled) {
      transform: scale(0.95);
    }

    .cross-sell__atc-btn--soldout {
      background-color: #ccc;
      cursor: not-allowed;
    }

    .cross-sell__atc-btn--added {
      background-color: #2e7d32;
    }

    .cross-sell__atc-icon {
      font-size: 24px;
      font-weight: 300;
      line-height: 1;
    }

    .cross-sell__atc-loading {
      display: none;
      align-items: center;
      justify-content: center;
    }

    @media (max-width : 789px) {
        .cross-sell__name {
    font-size: 15px;
        }
    }
 /* ── Bloc videos ── */
  .pdp-videos {
    margin-bottom : 16px;
  }

  /* ── Grille 5 colonnes ── */
  .pdp-videos__grid {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .pdp-videos__item {
    flex: 0 0 calc(20% - 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  /* ── Bouton miniature ── */
  .pdp-videos__thumb-btn {
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: block;
    overflow: hidden;
  }

  /* ── Miniature format story 9:16 ── */
  .pdp-videos__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3.5 / 5;
    background-color: #1a1a1a;
    overflow: hidden;
  }

  /* Image placeholder */
  .pdp-videos__thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .pdp-videos__thumb-btn:hover .pdp-videos__thumb-img {
    transform: scale(1.04);
  }

  /* Fond sombre quand pas d'image */
  .pdp-videos__thumb-bg {
    position: absolute;
    inset: 0;
    background-color: #2a2a2a;
  }

  /* ── Overlay ── */
  .pdp-videos__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }

  .pdp-videos__thumb-btn:hover .pdp-videos__overlay {
    background: rgba(0, 0, 0, 0.52);
  }

  /* ── Icône play ── */
  .pdp-videos__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    backdrop-filter: blur(3px);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .pdp-videos__thumb-btn:hover .pdp-videos__play {
    background: rgba(255, 255, 255, 0.38);
    transform: scale(1.1);
  }

  /* ── Titre ── */
  .pdp-videos__title {
    font-size: 10px;
    text-align : left;
    margin: 0;
    line-height: 1;
    width: 100%;
  }

  /* ── Modal lightbox 9:16 ── */
  .pdp-videos__modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdp-videos__modal[hidden] { display: none; }

  .pdp-videos__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
  }

  .pdp-videos__modal-inner {
    position: relative;
    z-index: 1;
    height: min(90vh, 800px);
    width: calc(min(90vh, 800px) * 9 / 16);
    max-width: 95vw;
  }

  .pdp-videos__modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
  }

  .pdp-videos__modal-close:hover { opacity: 1; }

  .pdp-videos__modal-player {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }

  .pdp-videos__modal-player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: contain;
    background: #000;
  }

  @media screen and (max-width: 600px) {
    .pdp-videos__modal-inner {
      width: 90vw;
      height: auto;
    }
    .pdp-videos__modal-player {
      aspect-ratio: 9 / 16;
      height: auto;
    }
  }

      /* ─────────────────────────────────────────
       logo block
    ───────────────────────────────────────── */

    @media (max-width : 789px) {
      .logo-carousel__slide .logo-carousel__item {
    width: 44%;
      }
      .logo-carousel__slide {
    gap: 12%;
    }
  }

/* ─────────────────────────────────────────
       Tabs block
───────────────────────────────────────── */
.stat-underscore {
  font-size : 30px;
}
.stat-unit {
  font-size : 13px;
}
@media (max-width : 789px) {
  .htu__subtitle {
    font-size : 13px;
  }
  .htu__left {
    gap : 5px;
  }
  .htu__stats {
    gap: 5px 5px;
  }
  .htu__stat-label {
    font-size : 16px;
  }
  .stat-underscore {
  font-size : 24px;
}
.stat-unit {
  font-size : 10px;
}
.htu__right {
  gap : 5px;
}
.ing__product-image  {
  width : 40%;
}
.ing__product-right {
  padding-top : 12px;
}
.ing__stat-label, .ing__stat-value {
  font-size : 13px;
  line-height : 1;
}
.ing__stat-dash {
  font-size: 15px;
    line-height: 18px;
}
.ing__product-image img {
  max-height: 280px !important;
}
.ing__col {
  padding-bottom : 5px;
}
.ing__nf-image img {
  width : 80%;
}
}
@media (max-width : 999px) {
  .htu {
    min-height : 949px;
  }
}
/* ============================================================
   v2_pdp_reviews.css
   Section "What our customers say" — Carousel d'avis
   À appender dans v2_pdp.css
   ============================================================ */

/* ── Wrapper principal ──────────────────────────────────────── */
.v2-reviews {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.v2-reviews__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ── En-tête ────────────────────────────────────────────────── */
.v2-reviews__heading {
    font-family : 'Gotham' !important;
font-weight : 900 !important;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.v2-reviews__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 36px;
}

.v2-reviews__summary-label {
  font-weight: 400;
}

.v2-reviews__summary-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.v2-reviews__summary-score {
  font-weight: 400;
}

.v2-reviews__summary-by {
  font-weight: 400;
  color: inherit;
}

.v2-reviews__summary-by strong {
  font-weight: 700;
}

/* ── Étoiles (réutilisable) ─────────────────────────────────── */
.v2-reviews__star {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.v2-reviews__star--full path {
  fill: #818181;
  stroke: none;
}

.v2-reviews__star--empty path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.v2-reviews__star--half path {
  stroke-width: 0;
}

/* ── Carousel ───────────────────────────────────────────────── */
.v2-reviews__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.v2-reviews__track-outer {
  flex: 1 1 auto;
  overflow: hidden;
  min-width: 0;
}

.v2-reviews__track {
  display: flex;
  flex-direction: row;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Card individuelle ──────────────────────────────────────── */
.v2-reviews__card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
}

.v2-reviews__card-stars {
  display: flex;
  gap: 2px;
}

/* Étoiles de card — légèrement plus petites */
.v2-reviews__card .v2-reviews__star {
  width: 16px;
  height: 16px;
}

.v2-reviews__card-title {
  font-family: Gotham, sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: inherit;
}

.v2-reviews__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: inherit;
  flex: 1 1 auto;
}

.v2-reviews__card-text p {
  margin: 0;
}

/* ── Footer auteur ──────────────────────────────────────────── */
.v2-reviews__card-footer {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v2-reviews__card-author-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.v2-reviews__card-author {
  font-size: 19px;
  font-weight: 700;
  color: inherit;
}

.v2-reviews__card-verified {
  font-size: 14px;
  font-weight: 400;
  color: inherit;
  opacity: 0.7;
}

/* Ajouter un micro-séparateur visuellement entre nom et badge */
.v2-reviews__card-author + .v2-reviews__card-verified::before {
  content: '·';
  margin-right: 4px;
  opacity: 0.5;
}

.v2-reviews__card-location {
  font-size: 14px;
  font-weight: 400;
  color: inherit;
  opacity: 0.65;
}

/* ── Flèches ────────────────────────────────────────────────── */
.v2-reviews__arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.15s ease;
  z-index: 2;
}

.v2-reviews__arrow:hover:not(:disabled) {
  transform: scale(1.15);
}

.v2-reviews__arrow--prev {
  margin-right: 8px;
}

.v2-reviews__arrow--next {
  margin-left: 8px;
}

/* ── Dots de pagination ─────────────────────────────────────── */
.v2-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
@media (min-width :1000px) {
  .v2-reviews__dots {
    display : none;
  }
}

.v2-reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.2;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.v2-reviews__dot.is-active {
  opacity: 1;
  transform: scale(1.25);
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablette : 2 cards visibles */
@media (max-width: 999px) {
  .v2-reviews__inner {
    padding: 0 40px;
  }

  .v2-reviews__card {
    flex: 0 0 calc(50% - 12px);
  }

  .v2-reviews__heading {
    font-size: 26px;
  }
}

/* Mobile : 1 card visible */
@media (max-width: 599px) {
  .v2-reviews__inner {
    padding: 0 16px;
  }

  .v2-reviews__card {
    flex: 0 0 100%;
    padding: 20px 16px;
  }

  .v2-reviews__heading {
    font-size: 22px;
  }

  .v2-reviews__track {
    gap: 16px;
  }

  .v2-reviews__arrow {
    width: 28px;
    height: 28px;
  }

  .v2-reviews__arrow--prev {
    margin-right: 4px;
  }

  .v2-reviews__arrow--next {
    margin-left: 4px;
  }
}

/* ============================================================
   v2_pdp_gelspec.css
   Section "Gel Range Specs"
   À appender dans v2_pdp.css
   ============================================================ */

/* ── Wrapper principal ──────────────────────────────────────── */
.gs {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.gelspec_title_bar {
      font-size: 25px;
}

/* ════════════════════════════════════════════════════════════
   DESKTOP (≥ 1000px) — layout côte à côte
════════════════════════════════════════════════════════════ */

.gs__mobile  { display: none; }
.gs__desktop { display: flex; max-width: 1300px; min-height: 450px;
margin: auto;
    padding: 16px;
  margin-top : 101px; }

/* ── Colonne gauche (33%) ────────────────────────────────── */
.gs__left {
  flex: 0 0 33.333%;
  width: 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 40px 40px;
  box-sizing: border-box;
}

.gs__title {
    font-family : 'Gotham' !important;
font-weight : 900 !important;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}

.gs__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 auto;
  flex: 1 1 auto;
}

.gs__cta {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 60px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid currentColor;
  background: #000;
  color : #fff !important;
  transition: background 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.gs__cta:hover {
  background: currentColor;
}

.gs__cta:hover span,
.gs__cta:hover {
  /* invert text on hover via filter trick since color is dynamic */
  filter: invert(1);
}

/* ── Colonne droite (67%) ────────────────────────────────── */
.gs__right {
  flex: 0 0 66.666%;
  width: 66.666%;
  display: flex;
  flex-direction: column;
  padding: 40px 32px 0;
  box-sizing: border-box;
}

.gs__section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 32px;
  opacity: 0.7;
}
@media (min-width : 1000px ) {
  .gs__section-label {
    display : none;
  }
}

/* ── Grille gels ─────────────────────────────────────────── */
.gs__gels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  flex: 1 1 auto;
}

.gs__gel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 20px 24px;
  box-sizing: border-box;
}


.gs__gel-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gs__gel-flavor {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: var(--feat-color, currentColor);
}

.gs__gel-feature {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  color: var(--feat-color, currentColor);
}

.gs__gel-dash {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0 0px;
  line-height: 0.5;
  color: var(--feat-color, currentColor);
}

.gs__gel-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--feat-color, currentColor);
}

.gs__gel-image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 20px;
  width : 100%;
  max-width : 143px;
  height: auto;
  flex-shrink: 0;
}

.gs__gel-image {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  position : relative;
  left: -33px;
}


/* 3 gels : 3 colonnes égales */
.gs__gels:has(.gs__gel:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}

/* ════════════════════════════════════════════════════════════
   MOBILE (< 1000px) — colonne unique + slider
════════════════════════════════════════════════════════════ */

@media (max-width: 999px) {

  .gs__desktop { display: none; }
  /* ── Wrapper mobile global ── */
  .gs__mobile  {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top : 48px;
  }

  /* ── Zone blanche : label + textes ── */
  /* ── Seul le label sur fond blanc ── */
  .gs__mobile-header {
    background-color: #000;
    padding: 0px 16px 0;
    box-sizing: border-box;
  }

  .gs__mobile-label {
    font-size: 18px;
    color : #fff;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 16px;
    font-family: 'Gotham';
font-weight: 900;
    line-height: 1.3;
  }
  .gepspec_mobile_title_bar {
   font-size: 25px;
  }

  /* ── Textes des gels — fond noir (dans gs__mobile-body) ── */
.gs__mobile-texts-wrap {
  overflow: hidden;
}

.gs__mobile-texts {
  display: flex;
  flex-direction: row;
  transition: transform 0.35s ease;
  width: 100%;
}

.gs__mobile-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 100%;
  min-width: 100%;
  padding: 24px 80px 0;
  box-sizing: border-box;

}




  .gs__mobile-text .gs__gel-flavor {
    font-size: 22px;
    font-weight: 700;
  }

  .gs__mobile-text .gs__gel-feature {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
            line-height: 1;
  }

  /* ── Zone noire : textes + images + dots + CTA ── */
  .gs__mobile-body {
     display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
  }

  /* ── Slider wrap ── */
  .gs__slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .gs__slider-track {
    display: flex;
    flex-direction: row;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  /* ── Slide individuelle (image only) ── */
  .gs__slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    box-sizing: border-box;
            align-items: center;
  }

  .gs__slide .gs__gel-image-wrap {
    align-items: center;
    justify-content: center;
  }

  .gs__slide .gs__gel-image {
    max-height: 300px;
    width: auto;
    height: 100%;
    object-fit: contain;
  }

  /* ── Dots ── */
  .gs__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 0;
    width: 100%;
    height : 30px;
  }

  .gs__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.35;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .gs__dot.is-active {
    opacity: 1;
    transform: scale(1.3);
  }

  /* ── CTA mobile ── */
  .gs__cta--mobile {
    margin: 32px auto 0;
        display: block;
        width: fit-content;
        padding: 14px 60px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        border: 2px solid currentColor;
        background: #fff;
        color: #000 !important;
  }
}
.spec_bar_over_title {
      line-height: 1.5;
    font-size: 50px;
}
.spec_tm_title {
      top: 0px;
    position: relative;
}
@media (max-width : 1000px) {
  .gs__mobile-texts-wrap {
    margin-left: 20%;
    margin-right: 20%;
    width : 100%;
  }



 
}
@media (max-width: 999px) {
  .gs__mobile-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
  }
}

/* ============================================================
   v2_pdp_science_backed.css
   Section "Science Backed Formula"
   À appender dans v2_pdp.css
   ============================================================ */

/* ── Wrapper ────────────────────────────────────────────────── */
.sb {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════════
   DESKTOP (≥ 1000px)
════════════════════════════════════════════════════════════ */

.sb__mobile  { display: none; }
.sb__desktop {
  display: flex;
  max-width : 1300px;
  min-height: 560px;
  gap: 16px;
  padding : 16px;
  margin:auto;
  margin-top : 118px;
}

/* ── Colonne gauche (50%) ────────────────────────────────── */
.sb__left {
  flex: 0 0 49%;
  width: 49%;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

.sb__left-inner {
  display: flex;
  flex-direction: column;
  padding: 48px 48px 48px 48px;
  width: 100%;
  box-sizing: border-box;
}

.sb__dash {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.sb__title {
    font-family : 'Gotham' !important;
font-weight : 900 !important;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}

.sb__subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.sb__description {
  font-size: 14px;
  font-weight: 400;
  margin-bottom : 10px;
}

.sb__description p { margin: 0; }

/* Image contenu (graphique) */
.sb__content-image-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
}

.sb__content-image {
  display: block;
  max-width: 428px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top:16px;
}

/* CTA */
.sb__cta {
      display: inline-block;
    align-self: flex-start;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
    width: 135px;
    padding-top: 17px;
    padding-bottom: 17px;
    text-align: center;
}

.sb__cta:hover {
  opacity: 0.85;
}

/* ── Colonne droite photo (50%) ──────────────────────────── */
.sb__right {
  flex: 0 0 49%;
  width: 49%;
  overflow: hidden;
  position: relative;
}

.sb__right .sb__hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ════════════════════════════════════════════════════════════
   MOBILE (< 1000px)
════════════════════════════════════════════════════════════ */

@media (max-width: 999px) {

  .sb__desktop { display: none; }
  .sb__mobile  {
    display: flex;
    flex-direction: column;
    width: 100%;
            padding: 48px 16px 16px;
  }

  /* Photo hero plein largeur en haut */
  .sb__mobile-hero {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .sb__mobile-hero .sb__hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Zone texte */
  .sb__mobile-text {
    display: flex;
    flex-direction: column;
  }

  .sb__mobile-text .sb__title {
    font-size: 18px;
        font-family: 'Gotham';
  }
  @media (max-width : 999px) {
    .sb__dash {
      font-size: 20px;
    }
  }

  /* Image contenu */
  .sb__mobile-content-image {
    padding-top: 0px;
  }

  .sb__mobile-content-image .sb__content-image {
    width: 100%;
    height: auto;
    display: block;
  }

  /* CTA */
  .sb__mobile-cta-wrap {
    padding-top: 28px;
  }

  .sb__mobile .sb__cta {
    display: inline-block;
  }
}

/* ============================================================
   v2_pdp_community_videos.css
   Section "Community Videos"
   À appender dans v2_pdp.css
   ============================================================ */

/* ── Wrapper ────────────────────────────────────────────────── */
.cv {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.cv__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  margin-top : 40px;
}

/* ── Titre ──────────────────────────────────────────────────── */
.cv__heading {
    font-family : 'Gotham' !important;
font-weight : 900 !important;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 36px;
  line-height: 1.1;
}

/* ════════════════════════════════════════════════════════════
   DESKTOP (≥ 1000px) — toutes les cartes sur une ligne
════════════════════════════════════════════════════════════ */

.cv__slider-outer {
  position: relative;
  width: 100%;
}

.cv__track {
  display: grid;
  grid-template-columns: repeat(var(--cv-count, 4), 1fr);
  gap: 17px;
  width: 100%;
}

/* Ajuster la grille selon le nombre de blocs */
.cv__track:has(.cv__card:nth-child(3):last-child) { --cv-count: 3; }
.cv__track:has(.cv__card:nth-child(4):last-child) { --cv-count: 4; }
.cv__track:has(.cv__card:nth-child(5):last-child) { --cv-count: 5; }
.cv__track:has(.cv__card:nth-child(6):last-child) { --cv-count: 6; }

/* ── Carte vidéo ────────────────────────────────────────────── */
.cv__card {
  position: relative;
  cursor: pointer;
  outline: none;
  display: block;
}

.cv__card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #1a1a1a;
}

.cv__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.cv__card-img--placeholder {
  background: #2a2a2a;
}

/* Overlay dégradé bas */
.cv__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* Bouton play centré */
.cv__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.cv__play svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  opacity: 0.9;
  width: 52px;
  height: 52px;
}

/* Caption bas gauche */
.cv__card-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  color: #fff;
}

.cv__card-dash {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 0.5;
}

.cv__card-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ── Accent jaune sur la première carte ── */
.cv__card:first-child::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 70%;
  width: 60px;
  height: 44px;
  background-color: #fff200;
  clip-path:polygon(60% 0%, 100% 0%, 40% 100%, 0% 100%);
  z-index: 4;
}

/* Dots — cachés sur desktop */
.cv__dots { display: none; }

/* ════════════════════════════════════════════════════════════
   MOBILE (< 1000px) — slider horizontal
════════════════════════════════════════════════════════════ */

@media (max-width: 999px) {

  .cv__inner {
    padding: 0;
  }

  .cv__heading {
    font-size: 18px;
    font-family : 'Gotham';
    padding: 0 16px 16px;
  }

  .cv__slider-outer {
    overflow: hidden;
  }

  .cv__track {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    /* Override grid */
    grid-template-columns: unset;
    width: auto;
  }

  .cv__card {
    flex: 0 0 72vw;
    max-width: 280px;
  }

  .cv__card-thumb {
    aspect-ratio: 9 / 14;
  }

  .cv__card-title {
    font-size: 15px;
  }

  /* Dots */
  .cv__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 26px 0 0;
            height: 36px;
  }

  .cv__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
    opacity: 0.2;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .cv__dot.is-active {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* ════════════════════════════════════════════════════════════
   MODALE VIDÉO
════════════════════════════════════════════════════════════ */

.cv__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv__modal[hidden] { display: none; }

.cv__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.cv__modal-inner {
  position: relative;
  z-index: 1;
  width: min(90vw, 900px);
}

.cv__modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  line-height: 0;
}

.cv__modal-close:hover { opacity: 1; }

.cv__modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width : 1000px) {
  .cv__modal-player {

  aspect-ratio: 16 / 9;
   }
}
.cv__modal-player iframe,
.cv__modal-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.community_videos_title_bar {
      font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 599px) {
  .cv__modal-inner {
    width: 95vw;
  }

  .cv__modal-close {
    top: -40px;
  }
  .community_videos_title_bar {
      font-size: 20px;
}
}


/* ============================================================
   v2_pdp_ingredient_highlight.css
   Section "Ingredient Highlight"
   À appender dans v2_pdp.css
   ============================================================ */

.ih {
  width: 100%;
  box-sizing: border-box;
}

.ih__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  margin-top : 40px;
}

/* ── En-tête ────────────────────────────────────────────────── */
.ih__header {
  margin-bottom: 24px;
}

.ih__title {
    font-family : 'Gotham' !important;
font-weight : 900 !important;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 10px;
}

.ih__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   DESKTOP (≥ 1000px) — grille 3 colonnes
════════════════════════════════════════════════════════════ */

.ih__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 28px;
}

.ih__slider-outer { display: none; }

/* ── Carte ──────────────────────────────────────────────────── */
.ih__card {
  display: flex;
  flex-direction: column;
}

.ih__card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 389 / 550;
  overflow: hidden;
  background: #e8e8e8;
}

.ih__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ih__card-image--placeholder {
  background: #d0d0d0;
}

.ih__card-body {
  padding: 14px 0 0;
}

.ih__card-title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.ih__card-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.ih__cta-wrap {
  margin-top: 4px;
}

.ih__cta {
  display: inline-block;
  width: 188px;
    padding-top: 16px;
    padding-bottom: 16px;
    text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ih__cta:hover {
  opacity: 0.85;
}

/* ════════════════════════════════════════════════════════════
   MOBILE (< 1000px) — slider
════════════════════════════════════════════════════════════ */

@media (max-width: 999px) {

  .ih__inner {
    padding: 0 16px;
  }

  .ih__title {
    font-size: 18px;
    font-family : 'Gotham'
  }
 
  .ih__subtitle {
    font-size : 12px;
    font-weight : 400;

  }

  /* Cacher la grille desktop */
  .ih__grid { display: none; }

  /* Afficher le slider */
  .ih__slider-outer {
    display: block;
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .ih__slider-track {
    display: flex;
    flex-direction: row;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .ih__slide {
    flex: 0 0 calc(90% - 6px);
    display: flex;
    flex-direction: column;
  }

  .ih__slide .ih__card-image-wrap {
    aspect-ratio: 1 / 1;
  }

  /* Dots */
  .ih__dots {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 16px 0 0;
            height: 26px;
        justify-content: center;
  }

  .ih__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
    opacity: 0.2;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .ih__dot.is-active {
    opacity: 1;
    transform: scale(1.3);
  }

  .ih__cta-wrap {
    margin-top: 24px;
  }

  .ih__cta {
    display: block;
    text-align: center;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;

  }
}
.ingredient_title_bar {
      font-size: 45px;
    line-height: 1.5;
}
@media (max-width : 999px) {
  .ih__card-body {
    padding : 14px;
  }
   .ingredient_title_bar {
    font-size: 30px;
    line-height: 1.3;
  }

}

/* ============================================================
   v2_pdp_comparison_table.css
   Section "Comparison Table"
   À appender dans v2_pdp.css
   ============================================================ */

.ct {
  width: 100%;
  box-sizing: border-box;
      padding-top: 46px !important;
}

.ct__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ── Titre ──────────────────────────────────────────────────── */
.ct__title {
    font-family : 'Gotham' !important;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
      border-top: 1px solid #818181;
}

/* ── Tableau ─────────────────────────────────────────────────── */
.ct__table {
  width: 100%;
  border-collapse: collapse;
}

/* ── En-tête ─────────────────────────────────────────────────── */
.ct__head {
  display: grid;
  grid-template-columns: 1fr 188px 188px;
  margin-bottom: 0;
}

.ct__head-feature {
  /* Cellule vide à gauche */
}

.ct__head-brand,
.ct__head-competitor {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  text-align: center;
}
.ct__head-brand {
  margin-right : 10px;
}

.ct__brand-logo {
  max-width: 80px;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

.ct__brand-name {
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
}

.ct__competitor-label {
      font-size: 16px;
    font-family: 'Gotham';
font-weight: 900;
    line-height: 1;
    text-align: left;
}


/* ── Lignes ──────────────────────────────────────────────────── */
.ct__body {
  border-top: 1px solid #e0e0e0;
}

.ct__row {
  display: grid;
  grid-template-columns: 1fr 188px 188px;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
  min-height: 48px;
}

.ct__row-feature {
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px 14px 0;
  line-height: 1.4;
}

.ct__row-brand,
.ct__row-competitor {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 14px 8px;
    
}
.ct__row-brand {
    margin-right : 10px;
  }
/* ── Icônes check / cross ────────────────────────────────────── */
.ct__check {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.ct__check--brand {
  color: #1a1a1a;
}

.ct__cross {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.ct__cross--competitor {
  color: #1a1a1a;
}

/* ════════════════════════════════════════════════════════════
   MOBILE (< 1000px)
════════════════════════════════════════════════════════════ */

@media (max-width: 999px) {

  .ct__title {
    font-size: 18px;
    margin-bottom: 24px;
    font-family: 'gotham';
  }

  .ct__head {
    grid-template-columns: 1fr 111px 103px;
  }

  .ct__head-brand,
  .ct__head-competitor {
    padding: 14px 8px;
  }

  .ct__brand-logo {
    max-width: 60px;
    max-height: 44px;
  }

  .ct__competitor-label {
    font-size: 14px;
  }

  .ct__row {
    grid-template-columns: 1fr 111px 103px;
    min-height: 44px;
  }

  .ct__row-feature {
    font-size: 13px;
    padding: 12px 8px 12px 0;
  }

  .ct__row-brand,
  .ct__row-competitor {
    padding: 12px 4px;
  }

  .ct__check {
    font-size: 16px;
  }

  .ct__cross {
    font-size: 14px;
  }
}

/* ============================================================
   v2_pdp_faq.css
   Section "FAQ"
   À appender dans v2_pdp.css
   ============================================================ */

.faq {
  width: 100%;
  box-sizing: border-box;
}

.faq__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ── Titre ──────────────────────────────────────────────────── */
.faq__title {
  font-size: 32px;
  font-family : 'Gotham';
  font-weight : 900;
  line-height: 1.1;
  margin: 0 0 32px;
}

/* ── Liste ──────────────────────────────────────────────────── */
.faq__list {
  border-top: 1px solid #e0e0e0;
}

/* ── Item ───────────────────────────────────────────────────── */
.faq__item {
  border-bottom: 1px solid #e0e0e0;
}

/* ── Bouton question ─────────────────────────────────────────── */
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  color: inherit;
    font-family : 'Gotham' !important;
font-weight : 900 !important;

}

.faq__question-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1 1 auto;
}

/* ── Icône +/- ───────────────────────────────────────────────── */
.faq__icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
}

.faq__icon-plus,
.faq__icon-minus {
  position: absolute;
  inset: 0;
  transition: opacity 0.2s ease;
}

.faq__icon-minus {
  opacity: 0;
}

.faq__item.is-open .faq__icon-plus  { opacity: 0; }
.faq__item.is-open .faq__icon-minus { opacity: 1; }

/* ── Réponse ─────────────────────────────────────────────────── */
.faq__answer {
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width : 900px;
}

.faq__answer-inner {
  padding: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.8;
}

.faq__answer-inner p {
  margin: 0 0 8px;
}

.faq__answer-inner p:last-child {
  margin-bottom: 0;
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 999px) {

  .faq__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .faq__question-text {
    font-size: 14px;
  }

  .faq__question {
    padding: 16px 0;
  }
  .faq__answer {
    width : 98%;
  }
}

@media (max-width: 798px) {
    section.pro-reviews-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}
.title_tm {
        font-family : 'Gotham' !important;
font-weight : 900 !important;
display: inline !important;
}

.product-faqs-section {
  display : none;
}

@media (max-width: 999px) {

  .title_tm {
    position: absolute;
    top: 35px;
    width : 25px !important;
  }
}

/* ============================================================
  Loop
   ============================================================ */

.loop-widget-purchase-option {
padding : 0;
}
.loop-widget-purchase-option-header {
padding : 16px 18px;
}
.loop-widget-spg-container {
margin-left : 44px;
margin-bottom : 33px;
}
.loop-widget-purchase-option-header {
background-color : #000;
}
.loop-widget-sp-selector-wrapper {
display : block;
width : 30%;
}
.loop-widget-purchase-option.loop-widget-purchase-option-border-top.loop-widget-purchase-option-onetime .loop-widget-purchase-option-label, .loop-widget-purchase-option.loop-widget-purchase-option-border-top.loop-widget-purchase-option-onetime .loop-widget-purchase-option-price  {
color : #000;
}
.loop-widget-purchase-option.loop-widget-purchase-option-border-top.loop-widget-purchase-option-onetime .loop-widget-purchase-option-radio .loop-widget-radio-svg circle {
stroke : #000;
}
.loop-widget-spg-container.expanded {
display: flex;
    flex-direction: row;
}

.loop-widget-purchase-options-label {
    font-size: 14px !important;
    font-weight: 800 !important;
    font-family: 'Gotham';
font-weight: 900;
    text-transform: uppercase !important;
    margin-bottom : 13px !important;
}
.loop-widget-spg-container.expanded {
display: flex;
    flex-direction: row;
    margin-bottom : 10px;
}
.loop-widget-sp-selector-label {
  position : relative !important;
  top: 0 !important;
  left: -0.4em !important;
  font-weight : 700 !important;
  margin-bottom : 12px;
  font-size: 10px;
}
.loop-widget-sp-selector-container select {
  font-weight : 700;
  font-size : 14px;
  margin: 0;
}
.loop-widget-sp-selector-description {
    font-size: 14px;
    font-weight: 700;
        line-height: 20px;
    }
    .loop-widget-sp-selector-description-wrapper {
      margin : auto;
      margin-bottom: 0;
    }
    .loop-widget-purchase-option-price {
        font-family : 'Gotham' !important;
font-weight : 900 !important;
      font-size :15px;
    }
    .loop-widget-purchase-option-compare-at-price {
      font-family :Gotham;
      font-size :12px;
      margin-top: auto;
    }
    .loop-widget-purchase-option {
      padding : 0 !important;
      gap : 0 !important;
    }
  .loop-widget-purchase-option-label, .loop-widget-purchase-option-price {
font-size: 14px !important;
font-family: 'Gotham' !important;
font-weight: 900 !important;
text-transform : uppercase !important;
color: #000;
}
.loop-widget-sp-selector-wrapper {
  flex-direction : column !important;
}
.loop-widget-sp-selector-wrapper {
  width :180px !important;
}
.loop-widget-sp-selector-description {
  color : #e5e5e5 !important;
  font-family : Gotham;
  font-weight : 500;
}
.loop-widget-purchase-option[aria-checked="false"] .loop-widget-purchase-option-header {
  background : #fff !important;
}
.loop-widget-purchase-option[aria-checked="false"] .loop-widget-purchase-option-label,.loop-widget-purchase-option[aria-checked="false"] .loop-widget-purchase-option-price, .loop-widget-purchase-option[aria-checked="false"] .loop-widget-sp-selector {
  color : #818181 !important;
}

.loop-widget-purchase-option[aria-checked="false"] .loop-widget-sp-selector-label {
  background-color : #fff;
  color : #818181;
}


.loop-widget-purchase-option[aria-checked="false"] circle {
  stroke : #000 !important;
}
.loop-widget-purchase-option[aria-checked="true"] circle {
  stroke : #fff !important;
}
.loop-widget-purchase-option[aria-checked="true"] circle:nth-child(2) {
  fill : #fff;
}
.loop-widget-purchase-option[aria-checked="true"] .loop-widget-purchase-option-label,.loop-widget-purchase-option[aria-checked="true"] .loop-widget-purchase-option-price {
  color : #fff !important;
}
.loop-widget-spg-container {
  flex-direction : row !important;
}

.loop-widget-purchase-option[aria-checked="false"] .loop-widget-sp-selector-description {
  color : #000 !important;
}

/* Masquer les cercles */
.loop-widget-purchase-option-radio circle {
  display: none !important;
}

/* Carré extérieur — défaut */
.loop-widget-radio-svg {
  border: 1.7px solid #000;
  border-radius: 0 !important;
  background: transparent;
}

/* Hover : carré intérieur noir */
.loop-widget-purchase-option:hover .loop-widget-radio-svg {
  background: #000;
  box-shadow: inset 0 0 0 4px #fff;
}

/* Sélectionné : contour blanc + carré intérieur blanc */
[aria-checked="true"] .loop-widget-purchase-option-radio .loop-widget-radio-svg {
  border-color: #fff;
  background: #fff;
  box-shadow: inset 0 0 0 3px #000;
  
}
.loop-widget-purchase-option-radio .loop-widget-radio-svg {
width : 17px;
  Height : 17px;
}

.loop-widget-container {
  margin-bottom: 36px;
}
/* Loop widget: prix avant compare-at sur mobile */
@media (max-width: 999px) {
  .loop-widget-purchase-option-header {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
  }
  .loop-widget-spg-label-discount-wrapper {
    flex: 1 !important;
  }
  .loop-widget-purchase-option-price-container {
    flex-direction: column !important;
    align-items: flex-end !important;
  }
  .loop-widget-purchase-option-price {
    order: 1 !important;
  }
  .loop-widget-purchase-option-compare-at-price {
    order: 2 !important;
              font-family : 'Gotham' !important;
font-weight : 700 !important;
  }
  .loop-widget-purchase-option-label {
    width: 150px;
  }
  .loop-widget-purchase-option-price {
    margin-top: 3px;
  }
  .loop-widget-purchase-option-label, .loop-widget-purchase-option-price {
    font-size: 12px !important;
  }
  .loop-widget-sp-selector-container {
        width: 105px;
  }

.loop-widget-sp-selector-container::after { 
  top: 51%;
    right: 5px;
}
.loop-widget-sp-selector-wrapper {
      width: 110px !important;
}
.loop-widget-sp-selector-description {

    font-size: 10px;
    line-height: 15px;
}
}

/* ═══════════════════════════════════════════════════
   LIGHTBOX — pg-lightbox
   ═══════════════════════════════════════════════════ */

.pg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.pg-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Image ── */
.pg-lightbox__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 88vw;
  max-height: 88vh;
}

.pg-lightbox__img {
  display: block;
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  user-select: none;
}

/* ── Close button ── */
.pg-lightbox__close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
  padding: 0;
}

.pg-lightbox__close:hover {
  opacity: 1;
}

/* ── Navigation arrows ── */
.pg-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
}

.pg-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.pg-lightbox__prev { left: 18px; }
.pg-lightbox__next { right: 18px; }

/* ── Counter ── */
.pg-lightbox__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-family: sans-serif;
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* ── Cursor hint on desktop images ── */
@media (min-width: 1000px) {
  .pg-lightbox-trigger {
    cursor: zoom-in;
  }
}
@media (max-width: 999px) {
  .js-product_section {
    flex-direction: column !important;
  }
  
}
/* ── Community Videos — player inline ── */
.cv__card {
  position: relative;
  overflow: hidden;
}

.cv__card-player {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 10;
}

.cv__card-player iframe,
.cv__card-player video {
  width: 100%;
  height: 100%;
  display: block;
}

.cv__card-player-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
}


/* ============================================================
  Global spacing and font review desktop
   ============================================================ */

.product-main .product__information .description {
  padding-top: 15px;
  margin-bottom: 15px;
}
.product-block--description {
  margin-bottom : 36px;
}
.product-template.product-main .product_section {
  margin-bottom : 117px;
}
  .description.content ul {
  margin-left : 16px;
  list-style-type : "— ";
}
/* ============================================================
  Global spacing and font review mobile
   ============================================================ */
body {   font-family : 'Gotham' !important;
font-weight : 500 !important;; font-weight: normal; overflow-x: hidden; }

.pfaq__question {
  font-family : 'Gotham' !important;
  font-weight : 900 !important;
}

@media (max-width: 999px) {
  .product-main .product__images {
    width: 100% !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }
  .product-main .product__information {
    width: 100% !important;
    position: static !important;
    top: auto !important;
    margin: 0 !important;
    padding-left: 0px;
    padding-right: 0px;
    padding-top : 14px;
  }
  .product-block--rating {
    margin-bottom : 8px;
  }
  .product__information p {
    font-size : 13px;
  }
  .description li {
    font-size : 12px;
  }

.product-block--description {
margin-bottom : 15px;
}
.v2-flavor-selector__title {
    font-size: 14px;
    margin-bottom : 7px;
  }
.v2-flavor-selector__image-wrap, .v2-flavor-selector__item {
  width : 59.54px;
}
.v2-flavor-selector {
  margin-bottom : 24px;
}
.v2-qty-selector__card {
          padding: 5px;
        padding-top: 18px;
        min-width: 108px;
                height: 146px;
}
.v2-qty-selector__price-wrap {
  display: flex;
  flex-direction: column;  /* ← empile prix + barré verticalement */
  align-items: flex-start; /* ← aligne tout à gauche */
  gap: 2px;
  margin-bottom: 4px;
}
.v2-qty-selector__badge--discount {
      position: relative;
    top: 125px;
    right: 45px;
            width: 41.63px;
}
.v2-qty-selector__badge--best, .v2-qty-selector__badge--rec {
width: 92px;
font-size: 10px;
}
.v2-qty-selector__badge {
    padding: 8px 2px;
}
.v2-qty-selector__name {
  margin : 0;
}
.v2-qty-selector__unit-price {
  margin-bottom: 4px;
}
.v2-qty-selector__grid {
  gap : 10px;
}
.v2-qty-selector__badge--discount {
  font-size : 14px !important;
}
.v2-qty-selector__badges {
      min-width: 172px;
    width: 95%;
}


}

 
   .htu {
      display: flex;
      width: 100%;
      min-height: 400px;
    }
    .htu__left {
      flex: 1 1 66%;
      background: var(--htu-left-bg, #f2f2f2);
      color: #000;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .htu__right {
      flex: 0 0 34%;
      background: var(--htu-right-bg, #f2e40a);
      color: #000;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 32px;
    }
    .htu__title {
      font-size: clamp(28px, 3vw, 42px);
        font-family: 'Gotham';
font-weight: 900;
      text-transform: uppercase;
      line-height: 1.05;
      margin: 0;
    }
    .htu__subtitle { font-size: 15px; line-height: 1.6; max-width: 480px; }
    .htu__subtitle p { margin: 0; }
    .htu__stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px 16px;
    }
    .htu__stat { display: flex; flex-direction: column; gap: 4px; }
    .htu__stat-dash { font-size: 14px; font-weight: 700; display: block; margin-bottom: 0px !important; }
    .htu__stat-label,
    .htu__stat-value {
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin: 0;
      line-height: 1.2;
    }
    .htu__stat-value small,
    .htu__stat-value sup { font-size: 0.65em; font-weight: 800; }
    .htu__headline {
      font-size: clamp(22px, 2.5vw, 34px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.1;
      margin: 0;
    }
    .htu__image-wrap {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      flex: 1;
    }
    .htu__image-wrap img {
      max-width: 100%;
      max-height: 260px;
      object-fit: contain;
      display: block;
    }

      .v2-tabs__accordion-trigger {
      font-size: 16px;
      font-family : 'Gotham';
      font-weight : 900;
      letter-spacing: 0.1em;

    }
    @media (max-width: 999px) {
      .htu { flex-direction: column; min-height: unset; }
      .htu__left, .htu__right { padding: 15px 15px; }
      .htu__stats { grid-template-columns: repeat(2, 1fr); }
      .htu__title {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 33px;
    }
    .htu__left {
      gap : 0px;
    }
    .htu__subtitle {
      font-family : 13px;
      margin-top: 16px;
    }
    .htu__stat-label, .htu__stat-value {
      font-size: 16px;
    font-family: 'Gotham';
font-weight: 900;
    }
    .product-template.product-main .product_section {
      margin-bottom : 32px;
    }
   .shopify-section.v2-pdp-tabs {
    padding-top:64px !important;
   }
 #shopify-section-{{ id }} .v2-tabs__accordion-item:first-child {
    border-top: none !important;
        
  }
  .v2-tabs  {
padding-top: 0px !important;
  }
  .wtu__title-row {
  align-items: flex-start !important; /* ← était center */

}
.wtu__title {
    margin-top: 8px !important;
}
.wtu__left {
  padding-top : 16px !important;
}
    }
@media (min-width : 1000px) {
  .mobile-only {
    display : none;
  }
  .htu__left, .htu, .wtu {
    height : 520px;
  }
  .gs__right {
    padding-bottom : 40px;
  }
}

@media (max-width : 999px) {
  .v2-tabs__accordion {
        background-color: #f2f2f2;

  }
  .v2-tabs {
    background-color : #fff !important;
  }
  .v2-tabs__accordion-trigger {
    padding: 18px 16px !important;
  }
  .v2-reviews__arrow {
    display : none;
  }
  .reviews_title_bar {
    font-size : 32px;
  }
  .v2-reviews__summary {
  flex-wrap: nowrap !important;
  font-size: 10px;
}
.v2-reviews__heading {
  margin-bottom : 8px;
}
.gelspec_title_bar {
  font-size : 32px;
  line-height: 0px;
}
.cv__dots {
  display : none;
}
.cv__heading {
  margin-bottom : 0px;
}
.cv {
  padding-bottom : 0px !important;
}
.ih__card-subtitle, .ih__card-title {
  font-size: 14px;
}
.ct__title {
  border : none;
}
.ih {
  padding-bottom : 12px !important;
}
.ct__row-feature {
          font-size: 11px;
        line-height: 1;
}
    .light-text {
        font-weight: 400;
        font-size: 9px;
        line-height: 0.5;
    }
.ct__row-feature {
      line-height: 1;
      padding: 3px 2px 3px 0;

}
.gs__gel-dash {
  margin :0;
}
.gs__gel-image {
  left : 0;
}
.gs__gel-image-wrap {
  width : 177px;
}
}
@media (min-width: 1000px) {
  .announcement-bar__container {
    height: 45.5px !important;
  }
}
@media (max-width: 999px) {
  .announcement-bar__container {
    height: 35.5px !important;
  }
}
@media (max-width: 424px) {
  .announcement-bar__container {
    height: 34px !important;
  }
}