/** Shopify CDN: Minification failed

Line 142:0 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:category-tiles (INDEX:8) */
.category-tiles-section {
  width: 100%;
}

.category-tiles-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.category-tiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.category-tile {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-tile__image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  padding: 1.5rem 1.5rem 1.4rem;
  box-sizing: border-box;
  position: relative;
}

.category-tile__image {
  width: 100%;
  flex: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
  min-height: 0;
}

.category-tile__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  border-radius: 6px;
}

.category-tile__arrow {
  width: 48px;
  height: 48px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-tile:hover .category-tile__image {
  transform: scale(1.04);
}

.category-tile:hover .category-tile__overlay {
  background: rgba(0, 0, 0, 0.18);
}

.category-tile:hover .category-tile__arrow {
  opacity: 1;
}

.category-tile__placeholder {
  width: 100%;
  flex: 1;
}

.category-tile__placeholder-svg {
  width: 100%;
  height: 100%;
}

.category-tile__label {
  margin-top: 1.2rem;
  margin-bottom: 0;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 749px) {
  .category-tiles-inner {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  .category-tiles__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
  }

  .category-tile__label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
  }
}

  .category-tiles-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* END_SECTION:category-tiles */