/** Shopify CDN: Minification failed

Line 10:2 Unexpected "<"

**/
/* ============================================
PS VIDEOS
============================================ */

  <style>
  .acs-video-trio { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    padding: 56px 0; 
  }

  .acs-video-trio__container { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
  }

  .acs-video-trio__kicker{
    font-family: Helvetica, Arial, sans-serif;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #b10f2e;
    font-size: 22px;
    margin-bottom: 8px;
  }

  .acs-video-trio__title{
    font-family: "Lexend", ui-sans-serif, system-ui, sans-serif;
    font-size: 48px;
    color: #0b1220;
    text-align: center;
    font-weight: 900;
    font-size: clamp(30px, 4vw, 54px);
    margin: 0 0 28px;
    letter-spacing: -0.02em;
  }

  .acs-video-trio__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  /* ============================================
Video-infinite
============================================ */

/* ===============================
ACS VIDEO CAROUSEL
=============================== */

  .acs-video-trio {
    padding: 70px 0;
  }

  /* Titres */
  .acs-video-trio__kicker {
    text-align: center;
    font-weight: 700;
    color: #a80533;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
  }

  .acs-video-trio__title {
    text-align: center;
    margin: 0 0 28px;
    text-transform: uppercase;
  }

  /* Carousel structure */
  .acs-video-trio__carousel {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
  }

  .acs-video-trio__viewport {
    overflow: hidden;
    width: 100%;
  }

  /* IMPORTANT: le JS lit le gap ici */
  .acs-video-trio__track {
    display: flex;
    gap: 28px;
    transform: translateX(0);
    will-change: transform;
  }

  /* 3 cartes visibles desktop */
  .acs-video-trio__card {
    flex: 0 0 calc((100% - (28px * 3)) / 4);
  }

  /* Carte cliquable */
  .acs-video-trio__thumbBtn {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  /* Thumbnail */
  .acs-video-trio__thumb {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 30px;
    background: #a80533;
    border: 7px solid #a80533; /* ajuste à ta charte */
  }

  .acs-video-trio__thumb img,
  .acs-video-trio__thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
  }

  .acs-video-trio__thumbPlaceholder {
    width: 100%;
    height: 100%;
    background: #a80533;
    border-radius: 25px;
  }

  /* Bouton play */
  .acs-video-trio__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .acs-video-trio__play svg {
    width: 72px;
    height: 72px;
  }

  .acs-video-trio__play circle {
    fill: #8d0f2a;
    opacity: 0.80;
  }

  .acs-video-trio__play polygon {
    fill: #fff;
  }

  /* Caption */
  .acs-video-trio__caption {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
  }

  /* Navigation arrows */
  .acs-video-trio__nav {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
  }

  .acs-video-trio__nav:hover {
    background: rgba(0, 0, 0, 0.12);
  }


  /* Modal vidéo */
  .acs-video-trio__modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
  }

  .acs-video-trio__modal.is-open {
    display: block;
  }

  .acs-video-trio__modalOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .acs-video-trio__modalDialog {
    position: relative;
    width: min(980px, calc(100% - 32px));
    margin: 6vh auto 0;
    background: #fff;
    border-radius: 18px;
    padding: 16px;
  }

  .acs-video-trio__close {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    cursor: pointer;
    float: right;
  }

  .acs-video-trio__player {
    clear: both;
    padding-top: 12px;
  }

  .acs-video-trio__player iframe,
  .acs-video-trio__player video {
    width: 100%;
    height: min(60vh, 560px);
    display: block;
  }


  @media (max-width: 1024px) {
    

    
    .ps-videos__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .ps-videos__title {
      font-size: 36px;
    }
  }


  @media (max-width: 640px) {


    
   
      .ps-videos {
      padding: 60px 0;
    }

    .ps-videos__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .ps-videos__title {
      font-size: 28px;
    }

    .ps-videos__playBtn {
      width: 60px;
      height: 60px;
    }

    .ps-videos__playBtn svg {
      width: 32px;
      height: 32px;
    }
  }

  @media (max-width: 905px) {

     .acs-video-trio__title{
      font-size: 40px;
    }

    .acs-video-trio__kicker{
      font-size: 18px;
    }

    .acs-video-trio__track {
      gap: 20px;
    }

    .acs-video-trio__card {
      flex: 0 0 calc((100% - 20px) / 2);
    }

    .acs-video-trio__nav {
      width: 40px;
      height: 40px;
      font-size: 26px;
    }

     .acs-video-trio__container {
      /* enlève les hauteurs rigides sur mobile */
      height: auto !important;
      min-height: unset !important;
      padding: 34px 16px !important;
    }

    /* Le wrapper du carousel doit être relatif pour placer les flèches */
    .acs-video-trio__carousel {
      position: relative;
      width: 100%;
      margin-top: 18px;
      padding: 0; /* pas de padding qui mange l’espace */
    }

    /* La zone qui “clip” doit permettre les grosses cartes */
    .acs-video-trio__viewport,
    .acs-video-trio__track {
      overflow: visible; /* important pour que les flèches puissent respirer */
    }

    /* Chaque card devient grosse comme Mint */
    .acs-video-card,
    .acs-video-trio__video_card {
      width: 78vw !important;     /* gros format mobile */
      max-width: 320px;
      aspect-ratio: 9 / 16;       /* look Mint: vertical reels */
      border-radius: 26px;
    }

    /* La vidéo/image remplit bien */
    .acs-video-card video,
    .acs-video-trio__video_card video,
    .acs-video-card img,
    .acs-video-trio__video_card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 26px;
      display: block;
    }

    /* Flèches par-dessus les vidéos */
    .acs-video-trio__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 999px;
      background: rgba(0,0,0,0.35);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
    }

    .acs-video-trio__nav--prev { left: -10px; }
    .acs-video-trio__nav--next { right: -10px; }

    /* Icône flèche */
    .acs-video-trio__nav svg,
    .acs-video-trio__nav img {
      width: 18px;
      height: 18px;
    }

      .acs-video-trio__nav:focus {
      outline: none;
    }

    .acs-video-trio__nav:focus-visible {
      outline: none;
    }

    /* Si tes flèches sont “dans le flux” et te cassent tout, force-les */
    .acs-video-trio__nav,
    .acs-video-trio__nav button {
      pointer-events: auto;
    }

    /* Espace entre cartes (Mint = assez serré) */
    .acs-video-trio__track {
      gap: 16px;
    }

    .acs-video-trio__play svg {
      width: 56px;
      height: 56px;
    }

    .acs-video-trio__play circle {
      fill: #8d0f2a;
      opacity: 0.80;
    }

  }