/** Shopify CDN: Minification failed

Line 12:18 Unexpected "{"
Line 12:27 Expected ":"
Line 12:34 Unexpected "{"

**/


/* CSS from section stylesheet tags */
/* Stop wrapper from clipping tile shadows */
#shopify-section-{{ section.id }} {
  overflow: visible !important;
}

section.collection-nav-tiles {
  padding: 1.5rem 0 1.75rem; /* tighter spacing above & below */
  overflow: visible;
}

.collection-nav-tiles__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.collection-nav-tiles__heading {
  text-align: left;
  margin-bottom: 0.7rem; /* slightly less gap above tiles */
}

.collection-nav-tiles__heading-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Horizontal scroller */
.collection-nav-tiles__scroller {
  margin: 0 -1.5rem;
  padding: 0.7rem 1.5rem 0.9rem; /* reduced vertical padding */
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE / Edge */
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1.5rem;
  scroll-padding-right: 1.5rem;
}

/* Hide scrollbar – WebKit */
.collection-nav-tiles__scroller::-webkit-scrollbar {
  display: none;
}

.collection-nav-tiles__track {
  display: flex;
  gap: 0.9rem;
  padding-bottom: 0.25rem;
  overflow: visible;
  justify-content: flex-start; /* default */
}

/* When there aren't enough cards to overflow, centre the row */
.collection-nav-tiles__track--centered {
  justify-content: center;
}

.collection-nav-tiles__card {
  scroll-snap-align: start;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 130px;
  max-width: 35vw;
}

/* Square thumb with rounded corners + deeper but tighter shadow */
.collection-nav-tiles__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  position: relative;
  transition: transform 140ms ease-out, box-shadow 140ms ease-out;
}

.collection-nav-tiles__card:hover .collection-nav-tiles__thumb {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
}

.collection-nav-tiles__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-nav-tiles__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #777777;
}

/* Label under tile – underline accent */
.collection-nav-tiles__label {
  margin-top: 0.55rem;
  font-size: var(--tile-label-size, 0.8rem);
  font-weight: var(--tile-label-weight, 500);
  text-align: center;
  color: #111111;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}

.collection-nav-tiles__label::after {
  content: "";
  display: block;
  margin: 0.2rem auto 0;
  width: 52%;
  max-width: 40px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  transition: background 140ms ease-out, width 140ms ease-out;
}

.collection-nav-tiles__card:hover .collection-nav-tiles__label::after {
  background: rgba(0, 0, 0, 0.4);
  width: 68%;
}

/* Mobile – more edge-to-edge feel */
@media screen and (max-width: 640px) {
  .collection-nav-tiles__inner {
    padding: 0 1rem;
  }

  .collection-nav-tiles__scroller {
    margin: 0 -1rem;
    padding: 0.7rem 1rem 0.9rem;
    scroll-padding-left: 1rem;
    scroll-padding-right: 1rem;
  }
}

/* Slightly larger on bigger screens */
@media screen and (min-width: 900px) {
  .collection-nav-tiles__card {
    width: 150px;
    max-width: none;
  }

  .collection-nav-tiles__heading {
    margin-bottom: 0.9rem;
  }
}