/** Shopify CDN: Minification failed

Line 65:14 Expected identifier but found whitespace
Line 65:16 Unexpected "{"
Line 65:25 Expected ":"
Line 65:59 Expected ":"
Line 66:17 Expected identifier but found whitespace
Line 66:19 Unexpected "{"
Line 66:28 Expected ":"
Line 66:65 Expected ":"

**/
.brand-carousel-section {
  --bc-primary: #E04727;
  --bc-on-surface: #1a1c1c;
  --bc-surface-container-highest: #e2e2e2;
  --bc-outline: #926f66;
  --bc-radius: 2px;
  padding-left: var(--margin-mobile, 16px);
  padding-right: var(--margin-mobile, 16px);
}

@media (min-width: 990px) {
  .brand-carousel-section {
    /* padding-left: var(--margin-desktop, 32px);
    padding-right: var(--margin-desktop, 32px); */
    padding: 0 var(--gutter);
  }
}

.brand-carousel-container {
  max-width: 100%;
  margin: 0 auto;
}

.brand-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-carousel-eyebrow {
  font-family: var(--FONT-STACK-HEADING);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--bc-primary);
  margin: 0 0 8px;
}

.brand-carousel-heading {
  font-family: var(--FONT-STACK-HEADING);
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--bc-on-surface);
  margin: 0;
  position: relative;
  padding-top: {{ section.settings.heading_padding_top }}px;
  padding-bottom: {{ section.settings.heading_padding_bottom }}px;
}

@media (min-width: 990px) {
  .brand-carousel-heading {
    font-size: 32px;
    line-height: 40px;
  }
}

.brand-carousel-controls {
  display: flex;
  gap: 16px;
}

.brand-carousel-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bc-primary);
  background: transparent;
  color: var(--bc-primary);
  border-radius: var(--bc-radius);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 0;
}

.brand-carousel-btn:hover:not(:disabled) {
  background: var(--bc-primary);
  color: #ffffff;
}

.brand-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.brand-carousel-icon {
  width: 20px;
  height: 20px;
}

.brand-carousel-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 0 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.brand-carousel-track::before,
.brand-carousel-track::after {
  content: '';
  flex-shrink: 0;
  width: 4px;
}

.brand-carousel-track::-webkit-scrollbar {
  display: none;
}

.brand-carousel-card-wrap {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: calc(50% - 4px);
  min-width: 220px;
  position: relative;
}

@media (min-width: 750px) {
  .brand-carousel-card-wrap {
    width: calc(33.333% - 6px);
  }
}

@media (min-width: 990px) {
  .brand-carousel-card-wrap {
    width: calc(25% - 6px);
  }
}

.brand-carousel-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.brand-carousel-logo {
  /* aspect-ratio: 1 / 1; */
  width: 100%;
  height: 260px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brand-carousel-card:hover .brand-carousel-logo {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.brand-carousel-logo img {
  max-height: 100%;
  max-width: 70%;
  object-fit: contain;
}

.brand-carousel-progress {
  /* position: relative;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px; */
  display: none;
}

.brand-carousel-progress-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bc-surface-container-highest);
  z-index: 0;
}

.brand-carousel-progress-bar {
  position: relative;
  z-index: 1;
  height: 2px;
  width: 8%;
  min-width: 48px;
  background: var(--bc-primary);
  transition: width 0.2s ease;
}

.brand-carousel-placeholder-state {
  text-align: center;
  padding: 48px 16px;
  color: var(--bc-on-surface);
  opacity: 0.6;
}

.brand-carousel-placeholder-state svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}