.product-category-parent {
  min-width: 0;
}

.product-category-parent:hover {
  background: #f3f4f6;
}

.product-category-branch.is-active-branch > .product-category-parent {
  background: #eff6ff;
  box-shadow: inset 3px 0 #0056b3;
}

.product-category-link {
  min-width: 0;
  color: #374151;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.product-category-link:hover {
  color: #0056b3;
}

.product-category-link--standalone {
  display: block;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 700;
}

.product-category-link--standalone:hover {
  background: #f3f4f6;
}

.product-category-link--standalone.is-current {
  color: #0056b3;
  background: #eff6ff;
  box-shadow: inset 3px 0 #0056b3;
}

.product-category-toggle {
  display: inline-grid;
  flex: 0 0 44px;
  width: 44px;
  min-height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-category-toggle i {
  transition: transform 200ms ease;
}

.product-category-toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.product-category-toggle:hover {
  color: #0056b3;
}

.product-category-toggle:focus-visible,
.product-category-link:focus-visible,
.product-category-child-link:focus-visible,
.product-sidebar-close:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: -2px;
}

.product-category-children {
  overflow: hidden;
  padding: 0.3rem 0.65rem 0.45rem 1.45rem;
  background: #f9fafb;
}

.product-category-children[hidden] {
  display: none;
}

.product-category-child-link {
  display: block;
  padding: 0.48rem 0.65rem;
  border-radius: 4px;
  color: #4b5563;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.product-category-child-link:hover {
  color: #0056b3;
  background: #eef2f7;
}

.product-category-child-link.is-current {
  color: #0056b3;
  background: #dbeafe;
  font-weight: 700;
}

.product-sidebar-mobile-header {
  position: sticky;
  top: 0;
  z-index: 2;
}

.product-sidebar-close {
  display: inline-grid;
  width: 44px;
  min-height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-sidebar-overlay {
  cursor: pointer;
}

body.product-sidebar-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .product-sidebar {
    width: min(84vw, 320px);
    max-height: 100dvh;
    overscroll-behavior: contain;
  }

  .product-category-panel {
    margin-bottom: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-category-toggle i,
  .product-sidebar {
    transition: none;
  }
}
