/** Shopify CDN: Minification failed

Line 49:12 Expected identifier but found whitespace
Line 49:14 Unexpected "{"
Line 49:23 Expected ":"
Line 49:49 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:video-text-split (INDEX:53) */
.video-text-section {
  padding: 60px 20px;
}

/* prevent any template id text showing */
[id^="template--"] {
  font-size: 0 !important;
  line-height: 0 !important;
}
[id^="template--"] * {
  font-size: initial !important;
  line-height: normal !important;
}

.video-text-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.video-text-content {
  flex: 1;
}

.video-text-video {
  flex: 1;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: {{ section.settings.video_width }}px;
}

.video-wrapper video {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* TEXT STYLE */
.subtext {
  margin-top: 12px;
  line-height: 1.7;
}

/* SOUND BUTTON */
.sound-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.sound-toggle::after {
  content: "🔇";
  color: #fff;
  font-size: 16px;
}

.sound-toggle.active::after {
  content: "🔊";
}

/* Mobile */
@media (max-width: 768px) {
  .video-text-container {
    flex-direction: column;
  }
}
/* END_SECTION:video-text-split */