/** Shopify CDN: Minification failed

Line 25:9 Expected identifier but found whitespace
Line 25:11 Unexpected "{"
Line 25:20 Expected ":"
Line 25:49 Expected ":"
Line 62:8 Expected identifier but found whitespace
Line 62:10 Unexpected "{"
Line 62:19 Expected ":"
Line 93:13 Expected identifier but found whitespace
Line 93:15 Unexpected "{"
Line 93:24 Expected ":"
... and 14 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:video-autoplay (INDEX:51) */
.video-autoplay-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: {{ section.settings.section_height }}vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Média (vidéo / image fallback) ── */
.video-autoplay__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-autoplay__video,
.video-autoplay__fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Overlay ── */
.video-autoplay__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── Contenu texte ── */
.video-autoplay__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem;
  color: {{ section.settings.text_color }};
}

.video-autoplay__content--left   { text-align: left;   }
.video-autoplay__content--center { text-align: center; }
.video-autoplay__content--right  { text-align: right;  }

.video-autoplay__content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.video-autoplay__content--left .video-autoplay__content-inner  { margin-left: 0; }
.video-autoplay__content--right .video-autoplay__content-inner { margin-right: 0; }

.video-autoplay__title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.video-autoplay__subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin: 0 0 1.5rem;
  opacity: .9;
}

.video-autoplay__cta {
  display: inline-block;
  padding: .85rem 2rem;
  background: {{ section.settings.button_bg }};
  color: {{ section.settings.button_color }};
  border: 2px solid {{ section.settings.button_bg }};
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background .25s, color .25s;
}

.video-autoplay__cta:hover {
  background: transparent;
  color: {{ section.settings.button_bg }};
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .video-autoplay-section {
    height: {{ section.settings.mobile_height }}vh;
    min-height: 250px;
  }
}
/* END_SECTION:video-autoplay */