.your-category-item {
  --category-frame-size: 0.25rem;
  -webkit-tap-highlight-color: transparent;
}

.your-category-item:before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: none;
  background: transparent;
  box-shadow: inset 0 0 0 var(--category-frame-size) var(--category-color);
  transition: opacity 0.16s ease;
  will-change: opacity;
}

.your-category-item:after {
  z-index: 6;
}

.your-category-item:hover:before,
.your-category-item:focus-visible:before,
.your-category-item.is-scroll-active:before {
  height: auto;
  opacity: 1;
}

.your-category-item:hover .your-category-item__text__title,
.your-category-item:focus-visible .your-category-item__text__title,
.your-category-item.is-scroll-active .your-category-item__text__title {
  color: #09100c;
}

.your-category-item:hover .your-category-item__text svg,
.your-category-item:hover .your-category-item__text img,
.your-category-item:focus-visible .your-category-item__text svg,
.your-category-item:focus-visible .your-category-item__text img,
.your-category-item.is-scroll-active .your-category-item__text svg,
.your-category-item.is-scroll-active .your-category-item__text img {
  filter: none;
}

.your-category-item:hover .your-category-item__image,
.your-category-item:focus-visible .your-category-item__image,
.your-category-item.is-scroll-active .your-category-item__image {
  opacity: 1;
}

.your-category-item:hover .your-category-item__badge,
.your-category-item:focus-visible .your-category-item__badge,
.your-category-item.is-scroll-active .your-category-item__badge {
  background: var(--category-badge-color, #2f9658);
  color: #fff;
}

@media (hover: none), (max-width: 900px) {
  .your-category-item {
    transform: none;
  }

  .your-category-item:not(.is-scroll-active):hover:before {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .your-category-item,
  .your-category-item:before {
    transition-duration: 0.01ms;
  }
}
