.category-bar-inner {
    background: linear-gradient(180deg, #444 0%, #232323 100%);
    border-radius: 6px;
    padding: 8px 12px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
}
.category-link {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 4px 16px;
    border-radius: 4px;
    transition: background 0.18s, color 0.18s;
    display: inline-block;
}
.category-link:hover, .category-link.active {
    background: #fff22b;
    color: #232323;
    text-decoration: none;
}

@media (max-width: 600px) {
  .category-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    padding: 10px 4px;
  }
  .category-link {
    flex: 1 1 40%;
    text-align: center;
    min-width: 120px;
    margin: 2px 0;
  }
}
