/** Shopify CDN: Minification failed

Line 22:12 Expected identifier but found whitespace
Line 22:14 Unexpected "{"
Line 22:23 Expected ":"
Line 22:45 Expected ":"
Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:26 Expected ":"
Line 58:10 Expected identifier but found whitespace
Line 58:12 Unexpected "{"
Line 58:21 Expected ":"
... and 13 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-video (INDEX:19) */
.vte-section {
    padding: {{ section.settings.padding }}px 0;
    background: {{ section.settings.bg_color }};
  }

  .vte-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }

  .vte-video {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }

  .vte-video video,
  .vte-video iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 16px;
  }

  .vte-content {
    flex: 1;
  }

  .vte-title {
    font-size: 36px;
    font-weight: 600;
    color: {{ section.settings.title_color }};
    margin-bottom: 15px;
  }

  .vte-text {
    font-size: 16px;
    color: {{ section.settings.text_color }};
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .vte-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid {{ section.settings.btn_color }};
    color: {{ section.settings.btn_color }};
    text-decoration: none;
    transition: 0.3s ease;
  }

  .vte-btn:hover {
    background: {{ section.settings.btn_color }};
    color: #fff;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .vte-container {
      flex-direction: column;
      text-align: center;
    }

    .vte-video video,
    .vte-video iframe {
      min-height: 220px;
    }

    .vte-title {
      font-size: 28px;
    }
  }
/* END_SECTION:custom-video */