/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 96:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.shop-by-categories {
  padding: 40px 0;
  text-align: center;
}
.shop-by-categories h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: serif;
  letter-spacing: 1px;
}

/* Scroll wrapper for mobile */
.category-grid-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-grid {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  padding: 0 10px;
}

.category-item {
  flex: 0 0 auto;
  width: 90px;
  text-align: center;
}

.category-item a {
  text-decoration: none;
  color: inherit;
}
.category-item:hover .category-image {
  transform: scale(1.3);
  border-color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-image {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #ccc;
  overflow: hidden;
  display: inline-block;
}

.category-title {
  margin-top: 8px;
  font-size: 13px;
}

/* Desktop styles */
@media screen and (min-width: 768px) {
  .category-grid-wrapper {
    overflow-x: unset;
  }

  .category-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .category-item {
    width: 130px;
  }

  .category-image {
    width: 120px;
    height: 120px;
  }

  .category-title {
    font-size: 15px;
  }
}
</style>