/** Shopify CDN: Minification failed

Line 275:0 Unexpected "{"
Line 275:1 Expected identifier but found "%"
Line 280:0 Unexpected "{"
Line 280:1 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
:root {
  --header-font-size: 1.25em;
  --header-secondary-font-size: 0.75em;
  --header-color-base-text:  #000000;
  --header-alt-text: white;
  --header-color-main: #000000;
  --header-color-second: white;
  --header-color-neutral: #ccc;
}
  

body {
  overflow: hidden;
}
 

  
.cpb-menu-button {
  background: none;
  border: none;
  color: var(--header-alt-text);
  font-size: var(--header-font-size);
  cursor: pointer;
  position: absolute;
  left: 16px;
}

.cpb-ln-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
  padding: 16px;
  height: 113px;
  width: 100%;
  background: var(--header-color-main);
}

.cpb-ln-header-img > img {
  width: 240px;
  height: 50px;
}

/* --- Menu Panel --- */
.cpb-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  transition: transform 0.5s ease-in-out;
  transform: translateX(-100%);
  backdrop-filter: blur(calc(var(--blur-medium, 3.125rem) / 2));
}

.cpb-menu-panel.visible {
  transform: translateX(0);
}

.hidden {
  display: none;
}

.cpb-menu-panel-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 24px;
  width: 25vw;
  height: calc(100% - 48px);
  background: var(--header-color-second);
  padding: 0;
  border-radius: 16px;
}

  
.cpb-menu-top {
  padding: 16px;
}

.cpb-menu-close {
  background: none;
  border: none;
  font-size: var(--header-font-size);
  cursor: pointer;
  color: var(--header-color-main);
  padding: 0;
  margin: 0;
}

.cpb-menu-mid {
  flex: 1;
  overflow-y: auto;
  border-bottom: 1px solid var(--header-color-neutral);
}

.cbp-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}


.cpb-menu-item > a {
  display: block;
  padding: 16px;
  text-decoration: none;
  font-size: var(--header-font-size);
  color: var(--header-color-principal);
  transition: color 0.3s ease-in-out;
}

.cpb-menu-item > a:hover {
  color: #888;
}

/* Submenu: No border between submenu items */
.cpb-submenu {
  list-style: none;
  padding-left: 1;
  margin: 0;
}

.cpb-submenu-item {
  padding: 8px;
}

.cpb-submenu-item a {
  display: block;
  font-size: var(--header-secondary-font-size);
  color: var(--header-color-principal);
  text-decoration: none;
}

.cpb-submenu-item a:hover {
  color: #888;
}

.cpb-menu-bottom {
  padding: 16px;
}

.cbp-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}


.cbp-footer-menu a {
  font-size: 0.9rem;
  color: #666;
  font-weight: bold;
   text-decoration: none;
}

.cbp-footer-menu a:hover {
  color: #999;
}

.cpb-social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 8px;
}

.cpb-social-title {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 8px;
}

.cpb-social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.cpb-social-title {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 8px;
}

.cpb-list-social {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cpb-list-social__item {
  display: flex;
  align-items: center;
}

.cpb-list-social__link {
  display: inline-flex;
  color: #444;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.cpb-list-social__link:hover {
  color: #000;
}

.cpb-list-social__link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


@media screen and (max-width: 768px) {
  .cpb-menu-panel-container {
    width: 85vw;
  }

  .cpb-ln-header {
    height: 70px;
  }

  .cpb-footer-menu {
    gap: 12px;
  }
}
html, body {
  overflow-x: hidden;
  overflow-y: auto;
}
  /* --- Container Styling --- */
.ln-home-page-video-wrapper {
  position: relative;
  min-height: 100vh; /* Instead of fixed height */
  width: 100%;
  background-color: #f0f0f0;
  overflow: hidden;
}

  /* --- Common Video Styling --- */
  .ln-home-page-hero-video,
  .ln-home-page-hero-video-mobile {
    display: block;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0; /* Behind everything else */
  }


.ln-home-page-hero-video-mobile { display: none; }
{% if mobile_video != blank %}
  @media (max-width: 749px) {
    .ln-home-page-hero-video { display: none; }
    .ln-home-page-hero-video-mobile { display: block; }
  }
{% endif %}


  /* --- Link Layer Styling (Only used when link exists) --- */
  .ln-home-page-video__link-layer {
    display: block; /* Or flex if needed for direct children alignment */
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; /* Above video */
    cursor: pointer;
    /* remove default link appearance */
    text-decoration: none;
    color: inherit;
    /* Ensures contained overlay aligns correctly */
    display: flex;
    flex-direction: column;
  }

  /* --- Overlay Styling --- */
  .video-overlay {
    /* Common styles whether inside link or direct child */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;

    /* CRITICAL: Allow clicks/scrolls to pass through the overlay container */
    pointer-events: none;

    /* Specific positioning depends on whether it's inside a link or not */
    position: relative; /* Default if inside the flex link layer */
    z-index: 2; /* Visually above link background, but non-interactive */
  }

  /* Style overlay when it's NOT inside a link */
  .ln-home-page-video-wrapper:not(.is-linked) .video-overlay {
     position: absolute; /* Position directly within the wrapper */
     top: 0;
     left: 0;
     z-index: 1; /* Only needs to be above video if no link layer exists */
     pointer-events: auto; /* Allow interaction if overlay IS the top layer */
  }

  /* Allow INTERACTIVE elements *INSIDE* the overlay (e.g., buttons) to be clicked */
  .video-overlay > * {
     pointer-events: auto; /* Re-enable pointer events for children */
  }
  /* OR be more specific: */
  /*
  .video-overlay .my-button-class,
  .video-overlay .my-text-link-class {
     pointer-events: auto;
  }
  */
.image-comparison-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0; /* Ajustez le padding selon vos besoins */
  overflow: hidden; /* Important pour cacher les débordements lors de la redimensionnement */
}

.image-comparison-wrapper {
  position: relative;
  width: 100%; /* Ou une largeur fixe maximale */
  max-width: 800px; /* Exemple de largeur maximale */
  height: auto; /* La hauteur s'adaptera au contenu */
  aspect-ratio: 16/9; /* Maintenir le ratio de l'image, ajustez si nécessaire */
  overflow: hidden;
}

.image-comparison-before,
.image-comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Cache la partie de l'image qui est en dehors de la width */
}

.image-comparison-before img,
.image-comparison-after img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Assure que l'image couvre l'espace sans être déformée */
  user-select: none; /* Empêche la sélection de l'image lors du glisser-déposer */
  pointer-events: none; /* Empêche les événements de souris sur les images */
}

.image-comparison-before {
  z-index: 1; /* L'image "avant" est en dessous */
}

.image-comparison-after {
  z-index: 2; /* L'image "après" est au-dessus */
  width: 50%; /* La largeur de l'image "après" sera manipulée par le slider */
}

.image-comparison-slider {
  position: absolute;
  top: 0;
  left: 50%; /* Commence au milieu */
  width: 2px; /* Largeur de la bande */
  height: 100%;
  background-color: #fff; /* Couleur de la bande */
  z-index: 3;
  cursor: ew-resize; /* Curseur de redimensionnement horizontal */
  transform: translateX(-50%); /* Centrer la bande */
}

.image-comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px; /* Taille de la poignée */
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #333;
  transform: translate(-50%, -50%); /* Centrer la poignée */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Styles pour le mode mobile, ajustez si nécessaire */
@media (max-width: 768px) {
  .image-comparison-section {
    padding: 30px 0;
  }
}