/** Shopify CDN: Minification failed

Line 18:10 Expected identifier but found whitespace
Line 18:12 Unexpected "{"
Line 18:21 Expected ":"
Line 18:48 Unexpected "0"
Line 18:51 Unexpected "{"
Line 18:60 Expected ":"
Line 18:89 Expected ":"
Line 42:8 Expected identifier but found whitespace
Line 42:10 Unexpected "{"
Line 42:19 Expected ":"
... and 37 more hidden warnings

**/
/* Featured On Section - Dynamic Centered Design */
.featured-on-section {
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px 0;
  
  background: #F9F9F4;
  width: 100%;
  overflow: hidden;
}

.featured-on-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.featured-on-title {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 20px 0;
  color: {{ section.settings.title_color | default: '#1a1a1a' }};
  word-wrap: break-word;
}

.featured-on-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 70px 0;
  color: {{ section.settings.subtitle_color | default: '#666666' }};
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}

/* Dynamic Grid Layout Based on Number of Logos */
.featured-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Single logo - perfectly centered */
.featured-logos-grid:has(.logo-item:nth-child(1):last-child) {
  justify-content: center;
}

/* Two logos - side by side centered */
.featured-logos-grid:has(.logo-item:nth-child(2):last-child) {
  justify-content: center;
}

/* Three logos - spread across center */
.featured-logos-grid:has(.logo-item:nth-child(3):last-child) {
  justify-content: center;
}

/* Four logos - 2x2 grid centered */
.featured-logos-grid:has(.logo-item:nth-child(4):last-child) {
  justify-content: center;
  max-width: 600px;
}

.featured-logos-grid:has(.logo-item:nth-child(4):last-child) .logo-item:nth-child(3) {
  order: 3;
}

.featured-logos-grid:has(.logo-item:nth-child(4):last-child) .logo-item:nth-child(4) {
  order: 4;
}

/* Five logos - first row 3, second row 2 centered */
.featured-logos-grid:has(.logo-item:nth-child(5):last-child) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  max-width: 800px;
}

.featured-logos-grid:has(.logo-item:nth-child(5):last-child) .logo-item:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2;
}

.featured-logos-grid:has(.logo-item:nth-child(5):last-child) .logo-item:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 2;
}

/* Six logos - 2 rows of 3 each */
.featured-logos-grid:has(.logo-item:nth-child(6):last-child) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  max-width: 900px;
}

/* Seven logos - first row 4, second row 3 centered */
.featured-logos-grid:has(.logo-item:nth-child(7):last-child) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  max-width: 1000px;
}

.featured-logos-grid:has(.logo-item:nth-child(7):last-child) .logo-item:nth-child(5) {
  grid-column: 1 / 2;
  grid-row: 2;
}

.featured-logos-grid:has(.logo-item:nth-child(7):last-child) .logo-item:nth-child(6) {
  grid-column: 2 / 3;
  grid-row: 2;
}

.featured-logos-grid:has(.logo-item:nth-child(7):last-child) .logo-item:nth-child(7) {
  grid-column: 3 / 4;
  grid-row: 2;
}

/* Eight logos - first row 5, second row 3 centered */
.featured-logos-grid:has(.logo-item:nth-child(8):last-child) {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  max-width: 1200px;
}

.featured-logos-grid:has(.logo-item:nth-child(8):last-child) .logo-item:nth-child(6) {
  grid-column: 2 / 3;
  grid-row: 2;
}

.featured-logos-grid:has(.logo-item:nth-child(8):last-child) .logo-item:nth-child(7) {
  grid-column: 3 / 4;
  grid-row: 2;
}

.featured-logos-grid:has(.logo-item:nth-child(8):last-child) .logo-item:nth-child(8) {
  grid-column: 4 / 5;
  grid-row: 2;
}

/* More than 8 logos - standard grid */
.featured-logos-grid:has(.logo-item:nth-child(9)) {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  max-width: 1400px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 100%;
  min-width: 140px;
  max-width: 200px;
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-2px);
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.logo-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: {{ section.settings.logo_filter | default: 'grayscale(100%)' }};
  opacity: {{ section.settings.logo_opacity | default: 0.7 }};
  transition: all 0.3s ease;
  display: block;
}

.logo-item:hover .logo-image {
  opacity: 1;
  transform: scale(1.05);
}

.logo-placeholder {
  width: 120px;
  height: 40px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
  border-radius: 4px;
}

