/** Shopify CDN: Minification failed

Line 84:16 Unexpected "{"
Line 84:25 Expected ":"
Line 84:32 Unexpected "{"
Line 88:16 Unexpected "{"
Line 88:25 Expected ":"
Line 164:16 Unexpected "{"
Line 164:25 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:brands-widget (INDEX:2) */
/* WRAPPER */
.brands-widget {
  width: 100%;
}

.brands-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--pt) var(--ph) var(--pb);
  position: relative;
  overflow: visible;
}

/* HEADER */
.brands-header {
  text-align: var(--align);
  margin-bottom: 20px;
}

/* GRID */
.brands-grid {
  display: grid;
  gap: var(--gap);
}

/* CARD */
.brands-card {
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: var(--radius);
  padding: 15px;
  place-self: center;
  height: 100%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.brands-card:hover {
  background: var(--card-hover-bg);
}

/* IMAGE */
.brands-card img {
  width: 145px;
  border-radius: var(--radius);
  margin-bottom: -10px;
}

/* TEXT */
.brands-title {
  font-size: var(--heading-size);
  font-weight: 600;
  margin-bottom: 8px;
}

.brands-links a {
  display: block;
  font-size: var(--sub-size);
  color: inherit;
  text-decoration: none;
  margin-bottom: 4px;
}

.brands-links a:hover {
  text-decoration: underline;
}

/* SWIPER */
.brands-swiper-{{ section.id }} {
  position: relative;
}

.brands-swiper-{{ section.id }} .swiper-slide {
  height: auto;
}

/* ARROW BASE */
.brands-widget .swiper-button-prev,
.brands-widget .swiper-button-next {
  position: absolute;
  top: 81%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #F58220;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* POSITION */
.brands-widget .swiper-button-prev {
  left: 5px;
}

.brands-widget .swiper-button-next {
  right: 5px;
}

/* ICON */
.brands-widget .swiper-button-prev::after,
.brands-widget .swiper-button-next::after {
  font-size: 12px !important;
  font-weight: bold;
  color: #ffffff;
}

/* HOVER */
.brands-widget .swiper-button-prev:hover,
.brands-widget .swiper-button-next:hover {
  background: #000000;
  transform: translateY(-50%) scale(1.05);
}

/* CLICK */
.brands-widget .swiper-button-prev:active,
.brands-widget .swiper-button-next:active {
  transform: translateY(-50%) scale(0.95);
}

/* RESPONSIVE GRID */
@media (min-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(var(--desktop), 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .brands-grid {
    grid-template-columns: repeat(var(--tablet), 1fr);
  }
}

@media (max-width: 767px) {
  .brands-grid {
    grid-template-columns: repeat(var(--mobile), 1fr);
  }

  .brands-container {
    margin-top: -42px !important;
    padding-top: 0px !important;
    padding-bottom: 50px !important;
  }
}
.brands-swiper-{{ section.id }} .swiper-wrapper {
  transition-timing-function: linear;
}
/* END_SECTION:brands-widget */

/* START_SECTION:marquee (INDEX:41) */
/* OUTER */
.brands-marquee-outer {
  width: 100%;
}

.page-width {
  padding-left: 20px;
  padding-right: 20px;
}

/* WRAPPER */
.brands-marquee-wrapper {
  position: relative;
  padding-top: var(--pt);
  padding-bottom: var(--pb);
}

/* HEADER */
.brands-header {
  text-align: center;
  margin-bottom: 20px;
}

/* MARQUEE */
.brands-marquee {
  overflow: hidden;
  position: relative;
}

/* FADE EDGES */
.brands-marquee::before,
.brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, #F4F4F4, transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, #F4F4F4, transparent);
}
/* TRACK */
.brands-track {
  display: flex;
  gap: var(--gap);
  width: max-content;

  animation: marqueeScroll linear infinite;
  animation-duration: var(--speed);
}

/* ITEM */
.brands-item {
  flex: 0 0 auto;
}

.brands-item img {
  width: var(--img-size);
  max-width: 100%;
}

/* ANIMATION */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ARROWS */
.marquee-btn {
  display: none !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3; /* ✅ ABOVE EVERYTHING */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F58220;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-btn.prev { left: 10px; }
.marquee-btn.next { right: 10px; }

.marquee-btn:hover {
  background: #000;
}

/* HOVER PAUSE */
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}
/* END_SECTION:marquee */