/** Shopify CDN: Minification failed

Line 83:10 Expected identifier but found whitespace
Line 83:12 Unexpected "{"
Line 83:21 Expected ":"
Line 83:46 Expected ":"

**/


/* CSS from section stylesheet tags */
.brand-logo-section {
    padding: 50px 0;
    overflow: hidden;
  }
  
  .section-heading {
    margin-bottom: 40px;
    text-align: center;
  }
  
  /* Carousel wrapper */
  .carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Pre-initialization styling - horizontal layout */
  .brand-logo-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 30px;
    padding: 20px 0;
  }
  
  .brand-logo-carousel::-webkit-scrollbar {
    display: none;
  }
  
  /* Individual logo items */
  .logo-slide {
    flex: 0 0 auto;
    width: calc(100% / {{ section.settings.logos_per_row }});
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
    text-align: center;
  }
  
  .logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    display: block;
  }
  
  .logo-item:hover img {
    filter: grayscale(0%);
  }
  
  .logo-placeholder {
    width: {{ section.settings.logo_width }}px;
    height: 80px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    border: 1px dashed #ddd;
  }
  
  /* Slick overrides */
  .brand-logo-carousel.slick-initialized {
    display: block;
    overflow: visible;
  }
  
  .brand-logo-carousel .slick-list {
    margin: 0 -15px;
    overflow: hidden;
  }
  
  .brand-logo-carousel .slick-track {
    display: flex !important;
    align-items: center;
  }
  
  .brand-logo-carousel .slick-slide {
    height: auto;
    padding: 0 15px;
    box-sizing: border-box;
    outline: none;
  }
  
  .brand-logo-carousel .slick-slide > div {
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  /* Navigation arrows */
  .brand-logo-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .brand-logo-carousel .slick-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  
  .brand-logo-carousel .slick-arrow:before {
    content: '';
    display: none;
  }
  
  .brand-logo-carousel .slick-prev {
    left: -20px;
  }
  
  .brand-logo-carousel .slick-next {
    right: -20px;
  }
  
  .brand-logo-carousel .slick-prev span:before {
    content: '‹';
    font-size: 24px;
    line-height: 1;
  }
  
  .brand-logo-carousel .slick-next span:before {
    content: '›';
    font-size: 24px;
    line-height: 1;
  }
  
  /* Loading state */
  .carousel-loading {
    text-align: center;
    padding: 40px 0;
    color: #999;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 750px) {
    .logo-slide {
      width: calc(100% / {{ section.settings.mobile_logos_per_row }});
      min-width: 100px;
    }
    
    .brand-logo-carousel .slick-arrow {
      display: none !important;
    }
    
    .brand-logo-carousel .slick-slide {
      padding: 0 10px;
    }
    
    .brand-logo-carousel .slick-list {
      margin: 0 -10px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .logo-slide {
      width: 50%;
      min-width: 80px;
    }
    
    .brand-logo-carousel .slick-slide {
      padding: 0 8px;
    }
    
    .brand-logo-carousel .slick-list {
      margin: 0 -8px;
    }
  }