/** Shopify CDN: Minification failed

Line 25:15 Expected identifier but found whitespace
Line 25:17 Unexpected "{"
Line 25:26 Expected ":"
Line 80:16 Expected identifier but found whitespace
Line 80:18 Unexpected "{"
Line 80:27 Expected ":"
Line 81:14 Expected identifier but found whitespace
Line 81:16 Unexpected "{"
Line 81:25 Expected ":"
Line 82:16 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:shop-collection-grid (INDEX:73) */
.collection-categories {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    background: {{ section.settings.background_color | default: '#ffffff' }};
  }

  .collection-categories__inner {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .collection-categories__inner::-webkit-scrollbar {
    display: none;
  }

  .collection-categories__item {
    flex: 0 0 auto;
    width: 120px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    scroll-snap-align: start;
    transition: opacity 0.2s ease;
  }

  .collection-categories__item:hover {
    opacity: 0.85;
  }

  .collection-categories__image-wrap {
    width: 100%;
    aspect-ratio: 4 / 6;
    overflow: hidden;
    background: #f0f0f0;
  }

  .collection-categories__image-wrap img,
  .collection-categories__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .collection-categories__item:hover .collection-categories__image-wrap img {
    transform: scale(1.04);
  }

  .collection-categories__label {
    font-family: {{ section.settings.font_family | default: 'Helvetica Neue, Helvetica, Arial, sans-serif' }};
    font-size: {{ section.settings.label_font_size | default: '11px' }};
    font-weight: {{ section.settings.label_font_weight | default: '600' }};
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: {{ section.settings.label_color | default: '#111111' }};
    text-align: center;
  }

  @media (max-width: 767px) {
    .collection-categories {
    padding: 5px 15px;
    }
    .collection-categories__item {
      width: 100px;
    }
  }

  /* Progress bar */
  .collection-categories__progress-bar {
    display: none;
    padding: 0 0px 12px;
    box-sizing: border-box;
  }

  @media (max-width: 767px) {
    .collection-categories__progress-bar {
      display: block;
    }
  }

  .collection-categories__progress-track {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    position: relative;
    border-radius: 2px;
  }

  .collection-categories__progress-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #111111;
    border-radius: 2px;
    transition: width 0.1s ease, left 0.1s ease;
  }
/* END_SECTION:shop-collection-grid */