/* ========== Sift Page ========== */
.sift-page {
    margin-top: 16px;
    padding-bottom: 30px;
}

/* ========== Category Filter ========== */
.category-filter {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 14px 20px;
    margin-bottom: 16px;
}

.category-filter .filter-label {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
    margin-right: 10px;
}

.category-filter .filter-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.category-filter .filter-tab {
    font-size: 14px;
    color: #333;
    padding: 6px 18px;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.category-filter .filter-tab:hover {
    color: #ff2d5b;
}

.category-filter .filter-tab.active {
    color: #ff2d5b;
    font-weight: bold;
}

/* ========== Search Empty State ========== */
.search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 480px);
}

.search-empty .empty-text {
    font-size: 16px;
    color: #999;
    margin: 0;
}
