
/* Woo Category Circles */
.wccc-wrap{
  margin: 18px 0 6px;
  padding: 10px 0;
}
.wccc-title{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
.wccc-scroller{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 26px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.wccc-wrap[data-layout="grid"] .wccc-scroller{
  grid-auto-flow: initial;
  grid-auto-columns: initial;
  grid-template-columns: repeat(var(--wccc-cols, 6), minmax(0, 1fr));
  overflow: visible;
  gap: 18px;
}
.wccc-item{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none !important;
  color: inherit;
  min-width: 92px;
  scroll-snap-align: start;
}
.wccc-thumb{
  width: 82px;
  height: 82px;
  border-radius: 999px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wccc-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wccc-img--placeholder{
  width: 100%;
  height: 100%;
}
.wccc-name{
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  opacity: .95;
}
.wccc-count{
  margin-top: 4px;
  font-size: 12px;
  opacity: .6;
}
.wccc-scroller::-webkit-scrollbar{
  height: 10px;
}
.wccc-scroller::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.12);
  border-radius: 999px;
}
.wccc-item:focus-visible .wccc-thumb{
  outline: 3px solid rgba(0,0,0,.25);
  outline-offset: 3px;
}
