/** Shopify CDN: Minification failed

Line 16:12 Expected identifier but found whitespace
Line 16:14 Unexpected "{"
Line 16:23 Expected ":"
Line 16:50 Unexpected "0"
Line 16:53 Unexpected "{"
Line 16:62 Expected ":"
Line 16:91 Expected ":"

**/


/* CSS from section stylesheet tags */
.collection-circle-carousel {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
    width: 100%;
    overflow: hidden;
  }

  .carousel-container {
    width: 100%;
    padding: 0 15px;
  }

  .collection-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }

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

  .carousel-track {
    display: flex;
    gap: 16px;
    width: fit-content;
    padding: 10px 0;
    cursor: grab;
    user-select: none;
  }

  .carousel-track:active {
    cursor: grabbing;
  }

  .collection-circle-item {
    flex: 0 0 auto;
    text-align: center;
  }

  .circle-link {
    display: block;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
  }

  .circle-image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    background-color: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .circle-link:hover .circle-image-wrapper {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .circle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .circle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
  }

  .circle-title {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    display: block;
    text-align: center;
  }

  /* Mobile - Small (4 visible) */
  @media screen and (max-width: 479px) {
    .carousel-container {
      padding: 0 10px;
    }
    
    .carousel-track {
      gap: 10px;
    }
    
    .collection-circle-item {
      width: 75px;
    }
    
    .circle-image-wrapper {
      width: 75px;
      height: 75px;
      margin-bottom: 6px;
    }
    
    .circle-title {
      font-size: 10px;
      width: 75px;
    }
  }

  /* Mobile - Medium (4 visible) */
  @media screen and (min-width: 480px) and (max-width: 767px) {
    .carousel-container {
      padding: 0 12px;
    }
    
    .carousel-track {
      gap: 12px;
    }
    
    .collection-circle-item {
      width: 85px;
    }
    
    .circle-image-wrapper {
      width: 85px;
      height: 85px;
      margin-bottom: 8px;
    }
    
    .circle-title {
      font-size: 11px;
      width: 85px;
    }
  }

  /* Tablet (7 visible) */
  @media screen and (min-width: 768px) and (max-width: 989px) {
    .carousel-container {
      padding: 0 15px;
    }
    
    .carousel-track {
      gap: 14px;
    }
    
    .collection-circle-item {
      width: 95px;
    }
    
    .circle-image-wrapper {
      width: 95px;
      height: 95px;
      margin-bottom: 8px;
    }
    
    .circle-title {
      font-size: 12px;
      width: 95px;
    }
  }

  /* Desktop - Small (8 visible) */
  @media screen and (min-width: 990px) and (max-width: 1199px) {
    .carousel-container {
      padding: 0 20px;
    }
    
    .carousel-track {
      gap: 15px;
    }
    
    .collection-circle-item {
      width: 100px;
    }
    
    .circle-image-wrapper {
      width: 100px;
      height: 100px;
      margin-bottom: 10px;
    }
    
    .circle-title {
      font-size: 12px;
      width: 100px;
    }
  }

  /* Desktop - Large (8 visible) */
  @media screen and (min-width: 1200px) {
    .carousel-container {
      padding: 0 25px;
    }
    
    .carousel-track {
      gap: 16px;
    }
    
    .collection-circle-item {
      width: 110px;
    }
    
    .circle-image-wrapper {
      width: 110px;
      height: 110px;
      margin-bottom: 10px;
    }
    
    .circle-title {
      font-size: 13px;
      width: 110px;
    }
  }