/* Fallback for browsers that don't support :has() */
@supports not selector(:has(*)) {
  .featured-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 200px));
    justify-content: center;
    gap: 50px 40px;
  }
}

/* Large Desktop Screens (1600px+) */
@media screen and (min-width: 1600px) {
  .featured-on-container {
    max-width: 1550px;
    padding: 0 80px;
  }
  
  .featured-on-title {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 700;
  }
  
  .featured-on-subtitle {
    font-size: 22px;
    margin-bottom: 80px;
    max-width: 750px;
  }
  
  .featured-logos-grid {
    gap: 30px 60px;
  }
  
  .logo-item {
    height: 85px;
    max-width: 220px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(4)) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    max-width: 900px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(5):last-child) {
    max-width: 900px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(6):last-child) {
    max-width: 1000px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(7):last-child) {
    max-width: 1100px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(8):last-child) {
    max-width: 1300px;
  }
}

/* Desktop Screens (1200px - 1599px) */
@media screen and (min-width: 1200px) and (max-width: 1599px) {
  .featured-on-container {
    padding: 0 60px;
  }
  
  .featured-on-title {
    font-size: 46px;
    margin-bottom: 22px;
  }
  
  .featured-on-subtitle {
    font-size: 20px;
    margin-bottom: 75px;
  }
  
  .featured-logos-grid {
    gap: 55px 50px;
  }
  
  .logo-item {
    height: 75px;
    max-width: 190px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(4)) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    max-width: 850px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(5):last-child) {
    max-width: 850px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(6):last-child) {
    max-width: 950px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(7):last-child) {
    max-width: 1050px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(8):last-child) {
    max-width: 1250px;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-on-container {
    max-width: 960px;
    padding: 0 50px;
  }
  
  .featured-on-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .featured-on-subtitle {
    font-size: 18px;
    margin-bottom: 65px;
  }
  
  .featured-logos-grid {
    gap: 10px 20px;
  }
  
  .logo-item {
    height: 65px;
    max-width: 160px;
    min-width: 120px;
  }
  
  /* Adjust layouts for tablet */
  .featured-logos-grid:has(.logo-item:nth-child(5):last-child),
  .featured-logos-grid:has(.logo-item:nth-child(6):last-child),
  .featured-logos-grid:has(.logo-item:nth-child(7):last-child),
  .featured-logos-grid:has(.logo-item:nth-child(8):last-child) {
    grid-template-columns: repeat(4, 1fr);
    max-width: 700px;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(5):last-child) .logo-item:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 2;
  }
  
  .featured-logos-grid:has(.logo-item:nth-child(7):last-child) .logo-item:nth-child(5),
  .featured-logos-grid:has(.logo-item:nth-child(7):last-child) .logo-item:nth-child(6),
  .featured-logos-grid:has(.logo-item:nth-child(7):last-child) .logo-item:nth-child(7) {
    grid-row: 2;
    grid-column: auto;
  }
  .featured-logos-grid:has(.logo-item:nth-child(4)) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    max-width: 700px;
  }
  .featured-logos-grid:has(.logo-item:nth-child(8):last-child) .logo-item:nth-child(5),
  .featured-logos-grid:has(.logo-item:nth-child(8):last-child) .logo-item:nth-child(6),
  .featured-logos-grid:has(.logo-item:nth-child(8):last-child) .logo-item:nth-child(7),
  .featured-logos-grid:has(.logo-item:nth-child(8):last-child) .logo-item:nth-child(8) {
    grid-row: 2;
    grid-column: auto;
  }
}

/* Tablet Portrait (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .featured-on-section {
    padding: {{ section.settings.mobile_padding_top }}px 0 {{ section.settings.mobile_padding_bottom }}px 0;
  }
  
  .featured-on-container {
    padding: 0 30px;
  }
  
  .featured-on-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .featured-on-subtitle {
    font-size: 10px;
    margin-bottom: 40px;
  }
  
  .featured-logos-grid {
    gap: 10px 10px;
  }
  
  .logo-item {
    height: 55px;
    max-width: 120px;
    min-width: 100px;
  }
  
  /* Force all to use flex layout on tablet */
  .featured-logos-grid:has(.logo-item:nth-child(1):last-child),
  .featured-logos-grid:has(.logo-item:nth-child(2):last-child),
  .featured-logos-grid:has(.logo-item:nth-child(3):last-child) {
    display: flex;
    justify-content: center;
    max-width: 500px;
  }
  
  /* 4+ logos use grid with 3 columns */
  .featured-logos-grid:has(.logo-item:nth-child(4)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    max-width: 450px;
  }
}

