/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 110:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.collection-carousel-wrapper {
  background: var(--color-background); /* Uses theme background */
  color: var(--color-foreground);      /* Optional: Uses theme text color */
  position: relative;
  padding: 2rem 0;
  overflow: visible;
}

.collection-carousel-inner {
  position: relative;
  overflow: visible;
}

.collection-carousel-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
  scroll-padding: 0 1.5rem;
}

.collection-carousel-container::-webkit-scrollbar {
  display: none;
}

.collection-carousel-item {
  flex: 0 0 calc(33.3333% - 1rem);
  scroll-snap-align: start;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

.collection-carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.collection-carousel-item h3 {
  margin: 0.5rem 0 0;
  /* font-size: 1.1rem; */
  font-weight: 600;
}

.collection-carousel-item p {
  margin: 0 0 1rem;
  color: #6b46c1;
  font-weight: 500;
  font-size: 1.5rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
  background: #f2f2f2;
}

.carousel-arrow.left {
  left: 2rem;
}

.carousel-arrow.right {
  right: 2rem;
}

@media screen and (max-width: 768px) {
  .collection-carousel-item {
    flex: 0 0 80%;
  }

  .carousel-arrow {
    display: none;
  }
}
</style>