/** Shopify CDN: Minification failed

Line 14:14 Expected identifier but found whitespace
Line 14:16 Unexpected "{"
Line 14:25 Expected ":"
Line 14:51 Expected ":"
Line 15:17 Expected identifier but found whitespace
Line 15:19 Unexpected "{"
Line 15:28 Expected ":"
Line 15:57 Expected ":"

**/
.shop-by-category {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  text-align: center;
}

.shop-by-category__heading {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 1000;
}

.shop-by-category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}

.shop-by-category__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 1rem;
  width: 100%;
}

.shop-by-category__card:hover .shop-by-category__image {
  transform: scale(1.04);
}

.shop-by-category__image-wrapper {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.shop-by-category__image,
.shop-by-category__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  transition: transform 0.3s ease;
}

.shop-by-category__title {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 1000;
}

@media screen and (max-width: 749px) {
  .shop-by-category__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .shop-by-category__image-wrapper {
    max-width: 140px;
  }
}