.products {
  margin-top: 72px;
}
.products-title {
  font-size: 40rem;
  margin-bottom: 48px;
}
.products-status-tab {
  font-size: 24rem;
  display: flex;
  column-gap: 32px;
}
.products-status-tab .tabItem {
  color: var(--color-text-4);
  cursor: pointer;
}
.products-status-tab .tabItem.active {
  position: relative;
  color: var(--color-text-1);
}
.products-status-tab .tabItem.active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  height: 8px;
  width: 8px;
  background-color: var(--color-funct-1);
  left: calc(50% - 4px);
}
