/** Shopify CDN: Minification failed

Line 15:21 Expected identifier but found whitespace
Line 15:23 Unexpected "{"
Line 15:32 Expected ":"
Line 65:21 Expected identifier but found whitespace
Line 65:23 Unexpected "{"
Line 65:32 Expected ":"

**/


/* CSS from section stylesheet tags */
.trust-badges-wrapper {
    background-color: {{ section.settings.background_color }};
    padding: 40px 20px;
  }

  .trust-badges-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .trust-badge-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border-radius: 50%;
    font-size: 30px;
  }

  .trust-badge-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .trust-badge-description {
    font-size: 13px;
    color: #666;
  }

  @media (max-width: 768px) {
    .trust-badges-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
.video-showcase-wrapper {
    padding: 60px 20px;
    background-color: {{ section.settings.background_color }};
  }

  .video-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .video-showcase-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
  }

  .video-showcase-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .video-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
  }

  .video-item-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
  }

  .video-item-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .video-item-title {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #1a1a1a;
  }

  @media (max-width: 768px) {
    .video-showcase-content {
      grid-template-columns: 1fr;
    }
  }