/** Shopify CDN: Minification failed

Line 40:15 Expected identifier but found whitespace
Line 40:17 Unexpected "{"
Line 40:26 Expected ":"
Line 40:50 Expected ":"

**/
.custom-logo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  background: transparent;
}

.logo-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.logo-slider {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  align-items: center;
}

.logo-slider::-webkit-scrollbar { display: none; }

.logo-item {
  flex: 0 0 auto;
  margin-right: {{ section.settings.image_gap }}px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item:last-child { margin-right: 0; }

.logo-image-wrapper {
  width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-arrow:hover {
  background: linear-gradient(135deg, #16fc03, #00ffd5);
  transform: translateY(-50%) scale(1.15);
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

@media (max-width: 768px) {
  .logo-wrapper { padding: 0 12px; }
  .gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
  .logo-image-wrapper { width: 120px; height: 120px; }
  .logo-item { margin-right: calc({{ section.settings.image_gap }}px / 1.2); }
}

.gallery-arrow:focus { outline: 3px solid rgba(0,0,0,0.12); outline-offset: 2px; }