/** Shopify CDN: Minification failed

Line 112:11 Expected identifier but found whitespace
Line 112:13 Unexpected "{"
Line 112:22 Expected ":"
Line 112:48 Unexpected "0"
Line 112:51 Unexpected "{"
Line 112:60 Expected ":"
Line 112:88 Expected ":"
Line 113:21 Expected identifier but found whitespace
Line 113:23 Unexpected "{"
Line 113:32 Expected ":"
... and 32 more hidden warnings

**/


/* CSS from section stylesheet tags */
.logo-slider-section {
    padding: 20px 20px;
    background-color: #fff;
    text-align: center;
  }

  .logo-slider-header {
    margin-bottom: 20px;
  }

  .logo-slider-subtitle {
    font-size: 30px;
    color: #5c5c5c;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .logo-slider-title {
    font-size: 42px;
    font-weight: 700 !important;
    color: #000;
    margin: 0;
  }

  .logos-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .logos-wrapper {
    display: flex;
    gap: 10px;
    animation: slide 15s linear infinite;
    width: fit-content;
  }

  .logo-item {
   border: 2px solid #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    flex-shrink: 14;
    margin: 0;
    padding: 0px 30px;
  }

  .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    display: block;
  }



  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 0px));
    }
  }


  @media (max-width: 768px) {
    .logo-slider-section {
      padding: 40px 20px;
    }

    .logo-slider-title {
      font-size: 28px;
    }

    .logo-slider-subtitle {
      font-size: 12px;
    }

    .logo-item {
      min-width: 120px;
      height: 60px;
      padding: 0 15px;
    }
  }
.youtube-slider-wrapper {
    position: relative;
    width: 100%;
    margin: {{ section.settings.top_margin }}px 0 {{ section.settings.bottom_margin }}px 0;
    background-color: {{ section.settings.bg_color }};
    padding: {{ section.settings.padding }}px 0;
    background: url("/cdn/shop/files/Untitled_design_21.png?v=1766994048");
    background-size: cover;
    background-position: center;
  }

  .youtube-slider-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .slider-header {
    text-align: {{ section.settings.header_alignment }};
    margin-bottom: 40px;
  }

  .slider-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: {{ section.settings.heading_color }};
    margin: 0 0 10px 0;
  }

  .slider-header p {
    font-size: 16px;
    color: {{ section.settings.subtitle_color }};
    margin: 0;
  }

  .slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .slider-nav-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 2px solid {{ section.settings.accent_color }};
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: {{ section.settings.accent_color }};
    font-weight: bold;
    font-size: 24px;
    z-index: 10;
  }

  .slider-nav-btn:hover {
    background: {{ section.settings.accent_color }};
    color: #000;
    transform: scale(1.1);
  }

  .slider-nav-btn.prev {
    order: 1;
  }

  .slider-nav-btn.next {
    order: 3;
  }

  .videos-slider {
    flex: 1;
    order: 2;
    position: relative;
    display: flex;
    gap: 20px;
        overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
  }

  .videos-slider::-webkit-scrollbar {
    height: 8px;
  }

  .videos-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .videos-slider::-webkit-scrollbar-thumb {
    background: {{ section.settings.accent_color }};
    border-radius: 10px;
  }

  .video-card {
    flex: 0 0 calc(33.333% - 13.33px);
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    scroll-snap-align: start;
  }

  .video-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }

  .video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
    overflow: hidden;
  }

  .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }

  .youtube-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .youtube-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
  }

  .video-info {
    padding: 16px;
  }

  .video-title {
    font-size: 16px;
    font-weight: 600;
    color: {{ section.settings.title_color }};
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .video-desc {
    font-size: 13px;
    color: {{ section.settings.desc_color }};
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .videos-slider {
      gap: 16px;
    }

    .video-card {
      flex: 0 0 calc(50% - 8px);
      min-width: 280px;
    }

    .slider-header h2 {
      font-size: 28px;
    }

    .slider-nav-btn {
      width: 44px;
      height: 44px;
      font-size: 20px;
    }

    .slider-wrapper {
      gap: 16px;
    }
  }

  @media (max-width: 480px) {
    .videos-slider {
      gap: 12px;
    }

    .video-card {
      flex: 0 0 100%;
      min-width: 100%;
    }

    .slider-header h2 {
      font-size: 24px;
    }

    .slider-wrapper {
      gap: 10px;
    }

    .slider-nav-btn {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .play-button {
      width: 60px;
      height: 60px;
    }
  }