/** Shopify CDN: Minification failed

Line 20:10 Expected identifier but found whitespace
Line 20:12 Unexpected "{"
Line 20:21 Expected ":"
Line 21:15 Expected identifier but found whitespace
Line 21:17 Unexpected "{"
Line 21:26 Expected ":"
Line 21:55 Expected ":"
Line 27:17 Expected identifier but found whitespace
Line 27:19 Unexpected "{"
Line 27:28 Expected ":"
... and 10 more hidden warnings

**/
  /* Base styles */
  .video-section {
    position: relative;
    overflow: hidden;
    color: {{ section.settings.text_color }};
    min-height: {{ section.settings.desktop_height }}px;
  }
  
  /* Mobile height */
  @media (max-width: 768px) {
    .video-section {
      min-height: {{ section.settings.mobile_height }}px;
    }
  }
  
  /* Video container */
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  
  /* Video element styles */
  .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .background-video.playing {
    opacity: 1;
  }
  
  /* Hide all video controls */
  .background-video::-webkit-media-controls {
    display: none !important;
  }
  
  .background-video::-webkit-media-controls-enclosure {
    display: none !important;
  }
  
  .background-video::-webkit-media-controls-panel {
    display: none !important;
  }
  
  .background-video::-webkit-media-controls-play-button {
    display: none !important;
  }
  
  .background-video::-webkit-media-controls-timeline {
    display: none !important;
  }
  
  .background-video::-webkit-media-controls-current-time-display {
    display: none !important;
  }
  
  .background-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
  }
  
  /* Poster image */
  .video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.8s ease;
  }
  
  .video-poster.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Overlay */
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: {{ section.settings.overlay_color }};
    opacity: {{ section.settings.overlay_opacity | divided_by: 100.0 }};
    z-index: 3;
  }
  
  /* Stats section */
  .stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .stat-label {
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .main-heading {
      font-size: 2.8rem;
    }
    
    .subheading {
      font-size: 1.2rem;
    }
    
    .stats-container {
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .stat-label {
      font-size: 0.8rem;
    }
  }
  
  /* Loading animation */
  .video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    display: none;
  }
  
  .video-loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: {{ section.settings.text_color }};
    animation: loading 1.5s infinite;
  }
  
  @keyframes loading {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
  }