/** Shopify CDN: Minification failed

Line 37:13 Unexpected "{"
Line 37:22 Expected ":"
Line 42:13 Unexpected "{"
Line 42:22 Expected ":"
Line 310:13 Unexpected "{"
Line 310:22 Expected ":"
Line 322:13 Unexpected "{"
Line 322:22 Expected ":"
Line 335:13 Unexpected "{"
Line 335:22 Expected ":"
... and 8 more hidden warnings

**/
.video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.video-hero__background video,
.video-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
}

#video-hero-{{ section.id }} .video-hero__background video {
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none; /* empêche l'UI native d'être cliquable */
}
#video-hero-{{ section.id }}.is-playing .video-hero__background video {
  opacity: 1;
}

.video-hero__overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  z-index: 1;
}

.video-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-hero__logo {
  height: auto;
  margin: 0 auto;
  display: block;
}

.video-hero__subtitle {
  margin-top: 10px;
  font-size: 32px;
}

.video-hero__buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-hero__btn {
  padding: 12px 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s ease;
  background-color: rgba(255, 255, 255, 0.4);
  border: 0.4px solid #fff;
  font-size: 24px;
  position: relative;
  min-width:292px;
}

.video-hero__btn:after {
  content: '';
  position: absolute;
  border-radius: 30px;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255,255,255,0.4);
	-webkit-transition: none;
	   -moz-transition: none;
	       
     transition: none;
}
.video-hero__btn:hover:after {
  width: 120%;
  background-color: rgba(255,255,255,0);
  
	-webkit-transition: all 0.4s ease-in-out;
	   -moz-transition: all 0.4s ease-in-out;
	        transition: all 0.4s ease-in-out;
}

.video-hero__btn-secondary {
  text-decoration: none;
  display: inline-block;
  position:absolute;
  bottom: 10%;
  right: 4%;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}


.video-hero__btn:hover {
  opacity: 0.9;
}

.video-hero__chevron {
  position: absolute;
  bottom:10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  -webkit-transform: rotate(45deg);
  border-left: none;
  border-top: none;
  border-right: 2px #fff solid;
  border-bottom: 2px #fff solid;
}

.video-hero__chevron:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
  border-left: none;
  border-top: none;
  border-right: 1px #fff solid;
  border-bottom: 1px #fff solid;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: arrow;
}

@keyframes arrow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(10px, 10px);
  }
}

.video-modal {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal__iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-modal__iframe-wrapper iframe {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
}

.video-modal__close {
  position: absolute;
  top:10px; right:15px;
  color:#fff; font-size:30px;
  cursor:pointer;
}

@media(max-width:768px){

  .video-hero__content-wrapper{
    margin-top: 50px;
  }

  .video-hero {
    min-height: 80vh;
  }

  .video-hero__content {
    min-height: 75vh;
  }

  .video-hero__logo {
    max-width: 300px;
  }

  .video-hero__subtitle {
    font-size: 20px;
  }
  
  .video-hero__btn {
    width: 100%;
    text-align: center;
  }

  .video-hero__buttons {
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

}

.custom-play-btn{
  width: 38px;
    min-width: 38px;
    height: 38px;
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    display:none
}

.custom-play-btn.visible { 
  display: block;
-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
 }

 @-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.custom-play-btn svg{
  width: 38px;
    min-width: 38px;
    height: 38px;
}

.custom-play-btn[data-state="play"]  .icon-play  { display:block; }
.custom-play-btn[data-state="play"]  .icon-pause { display:none; }
.custom-play-btn[data-state="pause"] .icon-play  { display:none; }
.custom-play-btn[data-state="pause"] .icon-pause { display:block; }

@supports (-webkit-touch-callout: none) {
  video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
  }
}

#video-hero-{{ section.id }} .video-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;         
  opacity: 1;
  transition: opacity .35s ease;
}


#video-hero-{{ section.id }} .video-hero__background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none; 
}


#video-hero-{{ section.id }}.is-playing .video-hero__background video { opacity: 1; }
#video-hero-{{ section.id }}.is-playing .video-hero__fallback { opacity: 0; pointer-events: none; }


#video-hero-{{ section.id }} .video-hero__fallback--mobile { display: none; }
@media (max-width: 749px) {
  #video-hero-{{ section.id }} .video-hero__fallback--desktop { display: none; }
  #video-hero-{{ section.id }} .video-hero__fallback--mobile { display: block; }
}