/** Shopify CDN: Minification failed

Line 6:0 Unexpected "<"

**/
<style>.section-shop-by-category .shop-by-category::after {

  border-bottom: 1px solid #DDDDDD;
}

.section-shop-by-category .shop-by-category::before {
  border-top: 1px solid #DDDDDD;
}

.section-shop-by-category .shop-by-category::before,
.section-shop-by-category .shop-by-category::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #DDDDDD;
}

.section-shop-by-category .shop-by-category::before {
  top: 0;
}

.section-shop-by-category .shop-by-category::after {
  bottom: 0;
}


.section-shop-by-category .sbc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-shop-by-category .sbc-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: #151515;
  margin-bottom: 12px;

}

.section-shop-by-category .sbc-shop-all-top {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #151515;
  justify-content: end;
  display: flex;
  position: relative;
  display: inline-block;
   opacity: 1;
    transition: all 0.3s;
}
.section-shop-by-category .sbc-shop-all-top:hover {
  opacity: 0.7;
}


.section-shop-by-category .sbc-shop-all-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #151515;
  justify-content: end;
  display: flex;
  position: relative;
  display: inline-block;
}


/* 
.section-shop-by-category .sbc-shop-all-top::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 80px;
  height: 1px;
  background: #DDDDDD;
} */



.section-shop-by-category .sbc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}


.section-shop-by-category .sbc-card {
  display: block;
  text-decoration: none;
  color: #151515;
  cursor: pointer;
}

.section-shop-by-category .sbc-card__image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: #f4f4f4;
  position: relative;
  aspect-ratio: 1 / 1;
}

.section-shop-by-category .sbc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-shop-by-category .sbc-card:hover .sbc-card__img {
  transform: scale(1.04);
}

.section-shop-by-category .sbc-card__placeholder {
  width: 100%;
  height: 100%;
}

.section-shop-by-category .sbc-card__svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-shop-by-category .sbc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 6px;
}

.section-shop-by-category .sbc-card__label {

  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #151515;
     opacity: 1;
    transition: all 0.3s;

}

.section-shop-by-category .sbc-card__label:hover {
 opacity: 0.7;
}
.section-shop-by-category .sbc-card__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #151515;
  transition: transform 0.2s ease;
}

.section-shop-by-category .sbc-card:hover .sbc-card__arrow {
  transform: translateX(3px);
}

.section-shop-by-category .sbc-footer {
  display: none;
  margin-top: 28px;
  text-align: center;
}

.section-shop-by-category .sbc-shop-all-btn {
  display: inline-block;
  font-size: 16px;
  color: #151515;
  letter-spacing: 0;
  transition: opacity 0.2s ease;
}

.section-shop-by-category .sbc-shop-all-btn:hover {
  opacity: 0.55;
}


@media (max-width: 1024px) and (min-width: 641px) {
  .section-shop-by-category .sbc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .section-shop-by-category .sbc-shop-all-top {
    display: none;
  }

  .section-shop-by-category .sbc-footer {
    display: block;
  }
}


@media (max-width: 640px) {

  .section-shop-by-category .sbc-inner {
    padding: 0 16px;
  }

  .section-shop-by-category .sbc-header {
    margin-bottom: 20px;
  }

  .section-shop-by-category .sbc-title {
    font-size: 20px;
  }

  .section-shop-by-category .sbc-shop-all-top {
    display: none;
  }

  .section-shop-by-category .sbc-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 27.7px 16px;
  }

  .section-shop-by-category .sbc-card__image-wrap {
    aspect-ratio: 1 / 1;
  }

  .section-shop-by-category .sbc-card__label {
    font-size: 16px;
  }

  .section-shop-by-category .sbc-footer {
    display: block;
  }
}