.cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 6px;
}

.cat-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  color: var(--fg);
  background: hsl(185 46% 21%);
  border: 1px solid hsl(183 62% 50%);
  border-radius: var(--radius);
  transition: background 0.15s, border-color 0.15s;
}

.cat-back:hover {
  background: hsl(185 46% 26%);
}

.cat-section__head .pill {
  color: var(--fg);
  background: hsl(187 46% 17%);
  border-color: hsl(183 78% 58%);
}

.cat-back svg {
  width: 20px;
  height: 20px;
}

.cat-title h1 {
  font-size: 22px;
  font-weight: 800;
}

.cat-section {
  margin-top: 26px;
}

.cat-section__head {
  margin-bottom: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.not-found {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 16px;
  background: hsl(180 100% 67% / 0.05);
  border: 1px solid hsl(180 100% 67% / 0.35);
  border-radius: var(--radius-lg);
}

.not-found__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: none;
  color: var(--primary-ink);
  background: var(--teal);
  border: 1px solid hsl(181 55% 58%);
  border-radius: var(--radius);
}

.not-found__icon svg {
  width: 24px;
  height: 24px;
}

.not-found__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.not-found__text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.not-found__btn {
  display: none;
  align-items: center;
  gap: 8px;
  flex: none;
  height: 44px;
  padding-inline: 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-ink);
  background: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px -12px var(--primary-glow);
  transition: filter 0.15s;
}

.not-found__btn:hover {
  filter: brightness(1.06);
}

.not-found__btn svg {
  width: 16px;
  height: 16px;
}

.category-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 20px;
  text-align: center;
}

.category-empty strong {
  font-size: 18px;
  font-weight: 800;
}

.category-empty span {
  max-width: 42ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
