/** Shopify CDN: Minification failed

Line 145:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.collection-row-slider {
  margin: 50px 0;
}

.collection-slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

/* ✅ Arrows styling */
.collection-slider-wrapper .arrow {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #333;
  transition: 0.3s;
}
.collection-slider-wrapper .arrow:hover {
  color: #000;
}
.collection-slider-wrapper .arrow.prev {
  left: 0;
}
.collection-slider-wrapper .arrow.next {
  right: 0;
}

/* ✅ Slider core */
.collection-slider {
  display: flex;
  justify-content: center; /* ✅ Centers all circles horizontally */
  align-items: center; /* ✅ Centers vertically */
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 20px;
  padding: 10px 20px;
  scrollbar-width: none;
  flex: 1;
  margin: 0 auto;
  scroll-behavior: smooth;
}

.collection-slider::-webkit-scrollbar {
  display: none;
}

/* ✅ Add buffer to prevent cut-off at edges */
.collection-slider::before,
.collection-slider::after {
  content: "";
  flex: 0 0 10px;
}

.collection-item {
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.collection-item:hover {
  transform: translateY(-5px);
}

/* ✅ Smaller circles, centered */
.collection-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .collection-slider-wrapper .arrow {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .collection-slider-wrapper .arrow {
    display: block !important;
  }
.collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.collection-title {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ✅ Center alignment fix for large screens */
@media (min-width: 992px) {
  .collection-slider {
    overflow: hidden;
    justify-content: center; /* Centers all items horizontally */
  }
}

/* ✅ Mobile adjustments */
@media (max-width: 767px) {
  .collection-img {
    width: 80px;
    height: 80px;
  }
  .collection-slider {
    gap: 12px;
    padding: 10px 10px;
    justify-content: flex-start; /* ✅ Allow scroll on mobile */
  }
  .collection-title {
    font-size: 10px;
  }
  .collection-row-slider h2 {
    font-size: 16px !important;
    margin-bottom: 10px;
  }
}