/* Mobile Large (576px - 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .featured-on-section {
    padding: {{ section.settings.mobile_padding_top }}px 0 {{ section.settings.mobile_padding_bottom }}px 0;
  }
  
  .featured-on-container {
    padding: 0 25px;
  }
  
  .featured-on-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .featured-on-subtitle {
    font-size: 10px;
    margin-bottom: 35px;
  }
  
  .featured-logos-grid {
    gap: 0px 0px;
  }
  
  .logo-item {
    height: 50px;
    min-width: 100px;
    max-width: 130px;
  }
  
  /* 1-2 logos centered */
  .featured-logos-grid:has(.logo-item:nth-child(1):last-child),
  .featured-logos-grid:has(.logo-item:nth-child(2):last-child) {
    display: flex;
    justify-content: center;
    max-width: 400px;
  }
  
  /* 3+ logos use grid with 3 columns */
  .featured-logos-grid:has(.logo-item:nth-child(3)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    max-width: 400px;
  }
}

/* Mobile Medium (480px - 575px) */
@media screen and (min-width: 480px) and (max-width: 575px) {
  .featured-on-section {
    padding: {{ section.settings.mobile_padding_top }}px 0 {{ section.settings.mobile_padding_bottom }}px 0;
  }
  
  .featured-on-container {
    padding: 0 20px;
  }
  
  .featured-on-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .featured-on-subtitle {
    font-size: 10px;
    margin-bottom: 32px;
  }
  
  .featured-logos-grid {
    gap: 25px 15px;
  }
  
  .logo-item {
    height: 48px;
    min-width: 80px;
    max-width: 110px;
  }
  
  /* 1-2 logos centered */
  .featured-logos-grid:has(.logo-item:nth-child(1):last-child),
  .featured-logos-grid:has(.logo-item:nth-child(2):last-child) {
    display: flex;
    justify-content: center;
    max-width: 350px;
  }
  
  /* 3+ logos use grid with 3 columns */
  .featured-logos-grid:has(.logo-item:nth-child(3)) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    max-width: 350px;
  }
}

/* Mobile Small (320px - 479px) */
@media screen and (max-width: 479px) {
  .featured-on-section {
    padding: {{ section.settings.mobile_padding_top }}px 0 {{ section.settings.mobile_padding_bottom }}px 0;
  }
  
  .featured-on-container {
    padding: 0 18px;
  }
  
  .featured-on-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .featured-on-subtitle {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  
  .featured-logos-grid {
    gap: 0px 0px;
  }
  
  .logo-item {
    height: 45px;
    min-width: 70px;
    max-width: 90px;
  }
  
  /* Single logo centered */
  .featured-logos-grid:has(.logo-item:nth-child(1):last-child) {
    display: flex;
    justify-content: center;
    max-width: 300px;
  }
  
  /* 2+ logos use grid with 2 columns */
  .featured-logos-grid:has(.logo-item:nth-child(2)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    max-width: 250px;
  }
}

/* Extra Small Mobile (max 319px) */
@media screen and (max-width: 319px) {
  .featured-on-container {
    padding: 0 12px;
  }
  
  .featured-on-title {
    font-size: 18px;
  }
  
  .featured-on-subtitle {
    font-size: 10px;
  }
  
  .featured-logos-grid {
    gap: 18px 8px;
  }
  
  .logo-item {
    height: 40px;
    min-width: 60px;
    max-width: 75px;
  }
  
  /* Single logo centered */
  .featured-logos-grid:has(.logo-item:nth-child(1):last-child) {
    display: flex;
    justify-content: center;
    max-width: 200px;
  }
  
  /* 2+ logos use grid with 2 columns */
  .featured-logos-grid:has(.logo-item:nth-child(2)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    max-width: 200px;
  }
}

/* High DPI/Retina Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility & Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .logo-item,
  .logo-image,
  .logo-item:hover {
    transition: none !important;
    transform: none !important;
  }
  
  .logo-item:hover .logo-image {
    transform: none !important;
  }
}

/* Print Styles */
@media print {
  .featured-on-section {
    padding: 20px 0;
    background: white !important;
  }
  
  .featured-on-title,
  .featured-on-subtitle {
    color: black !important;
  }
  
  .logo-image {
    filter: none !important;
    opacity: 1 !important;
  }
}

@media screen and (max-width: 750px) {
  .featured-logos-grid:has(.logo-item:nth-child(8):last-child) {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem;
  }
}