/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 94:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.brand-slider {
  position: relative;
  width: 100%;
  height: 49vh;
  overflow: hidden;
}

.brand-slider-wrapper {
  display: flex;
  height: 100%;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: hidden;
}

.brand-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  height: 100%;
  min-width: 100%;
}

.brand-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text-wrapper {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  text-align: center;
  z-index: 2;
}

.brand-text-wrapper div {
  margin: 5px 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.brand-text-wrapper .brand-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 30px;
  background: white;
  color: black;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  gap: 8px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: white;
}
</style>