/** Shopify CDN: Minification failed

Line 20:10 Expected identifier but found whitespace
Line 20:12 Unexpected "{"
Line 20:21 Expected ":"
Line 20:48 Unexpected "20px"
Line 20:54 Unexpected "{"
Line 20:63 Expected ":"
Line 20:92 Expected ":"
Line 93:19 Expected identifier but found whitespace
Line 93:21 Unexpected "{"
Line 93:30 Expected ":"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.brand-logo-slider {
  padding: {{ section.settings.padding_top }}px 20px {{ section.settings.padding_bottom }}px;
  background: #fff;
  text-align: center;
}
.brand-logo-slider h2 {
  font-size: 28px;
  margin-bottom: 5px;
}
.brand-logo-slider p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}
.brand-logo-track {
  position: relative;
}
.brand-logo-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 30px;
  padding: 0 40px;
  scroll-behavior: smooth;
  touch-action: pan-x;
}
.brand-logo-container::-webkit-scrollbar {
  display: none;
}
.brand-logo-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 100px;
  height: 100px;
  background: #f9f9f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.brand-logo-item img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}
.brand-logo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.brand-logo-arrow.left {
  left: 10px;
  display: none;
}
.brand-logo-arrow.right {
  right: 10px;
}

.shop-all-button {
  margin-top: 30px;
  padding: 10px 30px;
  background-color: {{ section.settings.button_color }};
  color: {{ section.settings.button_text_color }};
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.shop-all-button:hover {
  background-color: {{ section.settings.button_color | color_darken: 10 }};
}
@media (max-width: 768px) {
  .brand-logo-item {
    width: 80px;
    height: 80px;
  }
  .brand-logo-container {
    gap: 20px;
    padding: 0 20px;
  }
}
/* ---------- WRAPPER ---------- */
.scrollable-categories-wrapper{position:relative;padding:30px 0;background:#fff;}
.scrollable-categories-header{text-align:center;font-size:28px;font-weight:700;margin-bottom:18px;}

/* ---------- CATEGORY-TABS ---------- */
.category-tabs-wrapper{position:relative;display:flex;align-items:center;overflow:hidden;margin-bottom:24px;}
.category-tabs{display:flex;gap:48px;margin:0;padding:0 48px;list-style:none;overflow-x:auto;scroll-behavior:smooth;-ms-overflow-style:none;scrollbar-width:none;}
.category-tabs::-webkit-scrollbar{display:none;}
.category-tab{white-space:nowrap;font-size:20px;font-weight:700;cursor:pointer;padding:6px 18px;border-radius:9999px;transition:background .25s;}
.category-tab.active{background:#f2f2f2;}

/* ---------- TAB-ARROWS ---------- */
.tab-arrow{position:absolute;top:50%;transform:translateY(-50%);width:32px;height:32px;border-radius:50%;background:#000;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;user-select:none;}
.tab-arrow.left{left:5px;display:none;}
.tab-arrow.right{right:5px;}

/* ---------- IMAGE-SLIDER ---------- */
.scrollable-categories-container{
  display:flex;gap:20px;padding:0 20px;
  overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;touch-action:pan-x;
  scroll-padding-left:50%;scroll-padding-right:50%; /* centre stop */
}
.scrollable-categories-container::-webkit-scrollbar{display:none;}

.category-card{
  flex:0 0 250px;scroll-snap-align:center;
  border-radius:12px;box-shadow:0 0 10px rgba(0,0,0,.05);
  transition:transform .3s ease;
}
.category-card.active{transform:scale(1.05);}
.category-card img{width:100%;border-radius:12px;display:block;}
.category-card h3{display:none;}