/* === 分类导航按钮 === */
.cate-nav-container {
    border-radius: 20px;
    padding: 8px 12px;
    margin: 0 auto;
    max-width: 100%;
}
.cate-nav-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    overflow: hidden;
    transition: max-height .3s ease;
}
.cate-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    text-decoration: none;
    color: #555;
    background: #fff;
    border: 1.5px solid transparent;
    transition: all .2s ease;
    cursor: pointer;
}
.cate-pill:hover {
    color: #222;
    background: #fff;
    border-color: #ddd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.cate-pill.active {
    color: #fff;
    background: #1a1a2e;
    border-color: #1a1a2e;
    box-shadow: 0 2px 10px rgba(26,26,46,.25);
    font-weight: 600;
}
.cate-pill.active:hover {
    background: #2a2a42;
    border-color: #2a2a42;
    color: #fff;
}
.cate-expand-btn {
    display: none;
    margin: 0 auto;
    padding: 4px 16px;
    border: none;
    border-radius: 14px;
    background: #e9ecef;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}
.cate-expand-btn:hover {
    background: #dee2e6;
    color: #333;
}
