/** Shopify CDN: Minification failed

Line 20:2 Unexpected "{"
Line 20:3 Expected identifier but found "%"
Line 20:37 Unexpected "{"
Line 20:38 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from snippet stylesheet tags */
/* START_SNIPPET:collection-subcategory-tiles (INDEX:62) */
.pya-subcat-tiles {
  padding: 1.5rem 0;
}

.pya-subcat-tiles__card {
  background: rgb(var(--color-background));
  {%- comment -%}background: #FFFFFF;{%- endcomment -%}
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: var(--popup-corner-radius, 12px);
  padding: 1.75rem 1.5rem 1.5rem;
}

.pya-subcat-tiles__scroll {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 1.25rem;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}

.pya-subcat-tiles__scroll::-webkit-scrollbar {
  height: 4px;
}

.pya-subcat-tiles__scroll::-webkit-scrollbar-thumb {
  background: rgba(var(--color-foreground), 0.15);
  border-radius: 10px;
}

.pya-subcat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  min-width: 92px;
  text-decoration: none;
  color: rgb(var(--color-foreground));
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.pya-subcat-tile:hover {
  transform: translateY(-3px);
}

.pya-subcat-tile:hover .pya-subcat-tile__icon {
  background: rgb(var(--color-button));
  border-color: rgb(var(--color-button));
}

.pya-subcat-tile:hover .pya-subcat-tile__icon svg {
  stroke: rgb(var(--color-button-text));
}

.pya-subcat-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--color-foreground), 0.04);
  border: 1.5px solid rgba(var(--color-foreground), 0.14);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.pya-subcat-tile__icon svg {
  width: 28px;
  height: 28px;
  stroke: rgb(var(--color-foreground));
  fill: none;
  stroke-width: 1.6;
  transition: stroke 0.18s ease;
}

.pya-subcat-tile__label {
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 500;
  max-width: 100px;
}

@media screen and (max-width: 749px) {
  .pya-subcat-tiles__wrapper-desktop {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .pya-subcat-tiles__card {
    padding: 1.25rem 0 1.1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .pya-subcat-tiles__scroll {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .pya-subcat-tile {
    min-width: 74px;
  }
  .pya-subcat-tile__icon {
    width: 54px;
    height: 54px;
  }
  .pya-subcat-tile__icon svg {
    width: 22px;
    height: 22px;
  }
  .pya-subcat-tile__label {
    font-size: 1.1rem;
    max-width: 84px;
  }
}
/* END_SNIPPET:collection-subcategory-tiles */