/** Shopify CDN: Minification failed

Line 85:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.custom-category-row-section {
  padding: 24px 0px;
  max-width: 1400px;
  margin: 0 auto;
}

.custom-category-row__heading {
  text-align: center;
  font-size: 2.4rem;
  font-family: inherit;
  margin-bottom: 2rem;
  margin-top: 0rem;
  text-align: center;
  font-weight: 600;
  padding: 0 15px;
}

.custom-category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.custom-category-row__item {
  position: relative;
  aspect-ratio: 2 / 3; /* Portrait ratio */
  overflow: hidden;
}

.custom-category-row__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.custom-category-row__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.custom-category-row__item:hover img {
  transform: scale(1.03);
}

.custom-category-row__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgb(0,0,0);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background: rgba(0,0,0,0.1);
  padding: 4px 10px;
}

@media screen and (max-width: 749px) {
  .custom-category-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .custom-category-row-section{
    padding: 24px 0px;
  }
  .custom-category-row__heading {
  font-size: 2rem;
}